1 Libraries

library(tm)
library(NLP)
library(stringi)
library(dplyr)
library(stringr)
library(wordcloud)

2 Introduction

Natural Language Processing and Text Mining Basics in R

Lord of the Rings is held as one of the most influential fantasy novels ever written. Both the films and novels are discussed as possibly the greatest trilogies in their respective mediums. For decades, nerds (myself included) have debated the minutiae of Tolkien’s finest work. A friend of mine made the claim "There is no central character in Lord of the Rings". Ummm…Frodo? C’mon Man! Such wreckless statements require more than a verbal debate. Here, I offer a quantitative analysis of the first LOTR book, The Fellowship of the Ring. We can use NLP analyses to unequivocally show Frodo is, of course, the central character. But first, cleaning…

3 1. Cleaning the Raw Text File

Import the Raw Text File

lotr <- paste(readLines("FellowshipOfTheRing.txt"), collapse = " ")  #concatenate into a single observation using the paste function -- opposite of str_split, collapse by space
str(lotr)  #character vector of length 1
##  chr "Foreword This tale grew in the telling, until it became a history of the Great War of the Ring and included man"| __truncated__
length(lotr) #make sure it is 1
## [1] 1
strtrim(lotr, c(2000)) # first two thousand words
## [1] "Foreword This tale grew in the telling, until it became a history of the Great War of the Ring and included many glimpses of the yet more ancient history that preceded it. It was begun soon after The Hobbitwas written and before its publication in 1937; but I did not go on with this sequel, for I wished first to complete and set in order the mythology and legends of the Elder Days, which had then been taking shape for some years. I desired to do this for my own satisfaction, and I had little hope that other people would be interested in this work, especially since it was primarily linguistic in inspiration and was begun in order to provide the necessary background of 'history' for Elvish tongues. When those whose advice and opinion I sought corrected little hope to no hope, I went back to the sequel, encouraged by requests from readers for more information concerning hobbits and their adventures. But the story was drawn irresistibly towards the older world, and became an account, as it were, of its end and passing away before its beginning and middle had been told. The process had begun in the writing of The Hobbit, in which there were already some references to the older matter: Elrond, Gondolin, the High-elves, and the orcs, as well as glimpses that had arisen unbidden of things higher or deeper or darker than its surface: Durin, Moria, Gandalf, the Necromancer, the Ring. The discovery of the significance of these glimpses and of their relation to the ancient histories revealed the Third Age and its culmination in the War of the Ring. Those who had asked for more information about hobbits eventually got it, but they had to wait a long time; for the composition of The Lord of the Rings went on at intervals during the years 1936 to 1949, a period in which I had many duties that I did not neglect, and many other interests as a learner and teacher that often absorbed me. The delay was, of course, also increased by the outbreak of war in 1939, by the end of which year "

Strip the text

We only want the root words from the text, so we need to remove everything else

lotr <- gsub("-", " ", lotr)  #global substitution of dashes for spaces
lotr <- removePunctuation(lotr, preserve_intra_word_contractions = F)  #remove punctuation
lotr<- gsub("\\d", " ", lotr)  #regex - find any digit, replace with blank space
lotr <- tolower(lotr) #make all words lower case
stopwords() #need to import list of stopwords to remove them
##   [1] "i"          "me"         "my"         "myself"     "we"        
##   [6] "our"        "ours"       "ourselves"  "you"        "your"      
##  [11] "yours"      "yourself"   "yourselves" "he"         "him"       
##  [16] "his"        "himself"    "she"        "her"        "hers"      
##  [21] "herself"    "it"         "its"        "itself"     "they"      
##  [26] "them"       "their"      "theirs"     "themselves" "what"      
##  [31] "which"      "who"        "whom"       "this"       "that"      
##  [36] "these"      "those"      "am"         "is"         "are"       
##  [41] "was"        "were"       "be"         "been"       "being"     
##  [46] "have"       "has"        "had"        "having"     "do"        
##  [51] "does"       "did"        "doing"      "would"      "should"    
##  [56] "could"      "ought"      "i'm"        "you're"     "he's"      
##  [61] "she's"      "it's"       "we're"      "they're"    "i've"      
##  [66] "you've"     "we've"      "they've"    "i'd"        "you'd"     
##  [71] "he'd"       "she'd"      "we'd"       "they'd"     "i'll"      
##  [76] "you'll"     "he'll"      "she'll"     "we'll"      "they'll"   
##  [81] "isn't"      "aren't"     "wasn't"     "weren't"    "hasn't"    
##  [86] "haven't"    "hadn't"     "doesn't"    "don't"      "didn't"    
##  [91] "won't"      "wouldn't"   "shan't"     "shouldn't"  "can't"     
##  [96] "cannot"     "couldn't"   "mustn't"    "let's"      "that's"    
## [101] "who's"      "what's"     "here's"     "there's"    "when's"    
## [106] "where's"    "why's"      "how's"      "a"          "an"        
## [111] "the"        "and"        "but"        "if"         "or"        
## [116] "because"    "as"         "until"      "while"      "of"        
## [121] "at"         "by"         "for"        "with"       "about"     
## [126] "against"    "between"    "into"       "through"    "during"    
## [131] "before"     "after"      "above"      "below"      "to"        
## [136] "from"       "up"         "down"       "in"         "out"       
## [141] "on"         "off"        "over"       "under"      "again"     
## [146] "further"    "then"       "once"       "here"       "there"     
## [151] "when"       "where"      "why"        "how"        "all"       
## [156] "any"        "both"       "each"       "few"        "more"      
## [161] "most"       "other"      "some"       "such"       "no"        
## [166] "nor"        "not"        "only"       "own"        "same"      
## [171] "so"         "than"       "too"        "very"
lotr <- removeWords(lotr, stopwords())
lotr <- gsub("\\b[a-z]\\b{1}", " ", lotr) #remove single letter words
lotr <- gsub("\"", " ", lotr)  #doesn't work
lotr <- stripWhitespace(lotr) # remove blank spaces
lotr <- gsub("[[:punct:]]", " ", lotr)

#Investigate
strtrim(lotr, c(2000)) # first two thousand words
## [1] "foreword tale grew telling became history great war ring included many glimpses yet ancient history preceded begun soon hobbitwas written publication go sequel wished first complete set order mythology legends elder days taking shape years desired satisfaction little hope people interested work especially since primarily linguistic inspiration begun order provide necessary background history elvish tongues whose advice opinion sought corrected little hope hope went back sequel encouraged requests readers information concerning hobbits adventures story drawn irresistibly towards older world became account end passing away beginning middle told process begun writing hobbit already references older matter elrond gondolin high elves orcs well glimpses arisen unbidden things higher deeper darker surface durin moria gandalf necromancer ring discovery significance glimpses relation ancient histories revealed third age culmination war ring asked information hobbits eventually got wait long time composition lord rings went intervals years period many duties neglect many interests learner teacher often absorbed delay course also increased outbreak war end year tale yet reached end book one spite darkness next five years found story now wholly abandoned plodded mostly night till stood balins tomb moria halted long almost year later went came lothlórien great river late next year wrote first drafts matter now stands book three beginnings chapters iii book five beacons flared anórien théoden came harrowdale stopped foresight failed time thought leaving loose ends perplexities war task conduct least report forced tackle journey frodo mordor chapters eventually become book four written sent serial son christopher south africa raf nonetheless took another five years tale brought present end time changed house chair college days though less dark less laborious end last reached whole story revised indeed largely re written backwards typed re typed cost professional typing ten fingere"
#writeLines(lotr, con = "lotrcleaned_v1.txt") # if you want to investigate all words 

4 2. Sentiment Analysis

Before we get into the role of specific characters, let’s get an overall feel for the book

lotr2 <- str_split(lotr, " ")  #space is the delimiter
class(lotr2)  #should now be a list
## [1] "list"
lotr2 <- unlist(lotr2)
class(lotr2) #should now be a character
## [1] "character"
lotr2 
##     [1] "foreword"          "tale"              "grew"             
##     [4] "telling"           "became"            "history"          
##     [7] "great"             "war"               "ring"             
##    [10] "included"          "many"              "glimpses"         
##    [13] "yet"               "ancient"           "history"          
##    [16] "preceded"          "begun"             "soon"             
##    [19] "hobbitwas"         "written"           "publication"      
##    [22] "go"                "sequel"            "wished"           
##    [25] "first"             "complete"          "set"              
##    [28] "order"             "mythology"         "legends"          
##    [31] "elder"             "days"              "taking"           
##    [34] "shape"             "years"             "desired"          
##    [37] "satisfaction"      "little"            "hope"             
##    [40] "people"            "interested"        "work"             
##    [43] "especially"        "since"             "primarily"        
##    [46] "linguistic"        "inspiration"       "begun"            
##    [49] "order"             "provide"           "necessary"        
##    [52] "background"        "history"           "elvish"           
##    [55] "tongues"           "whose"             "advice"           
##    [58] "opinion"           "sought"            "corrected"        
##    [61] "little"            "hope"              "hope"             
##    [64] "went"              "back"              "sequel"           
##    [67] "encouraged"        "requests"          "readers"          
##    [70] "information"       "concerning"        "hobbits"          
##    [73] "adventures"        "story"             "drawn"            
##    [76] "irresistibly"      "towards"           "older"            
##    [79] "world"             "became"            "account"          
##    [82] "end"               "passing"           "away"             
##    [85] "beginning"         "middle"            "told"             
##    [88] "process"           "begun"             "writing"          
##    [91] "hobbit"            "already"           "references"       
##    [94] "older"             "matter"            "elrond"           
##    [97] "gondolin"          "high"              "elves"            
##   [100] "orcs"              "well"              "glimpses"         
##   [103] "arisen"            "unbidden"          "things"           
##   [106] "higher"            "deeper"            "darker"           
##   [109] "surface"           "durin"             "moria"            
##   [112] "gandalf"           "necromancer"       "ring"             
##   [115] "discovery"         "significance"      "glimpses"         
##   [118] "relation"          "ancient"           "histories"        
##   [121] "revealed"          "third"             "age"              
##   [124] "culmination"       "war"               "ring"             
##   [127] "asked"             "information"       "hobbits"          
##   [130] "eventually"        "got"               "wait"             
##   [133] "long"              "time"              "composition"      
##   [136] "lord"              "rings"             "went"             
##   [139] "intervals"         "years"             "period"           
##   [142] "many"              "duties"            "neglect"          
##   [145] "many"              "interests"         "learner"          
##   [148] "teacher"           "often"             "absorbed"         
##   [151] "delay"             "course"            "also"             
##   [154] "increased"         "outbreak"          "war"              
##   [157] "end"               "year"              "tale"             
##   [160] "yet"               "reached"           "end"              
##   [163] "book"              "one"               "spite"            
##   [166] "darkness"          "next"              "five"             
##   [169] "years"             "found"             "story"            
##   [172] "now"               "wholly"            "abandoned"        
##   [175] "plodded"           "mostly"            "night"            
##   [178] "till"              "stood"             "balins"           
##   [181] "tomb"              "moria"             "halted"           
##   [184] "long"              "almost"            "year"             
##   [187] "later"             "went"              "came"             
##   [190] "lothlórien"        "great"             "river"            
##   [193] "late"              "next"              "year"             
##   [196] "wrote"             "first"             "drafts"           
##   [199] "matter"            "now"               "stands"           
##   [202] "book"              "three"             "beginnings"       
##   [205] "chapters"          "iii"               "book"             
##   [208] "five"              "beacons"           "flared"           
##   [211] "anórien"           "théoden"           "came"             
##   [214] "harrowdale"        "stopped"           "foresight"        
##   [217] "failed"            "time"              "thought"          
##   [220] "leaving"           "loose"             "ends"             
##   [223] "perplexities"      "war"               "task"             
##   [226] "conduct"           "least"             "report"           
##   [229] "forced"            "tackle"            "journey"          
##   [232] "frodo"             "mordor"            "chapters"         
##   [235] "eventually"        "become"            "book"             
##   [238] "four"              "written"           "sent"             
##   [241] "serial"            "son"               "christopher"      
##   [244] "south"             "africa"            "raf"              
##   [247] "nonetheless"       "took"              "another"          
##   [250] "five"              "years"             "tale"             
##   [253] "brought"           "present"           "end"              
##   [256] "time"              "changed"           "house"            
##   [259] "chair"             "college"           "days"             
##   [262] "though"            "less"              "dark"             
##   [265] "less"              "laborious"         "end"              
##   [268] "last"              "reached"           "whole"            
##   [271] "story"             "revised"           "indeed"           
##   [274] "largely"           "re"                "written"          
##   [277] "backwards"         "typed"             "re"               
##   [280] "typed"             "cost"              "professional"     
##   [283] "typing"            "ten"               "fingered"         
##   [286] "beyond"            "means"             "lord"             
##   [289] "rings"             "read"              "many"             
##   [292] "people"            "since"             "finally"          
##   [295] "appeared"          "print"             "like"             
##   [298] "say"               "something"         "reference"        
##   [301] "many"              "opinions"          "guesses"          
##   [304] "received"          "read"              "concerning"       
##   [307] "motives"           "meaning"           "tale"             
##   [310] "prime"             "motive"            "desire"           
##   [313] "tale"              "teller"            "try"              
##   [316] "hand"              "really"            "long"             
##   [319] "story"             "hold"              "attention"        
##   [322] "readers"           "amuse"             "delight"          
##   [325] "times"             "maybe"             "excite"           
##   [328] "deeply"            "move"              "guide"            
##   [331] "feelings"          "appealing"         "moving"           
##   [334] "many"              "guide"             "inevitably"       
##   [337] "often"             "fault"             "read"             
##   [340] "book"              "rate"              "reviewed"         
##   [343] "found"             "boring"            "absurd"           
##   [346] "contemptible"      "cause"             "complain"         
##   [349] "since"             "similar"           "opinions"         
##   [352] "works"             "kinds"             "writing"          
##   [355] "evidently"         "prefer"            "even"             
##   [358] "points"            "view"              "many"             
##   [361] "enjoyed"           "story"             "much"             
##   [364] "fails"             "please"            "perhaps"          
##   [367] "possible"          "long"              "tale"             
##   [370] "please"            "everybody"         "points"           
##   [373] "displease"         "everybody"         "points"           
##   [376] "find"              "letters"           "received"         
##   [379] "passages"          "chapters"          "blemish"          
##   [382] "others"            "specially"         "approved"         
##   [385] "critical"          "reader"            "now"              
##   [388] "finds"             "many"              "defects"          
##   [391] "minor"             "major"             "fortunately"      
##   [394] "obligation"        "either"            "review"           
##   [397] "book"              "write"             "will"             
##   [400] "pass"              "silence"           "except"           
##   [403] "one"               "noted"             "others"           
##   [406] "book"              "short"             "inner"            
##   [409] "meaning"           "message"           "intention"        
##   [412] "author"            "none"              "neither"          
##   [415] "allegorical"       "topical"           "story"            
##   [418] "grew"              "put"               "roots"            
##   [421] "past"              "threw"             "unexpected"       
##   [424] "branches"          "main"              "theme"            
##   [427] "settled"           "outset"            "inevitable"       
##   [430] "choice"            "ring"              "link"             
##   [433] "hobbit"            "crucial"           "chapter"          
##   [436] "shadow"            "past"              "one"              
##   [439] "oldest"            "parts"             "tale"             
##   [442] "written"           "long"              "foreshadow"       
##   [445] "yet"               "become"            "threat"           
##   [448] "inevitable"        "disaster"          "point"            
##   [451] "story"             "developed"         "along"            
##   [454] "essentially"       "lines"             "disaster"         
##   [457] "averted"           "sources"           "things"           
##   [460] "long"              "mind"              "cases"            
##   [463] "already"           "written"           "little"           
##   [466] "nothing"           "modified"          "war"              
##   [469] "began"             "sequels"           "real"             
##   [472] "war"               "resemble"          "legendary"        
##   [475] "war"               "process"           "conclusion"       
##   [478] "inspired"          "directed"          "development"      
##   [481] "legend"            "certainly"         "ring"             
##   [484] "seized"            "used"              "sauron"           
##   [487] "annihilated"       "enslaved"          "barad"            
##   [490] "dûr"               "destroyed"         "occupied"         
##   [493] "saruman"           "failing"           "get"              
##   [496] "possession"        "ring"              "confusion"        
##   [499] "treacheries"       "time"              "found"            
##   [502] "mordor"            "missing"           "links"            
##   [505] "researches"        "ring"              "lore"             
##   [508] "long"              "made"              "great"            
##   [511] "ring"              "challenge"         "self"             
##   [514] "styled"            "ruler"             "middle"           
##   [517] "earth"             "conflict"          "sides"            
##   [520] "held"              "hobbits"           "hatred"           
##   [523] "contempt"          "long"              "survived"         
##   [526] "even"              "slaves"            "arrangements"     
##   [529] "devised"           "according"         "tastes"           
##   [532] "views"             "like"              "allegory"         
##   [535] "topical"           "reference"         "cordially"        
##   [538] "dislike"           "allegory"          "manifestations"   
##   [541] "always"            "done"              "since"            
##   [544] "grew"              "old"               "wary"             
##   [547] "enough"            "detect"            "presence"         
##   [550] "much"              "prefer"            "history"          
##   [553] "true"              "feigned"           "varied"           
##   [556] "applicability"     "thought"           "experience"       
##   [559] "readers"           "think"             "many"             
##   [562] "confuse"           "applicability"     "allegory"         
##   [565] "one"               "resides"           "freedom"          
##   [568] "reader"            "purposed"          "domination"       
##   [571] "author"            "author"            "course"           
##   [574] "remain"            "wholly"            "unaffected"       
##   [577] "experience"        "ways"              "story"            
##   [580] "germ"              "uses"              "soil"             
##   [583] "experience"        "extremely"         "complex"          
##   [586] "attempts"          "define"            "process"          
##   [589] "best"              "guesses"           "evidence"         
##   [592] "inadequate"        "ambiguous"         "also"             
##   [595] "false"             "though"            "naturally"        
##   [598] "attractive"        "lives"             "author"           
##   [601] "critic"            "overlapped"        "suppose"          
##   [604] "movements"         "thought"           "events"           
##   [607] "times"             "common"            "necessarily"      
##   [610] "powerful"          "influences"        "one"              
##   [613] "indeed"            "personally"        "come"             
##   [616] "shadow"            "war"               "feel"             
##   [619] "fully"             "oppression"        "years"            
##   [622] "go"                "seems"             "now"              
##   [625] "often"             "forgotten"         "caught"           
##   [628] "youth"             "less"              "hideous"          
##   [631] "experience"        "involved"          "following"        
##   [634] "years"             "one"               "close"            
##   [637] "friends"           "dead"              "take"             
##   [640] "less"              "grievous"          "matter"           
##   [643] "supposed"          "scouring"          "shire"            
##   [646] "reflects"          "situation"         "england"          
##   [649] "time"              "finishing"         "tale"             
##   [652] "essential"         "part"              "plot"             
##   [655] "foreseen"          "outset"            "though"           
##   [658] "event"             "modified"          "character"        
##   [661] "saruman"           "developed"         "story"            
##   [664] "without"           "need"              "say"              
##   [667] "allegorical"       "significance"      "contemporary"     
##   [670] "political"         "reference"         "whatsoever"       
##   [673] "indeed"            "basis"             "experience"       
##   [676] "though"            "slender"           "economic"         
##   [679] "situation"         "entirely"          "different"        
##   [682] "much"              "back"              "country"          
##   [685] "lived"             "childhood"         "shabbily"         
##   [688] "destroyed"         "ten"               "days"             
##   [691] "motor"             "cars"              "rare"             
##   [694] "objects"           "never"             "seen"             
##   [697] "one"               "men"               "still"            
##   [700] "building"          "suburban"          "railways"         
##   [703] "recently"          "saw"               "paper"            
##   [706] "picture"           "last"              "decrepitude"      
##   [709] "thriving"          "corn"              "mill"             
##   [712] "beside"            "pool"              "long"             
##   [715] "ago"               "seemed"            "important"        
##   [718] "never"             "liked"             "looks"            
##   [721] "young"             "miller"            "father"           
##   [724] "old"               "miller"            "black"            
##   [727] "beard"             "named"             "sandyman"         
##   [730] "lord"              "rings"             "now"              
##   [733] "issued"            "new"               "edition"          
##   [736] "opportunity"       "taken"             "revising"         
##   [739] "number"            "errors"            "inconsistencies"  
##   [742] "still"             "remained"          "text"             
##   [745] "corrected"         "attempt"           "made"             
##   [748] "provide"           "information"       "points"           
##   [751] "attentive"         "readers"           "raised"           
##   [754] "considered"        "comments"          "enquiries"        
##   [757] "seem"              "passed"            "may"              
##   [760] "failed"            "keep"              "notes"            
##   [763] "order"             "many"              "enquiries"        
##   [766] "answered"          "additional"        "appendices"       
##   [769] "indeed"            "production"        "accessory"        
##   [772] "volume"            "containing"        "much"             
##   [775] "material"          "include"           "original"         
##   [778] "edition"           "particular"        "detailed"         
##   [781] "linguistic"        "information"       "meantime"         
##   [784] "edition"           "offers"            "foreword"         
##   [787] "addition"          "prologue"          "notes"            
##   [790] "index"             "names"             "persons"          
##   [793] "places"            "index"             "intention"        
##   [796] "complete"          "items"             "references"       
##   [799] "since"             "present"           "purpose"          
##   [802] "necessary"         "reduce"            "bulk"             
##   [805] "complete"          "index"             "making"           
##   [808] "full"              "use"               "material"         
##   [811] "prepared"          "mrs"               "smith"            
##   [814] "belongs"           "rather"            "accessory"        
##   [817] "volume"            "prologue"          "concerning"       
##   [820] "hobbits"           "book"              "largely"          
##   [823] "concerned"         "hobbits"           "pages"            
##   [826] "reader"            "may"               "discover"         
##   [829] "much"              "character"         "little"           
##   [832] "history"           "information"       "will"             
##   [835] "also"              "found"             "selection"        
##   [838] "red"               "book"              "westmarch"        
##   [841] "already"           "published"         "title"            
##   [844] "hobbit"            "story"             "derived"          
##   [847] "earlier"           "chapters"          "red"              
##   [850] "book"              "composed"          "bilbo"            
##   [853] "first"             "hobbit"            "become"           
##   [856] "famous"            "world"             "large"            
##   [859] "called"            "back"              "since"            
##   [862] "told"              "journey"           "east"             
##   [865] "return"            "adventure"         "later"            
##   [868] "involved"          "hobbits"           "great"            
##   [871] "events"            "age"               "related"          
##   [874] "many"              "however"           "may"              
##   [877] "wish"              "know"              "remarkable"       
##   [880] "people"            "outset"            "may"              
##   [883] "possess"           "earlier"           "book"             
##   [886] "readers"           "notes"             "important"        
##   [889] "points"            "collected"         "hobbit"           
##   [892] "lore"              "first"             "adventure"        
##   [895] "briefly"           "recalled"          "hobbits"          
##   [898] "unobtrusive"       "ancient"           "people"           
##   [901] "numerous"          "formerly"          "today"            
##   [904] "love"              "peace"             "quiet"            
##   [907] "good"              "tilled"            "earth"            
##   [910] "well"              "ordered"           "well"             
##   [913] "farmed"            "countryside"       "favourite"        
##   [916] "haunt"             "understand"        "like"             
##   [919] "machines"          "complicated"       "forge"            
##   [922] "bellows"           "water"             "mill"             
##   [925] "hand"              "loom"              "though"           
##   [928] "skilful"           "tools"             "even"             
##   [931] "ancient"           "days"              "rule"             
##   [934] "shy"               "big"               "folk"             
##   [937] "call"              "us"                "now"              
##   [940] "avoid"             "us"                "dismay"           
##   [943] "becoming"          "hard"              "find"             
##   [946] "quick"             "hearing"           "sharp"            
##   [949] "eyed"              "though"            "inclined"         
##   [952] "fat"               "hurry"             "unnecessarily"    
##   [955] "nonetheless"       "nimble"            "deft"             
##   [958] "movements"         "possessed"         "first"            
##   [961] "art"               "disappearing"      "swiftly"          
##   [964] "silently"          "large"             "folk"             
##   [967] "wish"              "meet"              "come"             
##   [970] "blundering"        "developed"         "men"              
##   [973] "may"               "seem"              "magical"          
##   [976] "hobbits"           "never"             "fact"             
##   [979] "studied"           "magic"             "kind"             
##   [982] "elusiveness"       "due"               "solely"           
##   [985] "professional"      "skill"             "heredity"         
##   [988] "practice"          "close"             "friendship"       
##   [991] "earth"             "rendered"          "inimitable"       
##   [994] "bigger"            "clumsier"          "races"            
##   [997] "little"            "people"            "smaller"          
##  [1000] "dwarves"           "less"              "tout"             
##  [1003] "stocky"            "even"              "actually"         
##  [1006] "much"              "shorter"           "height"           
##  [1009] "variable"          "ranging"           "two"              
##  [1012] "four"              "feet"              "measure"          
##  [1015] "seldom"            "now"               "reach"            
##  [1018] "three"             "feet"              "hive"             
##  [1021] "dwindled"          "say"               "ancient"          
##  [1024] "days"              "taller"            "according"        
##  [1027] "red"               "book"              "bandobras"        
##  [1030] "took"              "bullroarer"        "son"              
##  [1033] "isengrim"          "second"            "four"             
##  [1036] "foot"              "five"              "able"             
##  [1039] "ride"              "horse"             "surpassed"        
##  [1042] "hobbit"            "records"           "two"              
##  [1045] "famous"            "characters"        "old"              
##  [1048] "curious"           "matter"            "dealt"            
##  [1051] "book"              "hobbits"           "shire"            
##  [1054] "tales"             "concerned"         "days"             
##  [1057] "peace"             "prosperity"        "merry"            
##  [1060] "folk"              "dressed"           "bright"           
##  [1063] "colours"           "notably"           "fond"             
##  [1066] "yellow"            "green"             "seldom"           
##  [1069] "wore"              "shoes"             "since"            
##  [1072] "feet"              "tough"             "leathery"         
##  [1075] "soles"             "clad"              "thick"            
##  [1078] "curling"           "hair"              "much"             
##  [1081] "like"              "hair"              "heads"            
##  [1084] "commonly"          "brown"             "thus"             
##  [1087] "craft"             "little"            "practised"        
##  [1090] "among"             "shoe"              "making"           
##  [1093] "long"              "skilful"           "fingers"          
##  [1096] "make"              "many"              "useful"           
##  [1099] "comely"            "things"            "faces"            
##  [1102] "rule"              "good"              "natured"          
##  [1105] "rather"            "beautiful"         "broad"            
##  [1108] "bright"            "eyed"              "red"              
##  [1111] "cheeked"           "mouths"            "apt"              
##  [1114] "laughter"          "eating"            "drinking"         
##  [1117] "laugh"             "eat"               "drink"            
##  [1120] "often"             "heartily"          "fond"             
##  [1123] "simple"            "jests"             "times"            
##  [1126] "six"               "meals"             "day"              
##  [1129] "get"               "hospitable"        "delighted"        
##  [1132] "parties"           "presents"          "gave"             
##  [1135] "away"              "freely"            "eagerly"          
##  [1138] "accepted"          "plain"             "indeed"           
##  [1141] "spite"             "later"             "estrangement"     
##  [1144] "hobbits"           "relatives"         "far"              
##  [1147] "nearer"            "us"                "elves"            
##  [1150] "even"              "dwarves"           "old"              
##  [1153] "spoke"             "languages"         "men"              
##  [1156] "fashion"           "liked"             "disliked"         
##  [1159] "much"              "things"            "men"              
##  [1162] "exactly"           "relationship"      "can"              
##  [1165] "longer"            "discovered"        "beginning"        
##  [1168] "hobbits"           "lies"              "far"              
##  [1171] "back"              "elder"             "days"             
##  [1174] "now"               "lost"              "forgotten"        
##  [1177] "elves"             "still"             "preserve"         
##  [1180] "records"           "vanished"          "time"             
##  [1183] "traditions"        "concerned"         "almost"           
##  [1186] "entirely"          "history"           "men"              
##  [1189] "appear"            "seldom"            "hobbits"          
##  [1192] "mentioned"         "yet"               "clear"            
##  [1195] "hobbits"           "fact"              "lived"            
##  [1198] "quietly"           "middle"            "earth"            
##  [1201] "many"              "long"              "years"            
##  [1204] "folk"              "became"            "even"             
##  [1207] "aware"             "world"             "full"             
##  [1210] "strange"           "creatures"         "beyond"           
##  [1213] "count"             "little"            "people"           
##  [1216] "seemed"            "little"            "importance"       
##  [1219] "days"              "bilbo"             "frodo"            
##  [1222] "heir"              "suddenly"          "became"           
##  [1225] "wish"              "important"         "renowned"         
##  [1228] "troubled"          "counsels"          "wise"             
##  [1231] "great"             "days"              "third"            
##  [1234] "age"               "middle"            "earth"            
##  [1237] "now"               "long"              "past"             
##  [1240] "shape"             "lands"             "changed"          
##  [1243] "regions"           "hobbits"           "lived"            
##  [1246] "doubtless"         "still"             "linger"           
##  [1249] "north"             "west"              "old"              
##  [1252] "world"             "east"              "sea"              
##  [1255] "original"          "home"              "hobbits"          
##  [1258] "bilbos"            "time"              "preserved"        
##  [1261] "knowledge"         "love"              "learning"         
##  [1264] "genealogical"      "lore"              "far"              
##  [1267] "general"           "among"             "remained"         
##  [1270] "still"             "older"             "families"         
##  [1273] "studied"           "books"             "even"             
##  [1276] "gathered"          "reports"           "old"              
##  [1279] "times"             "distant"           "lands"            
##  [1282] "elves"             "dwarves"           "men"              
##  [1285] "records"           "began"             "settlement"       
##  [1288] "shire"             "ancient"           "legends"          
##  [1291] "hardly"            "looked"            "back"             
##  [1294] "wandering"         "days"              "clear"            
##  [1297] "nonetheless"       "legends"           "evidence"         
##  [1300] "peculiar"          "words"             "customs"          
##  [1303] "like"              "many"              "folk"             
##  [1306] "hobbits"           "distant"           "past"             
##  [1309] "moved"             "westward"          "earliest"         
##  [1312] "tales"             "seem"              "glimpse"          
##  [1315] "time"              "dwelt"             "upper"            
##  [1318] "vales"             "anduin"            "eaves"            
##  [1321] "greenwood"         "great"             "misty"            
##  [1324] "mountains"         "later"             "undertook"        
##  [1327] "hard"              "perilous"          "crossing"         
##  [1330] "mountains"         "eriador"           "longer"           
##  [1333] "certain"           "accounts"          "speak"            
##  [1336] "multiplying"       "men"               "land"             
##  [1339] "shadow"            "fell"              "forest"           
##  [1342] "became"            "darkened"          "new"              
##  [1345] "name"              "mirkwood"          "crossing"         
##  [1348] "mountains"         "hobbits"           "already"          
##  [1351] "become"            "divided"           "three"            
##  [1354] "somewhat"          "different"         "breeds"           
##  [1357] "harfoots"          "stoors"            "fallohides"       
##  [1360] "harfoots"          "browner"           "skin"             
##  [1363] "smaller"           "shorter"           "beardless"        
##  [1366] "bootless"          "hands"             "feet"             
##  [1369] "neat"              "nimble"            "preferred"        
##  [1372] "highlands"         "hillsides"         "stoors"           
##  [1375] "broader"           "heavier"           "build"            
##  [1378] "feet"              "hands"             "larger"           
##  [1381] "preferred"         "flat"              "lands"            
##  [1384] "riversides"        "fallohides"        "fairer"           
##  [1387] "skin"              "also"              "hair"             
##  [1390] "taller"            "slimmer"           "others"           
##  [1393] "lovers"            "trees"             "woodlands"        
##  [1396] "harfoots"          "much"              "dwarves"          
##  [1399] "ancient"           "times"             "long"             
##  [1402] "lived"             "foothills"         "mountains"        
##  [1405] "moved"             "westward"          "early"            
##  [1408] "roamed"            "eriador"           "far"              
##  [1411] "weathertop"        "others"            "still"            
##  [1414] "wilderland"        "normal"            "representative"   
##  [1417] "variety"           "hobbit"            "far"              
##  [1420] "numerous"          "inclined"          "settle"           
##  [1423] "one"               "place"             "longest"          
##  [1426] "preserved"         "ancestral"         "habit"            
##  [1429] "living"            "tunnels"           "holes"            
##  [1432] "stoors"            "lingered"          "long"             
##  [1435] "banks"             "great"             "river"            
##  [1438] "anduin"            "less"              "shy"              
##  [1441] "men"               "came"              "west"             
##  [1444] "harfoots"          "followed"          "course"           
##  [1447] "loudwater"         "southwards"        "many"             
##  [1450] "long"              "dwelt"             "tharbad"          
##  [1453] "borders"           "dunland"           "moved"            
##  [1456] "north"             "fallohides"        "least"            
##  [1459] "numerous"          "northerly"         "branch"           
##  [1462] "friendly"          "elves"             "hobbits"          
##  [1465] "skill"             "language"          "song"             
##  [1468] "handicrafts"       "old"               "preferred"        
##  [1471] "hunting"           "tilling"           "crossed"          
##  [1474] "mountains"         "north"             "rivendell"        
##  [1477] "came"              "river"             "hoarwell"         
##  [1480] "eriador"           "soon"              "mingled"          
##  [1483] "kinds"             "preceded"          "somewhat"         
##  [1486] "bolder"            "adventurous"       "often"            
##  [1489] "found"             "leaders"           "chieftains"       
##  [1492] "among"             "clans"             "harfoots"         
##  [1495] "stoors"            "even"              "bilbos"           
##  [1498] "time"              "strong"            "fallohidish"      
##  [1501] "strain"            "still"             "noted"            
##  [1504] "among"             "greater"           "families"         
##  [1507] "tooks"             "masters"           "buckland"         
##  [1510] "westlands"         "eriador"           "misty"            
##  [1513] "mountains"         "mountains"         "lune"             
##  [1516] "hobbits"           "found"             "men"              
##  [1519] "elves"             "indeed"            "remnant"          
##  [1522] "still"             "dwelt"             "dúnedain"         
##  [1525] "kings"             "men"               "came"             
##  [1528] "sea"               "westernesse"       "dwindling"        
##  [1531] "fast"              "lands"             "north"            
##  [1534] "kingdom"           "falling"           "far"              
##  [1537] "wide"              "waste"             "room"             
##  [1540] "spare"             "incomers"          "ere"              
##  [1543] "long"              "hobbits"           "began"            
##  [1546] "settle"            "ordered"           "communities"      
##  [1549] "earlier"           "settlements"       "long"             
##  [1552] "disappeared"       "forgotten"         "bilbos"           
##  [1555] "time"              "one"               "first"            
##  [1558] "become"            "important"         "still"            
##  [1561] "endured"           "though"            "reduced"          
##  [1564] "size"              "bree"              "chetwood"         
##  [1567] "lay"               "round"             "forty"            
##  [1570] "miles"             "east"              "shire"            
##  [1573] "early"             "days"              "doubtless"        
##  [1576] "hobbits"           "learned"           "letters"          
##  [1579] "began"             "write"             "manner"           
##  [1582] "dúnedain"          "turn"              "long"             
##  [1585] "learned"           "art"               "elves"            
##  [1588] "days"              "also"              "forgot"           
##  [1591] "whatever"          "languages"         "used"             
##  [1594] "spoke"             "ever"              "common"           
##  [1597] "speech"            "westron"           "named"            
##  [1600] "current"           "lands"             "kings"            
##  [1603] "arnor"             "gondor"            "coasts"           
##  [1606] "sea"               "belfalas"          "lune"             
##  [1609] "yet"               "kept"              "words"            
##  [1612] "well"              "names"             "months"           
##  [1615] "days"              "great"             "store"            
##  [1618] "personal"          "names"             "past"             
##  [1621] "time"              "legend"            "among"            
##  [1624] "hobbits"           "first"             "becomes"          
##  [1627] "history"           "reckoning"         "years"            
##  [1630] "one"               "thousand"          "six"              
##  [1633] "hundred"           "first"             "year"             
##  [1636] "third"             "age"               "fallohide"        
##  [1639] "brothers"          "marcho"            "blanco"           
##  [1642] "set"               "bree"              "obtained"         
##  [1645] "permission"        "high"              "king"             
##  [1648] "fornost"           "crossed"           "brown"            
##  [1651] "river"             "baranduin"         "great"            
##  [1654] "following"         "hobbits"           "passed"           
##  [1657] "bridge"            "stonebows"         "built"            
##  [1660] "days"              "power"             "north"            
##  [1663] "kingdom"           "took"              "ail"              
##  [1666] "land"              "beyond"            "dwell"            
##  [1669] "river"             "far"               "downs"            
##  [1672] "demanded"          "keep"              "great"            
##  [1675] "bridge"            "repair"            "bridges"          
##  [1678] "roads"             "speed"             "kings"            
##  [1681] "messengers"        "acknowledge"       "lordship"         
##  [1684] "thus"              "began"             "shire"            
##  [1687] "reckoning"         "year"              "crossing"         
##  [1690] "brandywine"        "hobbits"           "turned"           
##  [1693] "name"              "became"            "year"             
##  [1696] "one"               "shire"             "later"            
##  [1699] "dates"             "reckoned"          "western"          
##  [1702] "hobbits"           "fell"              "love"             
##  [1705] "new"               "land"              "remained"         
##  [1708] "soon"              "passed"            "history"          
##  [1711] "men"               "elves"             "still"            
##  [1714] "king"              "name"              "subjects"         
##  [1717] "fact"              "ruled"             "chieftains"       
##  [1720] "meddled"           "events"            "world"            
##  [1723] "outside"           "last"              "battle"           
##  [1726] "fornost"           "witch"             "lord"             
##  [1729] "angmar"            "sent"              "bowmen"           
##  [1732] "aid"               "king"              "maintained"       
##  [1735] "though"            "tales"             "men"              
##  [1738] "record"            "war"               "north"            
##  [1741] "kingdom"           "ended"             "hobbits"          
##  [1744] "took"              "land"              "chose"            
##  [1747] "chiefs"            "thain"             "hold"             
##  [1750] "authority"         "king"              "gone"             
##  [1753] "thousand"          "years"             "little"           
##  [1756] "troubled"          "wars"              "prospered"        
##  [1759] "multiplied"        "dark"              "plague"           
##  [1762] "sr"                "disaster"          "long"             
##  [1765] "winter"            "famine"            "followed"         
##  [1768] "many"              "thousands"         "perished"         
##  [1771] "days"              "dearth"            "time"             
##  [1774] "tale"              "long"              "past"             
##  [1777] "hobbits"           "become"            "accustomed"       
##  [1780] "plenty"            "land"              "rich"             
##  [1783] "kindly"            "though"            "long"             
##  [1786] "deserted"          "entered"           "well"             
##  [1789] "tilled"            "king"              "many"             
##  [1792] "farms"             "cornlands"         "vineyards"        
##  [1795] "woods"             "forty"             "leagues"          
##  [1798] "stretched"         "far"               "downs"            
##  [1801] "brandywine"        "bridge"            "fifty"            
##  [1804] "northern"          "moors"             "marshes"          
##  [1807] "south"             "hobbits"           "named"            
##  [1810] "shire"             "region"            "authority"        
##  [1813] "thain"             "district"          "well"             
##  [1816] "ordered"           "business"          "pleasant"         
##  [1819] "comer"             "world"             "plied"            
##  [1822] "well"              "ordered"           "business"         
##  [1825] "living"            "heeded"            "less"             
##  [1828] "less"              "world"             "outside"          
##  [1831] "dark"              "things"            "moved"            
##  [1834] "came"              "think"             "peace"            
##  [1837] "plenty"            "rule"              "middle"           
##  [1840] "earth"             "right"             "sensible"         
##  [1843] "folk"              "forgot"            "ignored"          
##  [1846] "little"            "ever"              "known"            
##  [1849] "guardians"         "labours"           "made"             
##  [1852] "possible"          "long"              "peace"            
##  [1855] "shire"             "fact"              "sheltered"        
##  [1858] "ceased"            "remember"          "time"             
##  [1861] "hobbits"           "kind"              "warlike"          
##  [1864] "never"             "fought"            "among"            
##  [1867] "olden"             "days"              "course"           
##  [1870] "often"             "obliged"           "fight"            
##  [1873] "maintain"          "hard"              "world"            
##  [1876] "bilbos"            "time"              "ancient"          
##  [1879] "history"           "last"              "battle"           
##  [1882] "story"             "opens"             "indeed"           
##  [1885] "one"               "ever"              "fought"           
##  [1888] "within"            "borders"           "shire"            
##  [1891] "beyond"            "living"            "memory"           
##  [1894] "battle"            "greenfields"       "sr"               
##  [1897] "bandobras"         "took"              "routed"           
##  [1900] "invasion"          "orcs"              "even"             
##  [1903] "weathers"          "grown"             "milder"           
##  [1906] "wolves"            "come"              "ravening"         
##  [1909] "north"             "bitter"            "white"            
##  [1912] "winters"           "now"               "grandfathers"     
##  [1915] "tale"              "though"            "still"            
##  [1918] "store"             "weapons"           "shire"            
##  [1921] "used"              "mostly"            "trophies"         
##  [1924] "hanging"           "hearths"           "walls"            
##  [1927] "gathered"          "museum"            "michel"           
##  [1930] "delving"           "mathom"            "house"            
##  [1933] "called"            "anything"          "hobbits"          
##  [1936] "immediate"         "use"               "unwilling"        
##  [1939] "throw"             "away"              "called"           
##  [1942] "mathom"            "dwellings"         "apt"              
##  [1945] "become"            "rather"            "crowded"          
##  [1948] "mathoms"           "many"              "presents"         
##  [1951] "passed"            "hand"              "hand"             
##  [1954] "sort"              "nonetheless"       "ease"             
##  [1957] "peace"             "left"              "people"           
##  [1960] "still"             "curiously"         "tough"            
##  [1963] "came"              "difficult"         "daunt"            
##  [1966] "kill"              "perhaps"           "unwearyingly"     
##  [1969] "fond"              "good"              "things"           
##  [1972] "least"             "put"               "without"          
##  [1975] "survive"           "rough"             "handling"         
##  [1978] "grief"             "foe"               "weather"          
##  [1981] "way"               "astonished"        "know"             
##  [1984] "well"              "looked"            "bellies"          
##  [1987] "well"              "fed"               "faces"            
##  [1990] "though"            "slow"              "quarrel"          
##  [1993] "sport"             "killing"           "nothing"          
##  [1996] "lived"             "doughty"           "bay"              
##  [1999] "need"              "still"             "handle"           
##  [2002] "arms"              "shot"              "well"             
##  [2005] "bow"               "keen"              "eyed"             
##  [2008] "sure"              "mark"              "bows"             
##  [2011] "arrows"            "hobbit"            "stooped"          
##  [2014] "stone"             "well"              "get"              
##  [2017] "quickly"           "cover"             "trespassing"      
##  [2020] "beasts"            "knew"              "well"             
##  [2023] "hobbits"           "originally"        "lived"            
##  [2026] "holes"             "ground"            "believed"         
##  [2029] "dwellings"         "still"             "felt"             
##  [2032] "home"              "course"            "time"             
##  [2035] "obliged"           "adopt"             "forms"            
##  [2038] "abode"             "actually"          "shire"            
##  [2041] "bilbos"            "days"              "rule"             
##  [2044] "richest"           "poorest"           "hobbits"          
##  [2047] "maintained"        "old"               "custom"           
##  [2050] "poorest"           "went"              "living"           
##  [2053] "burrows"           "primitive"         "kind"             
##  [2056] "mere"              "holes"             "indeed"           
##  [2059] "one"               "window"            "none"             
##  [2062] "well"              "still"             "constructed"      
##  [2065] "luxurious"         "versions"          "simple"           
##  [2068] "diggings"          "old"               "suitable"         
##  [2071] "sites"             "large"             "ramifying"        
##  [2074] "tunnels"           "smials"            "called"           
##  [2077] "everywhere"        "found"             "flats"            
##  [2080] "low"               "lying"             "districts"        
##  [2083] "hobbits"           "multiplied"        "began"            
##  [2086] "build"             "ground"            "indeed"           
##  [2089] "even"              "hilly"             "regions"          
##  [2092] "older"             "villages"          "hobbiton"         
##  [2095] "tuckborough"       "chief"             "township"         
##  [2098] "shire"             "michel"            "delving"          
##  [2101] "white"             "downs"             "now"              
##  [2104] "many"              "houses"            "wood"             
##  [2107] "brick"             "stone"             "specially"        
##  [2110] "favoured"          "millers"           "smiths"           
##  [2113] "ropers"            "cartwrights"       "others"           
##  [2116] "sort"              "even"              "holes"            
##  [2119] "live"              "hobbits"           "long"             
##  [2122] "accustomed"        "build"             "sheds"            
##  [2125] "workshops"         "habit"             "building"         
##  [2128] "farmhouses"        "barns"             "said"             
##  [2131] "begun"             "among"             "inhabitants"      
##  [2134] "marish"            "brandywine"        "hobbits"          
##  [2137] "quarter"           "eastfarthing"      "rather"           
##  [2140] "large"             "heavy"             "legged"           
##  [2143] "wore"              "dwarf"             "boots"            
##  [2146] "muddy"             "weather"           "well"             
##  [2149] "known"             "stoors"            "large"            
##  [2152] "part"              "blood"             "indeed"           
##  [2155] "shown"             "many"              "grew"             
##  [2158] "chins"             "harfoot"           "fallohide"        
##  [2161] "trace"             "beard"             "indeed"           
##  [2164] "folk"              "marish"            "buckland"         
##  [2167] "east"              "river"             "afterwards"       
##  [2170] "occupied"          "came"              "part"             
##  [2173] "later"             "shire"             "south"            
##  [2176] "away"              "still"             "many"             
##  [2179] "peculiar"          "names"             "strange"          
##  [2182] "words"             "found"             "elsewhere"        
##  [2185] "shire"             "probable"          "craft"            
##  [2188] "building"          "many"              "crafts"           
##  [2191] "beside"            "derived"           "dúnedain"         
##  [2194] "hobbits"           "may"               "learned"          
##  [2197] "direct"            "elves"             "teachers"         
##  [2200] "men"               "youth"             "elves"            
##  [2203] "high"              "kindred"           "yet"              
##  [2206] "forsaken"          "middle"            "earth"            
##  [2209] "dwelt"             "still"             "time"             
##  [2212] "grey"              "havens"            "away"             
##  [2215] "west"              "places"            "within"           
##  [2218] "reach"             "shire"             "three"            
##  [2221] "elf"               "towers"            "immemorial"       
##  [2224] "age"               "still"             "seen"             
##  [2227] "tower"             "hills"             "beyond"           
##  [2230] "western"           "marches"           "shone"            
##  [2233] "far"               "moonlight"         "tallest"          
##  [2236] "furthest"          "away"              "standing"         
##  [2239] "alone"             "upon"              "green"            
##  [2242] "mound"             "hobbits"           "westfarthing"     
##  [2245] "said"              "one"               "see"              
##  [2248] "sea"               "lop"               "tower"            
##  [2251] "hobbit"            "ever"              "known"            
##  [2254] "climb"             "indeed"            "hobbits"          
##  [2257] "ever"              "seen"              "sailed"           
##  [2260] "upon"              "sea"               "fewer"            
##  [2263] "still"             "ever"              "returned"         
##  [2266] "report"            "hobbits"           "regarded"         
##  [2269] "even"              "rivers"            "small"            
##  [2272] "boats"             "deep"              "misgivings"       
##  [2275] "many"              "swim"              "days"             
##  [2278] "shire"             "lengthened"        "spoke"            
##  [2281] "less"              "less"              "elves"            
##  [2284] "grew"              "afraid"            "distrustful"      
##  [2287] "dealings"          "sea"               "became"           
##  [2290] "word"              "fear"              "among"            
##  [2293] "token"             "death"             "turned"           
##  [2296] "faces"             "away"              "hills"            
##  [2299] "west"              "craft"             "building"         
##  [2302] "may"               "come"              "elves"            
##  [2305] "men"               "hobbits"           "used"             
##  [2308] "fashion"           "go"                "towers"           
##  [2311] "houses"            "usually"           "long"             
##  [2314] "low"               "comfortable"       "oldest"           
##  [2317] "kind"              "indeed"            "built"            
##  [2320] "imitations"        "smials"            "thatched"         
##  [2323] "dry"               "grass"             "straw"            
##  [2326] "roofed"            "turves"            "walls"            
##  [2329] "somewhat"          "bulged"            "stage"            
##  [2332] "however"           "belonged"          "early"            
##  [2335] "days"              "shire"             "hobbit"           
##  [2338] "building"          "long"              "since"            
##  [2341] "altered"           "improved"          "devices"          
##  [2344] "learned"           "dwarves"           "discovered"       
##  [2347] "preference"        "round"             "windows"          
##  [2350] "even"              "round"             "doors"            
##  [2353] "chief"             "remaining"         "peculiarity"      
##  [2356] "hobbit"            "architecture"      "houses"           
##  [2359] "holes"             "shire"             "hobbits"          
##  [2362] "often"             "large"             "inhabited"        
##  [2365] "large"             "families"          "bilbo"            
##  [2368] "frodo"             "baggins"           "bachelors"        
##  [2371] "exceptional"       "also"              "many"             
##  [2374] "ways"              "friendship"        "elves"            
##  [2377] "sometimes"         "case"              "tooks"            
##  [2380] "great"             "smials"            "brandybucks"      
##  [2383] "brandy"            "hall"              "many"             
##  [2386] "generations"       "relatives"         "lived"            
##  [2389] "comparative"       "peace"             "together"         
##  [2392] "one"               "ancestral"         "many"             
##  [2395] "tunnelled"         "mansion"           "hobbits"          
##  [2398] "case"              "clannish"          "reckoned"         
##  [2401] "relationships"     "great"             "care"             
##  [2404] "drew"              "long"              "elaborate"        
##  [2407] "family"            "trees"             "innumerable"      
##  [2410] "branches"          "dealing"           "hobbits"          
##  [2413] "important"         "remember"          "related"          
##  [2416] "degree"            "impossible"        "book"             
##  [2419] "set"               "family"            "tree"             
##  [2422] "included"          "even"              "important"        
##  [2425] "members"           "important"         "families"         
##  [2428] "time"              "tales"             "tell"             
##  [2431] "genealogical"      "trees"             "end"              
##  [2434] "red"               "book"              "westmarch"        
##  [2437] "small"             "book"              "hobbits"          
##  [2440] "find"              "exceedingly"       "dull"             
##  [2443] "hobbits"           "delighted"         "things"           
##  [2446] "accurate"          "liked"             "books"            
##  [2449] "filled"            "things"            "already"          
##  [2452] "knew"              "set"               "fair"             
##  [2455] "square"            "contradictions"    "concerning"       
##  [2458] "pipe"              "weed"              "another"          
##  [2461] "astonishing"       "thing"             "hobbits"          
##  [2464] "old"               "must"              "mentioned"        
##  [2467] "astonishing"       "habit"             "imbibed"          
##  [2470] "inhaled"           "pipes"             "clay"             
##  [2473] "wood"              "smoke"             "burning"          
##  [2476] "leaves"            "herb"              "called"           
##  [2479] "pipe"              "weed"              "leaf"             
##  [2482] "variety"           "probably"          "nicotiana"        
##  [2485] "great"             "deal"              "mystery"          
##  [2488] "surrounds"         "origin"            "peculiar"         
##  [2491] "custom"            "art"               "hobbits"          
##  [2494] "preferred"         "call"              "discovered"       
##  [2497] "antiquity"         "put"               "together"         
##  [2500] "meriadoc"          "brandybuck"        "later"            
##  [2503] "master"            "buckland"          "since"            
##  [2506] "tobacco"           "southfarthing"     "play"             
##  [2509] "part"              "history"           "follows"          
##  [2512] "remarks"           "introduction"      "herblore"         
##  [2515] "shire"             "may"               "quoted"           
##  [2518] ""                  ""                  "says"             
##  [2521] "one"               "art"               "can"              
##  [2524] "certainly"         "claim"             "invention"        
##  [2527] "hobbits"           "first"             "began"            
##  [2530] "smoke"             "known"             "legends"          
##  [2533] "family"            "histories"         "take"             
##  [2536] "granted"           "ages"              "folk"             
##  [2539] "shire"             "smoked"            "various"          
##  [2542] "herbs"             "fouler"            "sweeter"          
##  [2545] "accounts"          "agree"             "tobold"           
##  [2548] "hornblower"        "longbottom"        "southfarthing"    
##  [2551] "first"             "grew"              "true"             
##  [2554] "pipe"              "weed"              "gardens"          
##  [2557] "days"              "isengrim"          "second"           
##  [2560] "year"              "shire"             "reckoning"        
##  [2563] "best"              "home"              "grown"            
##  [2566] "still"             "comes"             "district"         
##  [2569] "especially"        "varieties"         "now"              
##  [2572] "known"             "longbottom"        "leaf"             
##  [2575] "old"               "toby"              "southern"         
##  [2578] "star"              "old"               "toby"             
##  [2581] "came"              "plant"             "recorded"         
##  [2584] "dying"             "day"               "tell"             
##  [2587] "knew"              "much"              "herbs"            
##  [2590] "traveller"         "said"              "youth"            
##  [2593] "went"              "often"             "bree"             
##  [2596] "though"            "certainly"         "never"            
##  [2599] "went"              "shire"             "thus"             
##  [2602] "quite"             "possible"          "learned"          
##  [2605] "plant"             "bree"              "now"              
##  [2608] "rate"              "grows"             "well"             
##  [2611] "south"             "slopes"            "hill"             
##  [2614] "bree"              "hobbits"           "claim"            
##  [2617] "first"             "actual"            "smokers"          
##  [2620] "pipe"              "weed"              "claim"            
##  [2623] "course"            "done"              "everything"       
##  [2626] "people"            "shire"             "refer"            
##  [2629] "colonists"         "case"              "claim"            
##  [2632] "think"             "likely"            "true"             
##  [2635] "certainly"         "bree"              "art"              
##  [2638] "smoking"           "genuine"           "weed"             
##  [2641] "spread"            "recent"            "centuries"        
##  [2644] "among"             "dwarves"           "folk"             
##  [2647] "rangers"           "wizards"           "wanderers"        
##  [2650] "still"             "passed"            "fro"              
##  [2653] "ancient"           "road"              "meeting"          
##  [2656] "home"              "centre"            "thus"             
##  [2659] "found"             "old"               "inn"              
##  [2662] "bree"              "prancing"          "pony"             
##  [2665] "kept"              "family"            "butterbur"        
##  [2668] "time"              "beyond"            "record"           
##  [2671] "observations"      "made"              "many"             
##  [2674] "journeys"          "south"             "convinced"        
##  [2677] "weed"              "native"            "parts"            
##  [2680] "world"             "came"              "northward"        
##  [2683] "lower"             "anduin"            "whither"          
##  [2686] "suspect"           "originally"        "brought"          
##  [2689] "sea"               "men"               "westernesse"      
##  [2692] "grows"             "abundantly"        "gondor"           
##  [2695] "richer"            "larger"            "north"            
##  [2698] "never"             "found"             "wild"             
##  [2701] "flourishes"        "warm"              "sheltered"        
##  [2704] "places"            "like"              "longbottom"       
##  [2707] "men"               "gondor"            "call"             
##  [2710] "sweet"             "galenas"           "esteem"           
##  [2713] "fragrance"         "flowers"           "land"             
##  [2716] "must"              "carried"           "greenway"         
##  [2719] "long"              "centuries"         "coming"           
##  [2722] "elendil"           "day"               "even"             
##  [2725] "dúnedain"          "gondor"            "allow"            
##  [2728] "us"                "credit"            "hobbits"          
##  [2731] "first"             "put"               "pipes"            
##  [2734] "even"              "wizards"           "first"            
##  [2737] "thought"           "though"            "one"              
##  [2740] "wizard"            "knew"              "took"             
##  [2743] "art"               "long"              "ago"              
##  [2746] "became"            "skilful"           "things"           
##  [2749] "put"               "mind"              "ordering"         
##  [2752] "shire"             "shire"             "divided"          
##  [2755] "four"              "quarters"          "farthings"        
##  [2758] "already"           "referred"          "north"            
##  [2761] "south"             "east"              "west"             
##  [2764] "number"            "folklands"         "still"            
##  [2767] "bore"              "names"             "old"              
##  [2770] "leading"           "families"          "although"         
##  [2773] "time"              "history"           "names"            
##  [2776] "longer"            "found"             "proper"           
##  [2779] "folklands"         "nearly"            "tooks"            
##  [2782] "still"             "lived"             "tookland"         
##  [2785] "true"              "many"              "families"         
##  [2788] "bagginses"         "boffins"           "outside"          
##  [2791] "farthings"         "east"              "west"             
##  [2794] "marches"           "buckland"          "see"              
##  [2797] "beginning"         "chapter"           "book"             
##  [2800] "westmarch"         "added"             "shire"            
##  [2803] "sr"                "shire"             "time"             
##  [2806] "hardly"            "government"        "families"         
##  [2809] "part"              "managed"           "affairs"          
##  [2812] "growing"           "food"              "eating"           
##  [2815] "occupied"          "time"              "matters"          
##  [2818] "rule"              "generous"          "greedy"           
##  [2821] "contented"         "moderate"          "estates"          
##  [2824] "farms"             "workshops"         "small"            
##  [2827] "trades"            "tended"            "remain"           
##  [2830] "unchanged"         "generations"       "remained"         
##  [2833] "course"            "ancient"           "tradition"        
##  [2836] "concerning"        "high"              "king"             
##  [2839] "fornost"           "norbury"           "called"           
##  [2842] "away"              "north"             "shire"            
##  [2845] "king"              "nearly"            "thousand"         
##  [2848] "years"             "even"              "ruins"            
##  [2851] "kings"             "norbury"           "covered"          
##  [2854] "grass"             "yet"               "hobbits"          
##  [2857] "still"             "said"              "wild"             
##  [2860] "folk"              "wicked"            "things"           
##  [2863] "trolls"            "heard"             "king"             
##  [2866] "attributed"        "king"              "old"              
##  [2869] "essential"         "laws"              "usually"          
##  [2872] "kept"              "laws"              "free"             
##  [2875] "will"              "rules"             "said"             
##  [2878] "ancient"           "just"              "true"             
##  [2881] "took"              "family"            "long"             
##  [2884] "pre"               "eminent"           "office"           
##  [2887] "thain"             "passed"            "oldbucks"         
##  [2890] "centuries"         "chief"             "took"             
##  [2893] "borne"             "title"             "ever"             
##  [2896] "since"             "thain"             "master"           
##  [2899] "shire"             "moot"              "captain"          
##  [2902] "shire"             "muster"            "hobbitry"         
##  [2905] "arms"              "muster"            "moot"             
##  [2908] "held"              "times"             "emergency"        
##  [2911] "longer"            "occurred"          "thainship"        
##  [2914] "ceased"            "nominal"           "dignity"          
##  [2917] "took"              "family"            "still"            
##  [2920] "indeed"            "accorded"          "special"          
##  [2923] "respect"           "remained"          "numerous"         
##  [2926] "exceedingly"       "wealthy"           "liable"           
##  [2929] "produce"           "every"             "generation"       
##  [2932] "strong"            "characters"        "peculiar"         
##  [2935] "habits"            "even"              "adventurous"      
##  [2938] "temperament"       "latter"            "qualities"        
##  [2941] "however"           "now"               "rather"           
##  [2944] "tolerated"         "rich"              "generally"        
##  [2947] "approved"          "custom"            "endured"          
##  [2950] "nonetheless"       "referring"         "head"             
##  [2953] "family"            "took"              "adding"           
##  [2956] "name"              "required"          "number"           
##  [2959] "isengrim"          "second"            "instance"         
##  [2962] "real"              "official"          "shire"            
##  [2965] "date"              "mayor"             "michel"           
##  [2968] "delving"           "shire"             "elected"          
##  [2971] "every"             "seven"             "years"            
##  [2974] "free"              "fair"              "white"            
##  [2977] "downs"             "lithe"             "midsummer"        
##  [2980] "mayor"             "almost"            "duty"             
##  [2983] "preside"           "banquets"          "given"            
##  [2986] "shire"             "holidays"          "occurred"         
##  [2989] "frequent"          "intervals"         "offices"          
##  [2992] "postmaster"        "first"             "shirriff"         
##  [2995] "attached"          "mayoralty"         "managed"          
##  [2998] "messenger"         "service"           "watch"            
##  [3001] "shire"             "services"          "messengers"       
##  [3004] "numerous"          "much"              "busier"           
##  [3007] "two"               "means"             "hobbits"          
##  [3010] "lettered"          "wrote"             "constantly"       
##  [3013] "friends"           "selection"         "relations"        
##  [3016] "lived"             "afternoons"        "walk"             
##  [3019] "shirriffs"         "name"              "hobbits"          
##  [3022] "gave"              "police"            "nearest"          
##  [3025] "equivalent"        "possessed"         "course"           
##  [3028] "uniforms"          "things"            "quite"            
##  [3031] "unknown"           "feather"           "caps"             
##  [3034] "practice"          "rather"            "haywards"         
##  [3037] "policemen"         "concerned"         "strayings"        
##  [3040] "beasts"            "people"            "shire"            
##  [3043] "twelve"            "three"             "farthing"         
##  [3046] "inside"            "work"              "rather"           
##  [3049] "larger"            "body"              "varying"          
##  [3052] "need"              "employed"          "beat"             
##  [3055] "bounds"            "see"               "outsiders"        
##  [3058] "kind"              "great"             "small"            
##  [3061] "make"              "nuisance"          "time"             
##  [3064] "story"             "begins"            "bounders"         
##  [3067] "called"            "greatly"           "increased"        
##  [3070] "many"              "reports"           "complaints"       
##  [3073] "strange"           "persons"           "creatures"        
##  [3076] "prowling"          "borders"           "first"            
##  [3079] "sign"              "quite"             "always"           
##  [3082] "except"            "tales"             "legends"          
##  [3085] "long"              "ago"               "heeded"           
##  [3088] "sign"              "even"              "bilbo"            
##  [3091] "yet"               "notion"            "portended"        
##  [3094] "sixty"             "years"             "passed"           
##  [3097] "since"             "set"               "memorable"        
##  [3100] "journey"           "old"               "even"             
##  [3103] "hobbits"           "reached"           "hundred"          
##  [3106] "often"             "much"              "evidently"        
##  [3109] "still"             "remained"          "considerable"     
##  [3112] "wealth"            "brought"           "back"             
##  [3115] "much"              "little"            "revealed"         
##  [3118] "one"               "even"              "frodo"            
##  [3121] "favourite"         "nephew"            "still"            
##  [3124] "kept"              "secret"            "ring"             
##  [3127] "bad"               "found"             "finding"          
##  [3130] "ring"              "told"              "hobbit"           
##  [3133] "came"              "one"               "day"              
##  [3136] "bilbos"            "door"              "great"            
##  [3139] "wizard"            "gandalf"           "grey"             
##  [3142] "thirteen"          "dwarves"           "none"             
##  [3145] "indeed"            "thorin"            "oakenshield"      
##  [3148] "descendant"        "kings"             "twelve"           
##  [3151] "companions"        "exile"             "set"              
##  [3154] "lasting"           "astonishment"      "morning"          
##  [3157] "april"             "year"              "shire"            
##  [3160] "reckoning"         "quest"             "great"            
##  [3163] "treasure"          "dwarf"             "hoards"           
##  [3166] "kings"             "mountain"          "beneath"          
##  [3169] "erebor"            "dale"              "far"              
##  [3172] "east"              "quest"             "successful"       
##  [3175] "dragon"            "guarded"           "hoard"            
##  [3178] "destroyed"         "yet"               "though"           
##  [3181] "won"               "battle"            "five"             
##  [3184] "armies"            "fought"            "thorin"           
##  [3187] "slain"             "many"              "deeds"            
##  [3190] "renown"            "done"              "matter"           
##  [3193] "scarcely"          "concerned"         "later"            
##  [3196] "history"           "earned"            "note"             
##  [3199] "long"              "annals"            "third"            
##  [3202] "age"               "accident"          "way"              
##  [3205] "party"             "assailed"          "orcs"             
##  [3208] "high"              "pass"              "misty"            
##  [3211] "mountains"         "went"              "towards"          
##  [3214] "wilderland"        "happened"          "bilbo"            
##  [3217] "lost"              "black"             "orc"              
##  [3220] "mines"             "deep"              "mountains"        
##  [3223] "groped"            "vain"              "dark"             
##  [3226] "put"               "hand"              "ring"             
##  [3229] "lying"             "floor"             "tunnel"           
##  [3232] "put"               "pocket"            "seemed"           
##  [3235] "like"              "mere"              "luck"             
##  [3238] "trying"            "find"              "way"              
##  [3241] "bilbo"             "went"              "roots"            
##  [3244] "mountains"         "go"                "bottom"           
##  [3247] "tunnel"            "lay"               "cold"             
##  [3250] "lake"              "far"               "light"            
##  [3253] "island"            "rock"              "water"            
##  [3256] "lived"             "gollum"            "loathsome"        
##  [3259] "little"            "creature"          "paddled"          
##  [3262] "small"             "boat"              "large"            
##  [3265] "flat"              "feet"              "peering"          
##  [3268] "pale"              "luminous"          "eyes"             
##  [3271] "catching"          "blind"             "fish"             
##  [3274] "long"              "fingers"           "eating"           
##  [3277] "raw"               "ate"               "living"           
##  [3280] "thing"             "even"              "orc"              
##  [3283] "catch"             "strangle"          "without"          
##  [3286] "struggle"          "possessed"         "secret"           
##  [3289] "treasure"          "come"              "long"             
##  [3292] "ages"              "ago"               "still"            
##  [3295] "lived"             "light"             "ring"             
##  [3298] "gold"              "made"              "wearer"           
##  [3301] "invisible"         "one"               "thing"            
##  [3304] "loved"             "precious"          "talked"           
##  [3307] "even"              "kept"              "hidden"           
##  [3310] "safe"              "hole"              "island"           
##  [3313] "except"            "hunting"           "spying"           
##  [3316] "ores"              "mines"             "maybe"            
##  [3319] "attacked"          "bilbo"             "ring"             
##  [3322] "met"               "hobbit"            "held"             
##  [3325] "hand"              "elvish"            "knife"            
##  [3328] "served"            "sword"             "gain"             
##  [3331] "time"              "gollum"            "challenged"       
##  [3334] "bilbo"             "riddle"            "game"             
##  [3337] "saying"            "asked"             "riddle"           
##  [3340] "bilbo"             "guess"             "kill"             
##  [3343] "eat"               "bilbo"             "defeated"         
##  [3346] "bilbo"             "wished"            "lead"             
##  [3349] "way"               "tunnels"           "since"            
##  [3352] "lost"              "dark"              "without"          
##  [3355] "hope"              "neither"           "go"               
##  [3358] "back"              "bilbo"             "accepted"         
##  [3361] "challenge"         "asked"             "one"              
##  [3364] "another"           "many"              "riddles"          
##  [3367] "end"               "bilbo"             "won"              
##  [3370] "game"              "luck"              "seemed"           
##  [3373] "wits"              "stumped"           "last"             
##  [3376] "riddle"            "ask"               "cried"            
##  [3379] "hand"              "came"              "upon"             
##  [3382] "ring"              "lad"               "picked"           
##  [3385] "forgotten"         "haw"               "got"              
##  [3388] "pocket"            "gollum"            "failed"           
##  [3391] "answer"            "though"            "demanded"         
##  [3394] "three"             "guesses"           "authorities"      
##  [3397] "true"              "differ"            "whether"          
##  [3400] "last"              "question"          "mere"             
##  [3403] "question"          "riddle"            "according"        
##  [3406] "strict"            "rules"             "game"             
##  [3409] "agree"             "accepting"         "trying"           
##  [3412] "guess"             "answer"            "gollum"           
##  [3415] "bound"             "promise"           "bilbo"            
##  [3418] "pressed"           "keep"              "word"             
##  [3421] "thought"           "came"              "slimy"            
##  [3424] "creature"          "might"             "prove"            
##  [3427] "false"             "even"              "though"           
##  [3430] "promises"          "held"              "sacred"           
##  [3433] "old"               "wickedest"         "things"           
##  [3436] "feared"            "break"             "ages"             
##  [3439] "alone"             "dark"              "gollum"           
##  [3442] ""                  "heart"             "black"            
##  [3445] "treachery"         "slipped"           "away"             
##  [3448] "returned"          "island"            "bilbo"            
##  [3451] "knew"              "nothing"           "far"              
##  [3454] "dark"              "water"             "thought"          
##  [3457] "lay"               "ring"              "hungry"           
##  [3460] "now"               "angry"             "precious"         
##  [3463] "fear"              "weapon"            "ring"             
##  [3466] "island"            "lost"              "gone"             
##  [3469] "screech"           "sent"              "shiver"           
##  [3472] "bilbos"            "back"              "though"           
##  [3475] "yet"               "understand"        "happened"         
##  [3478] "gollum"            "last"              "leaped"           
##  [3481] "guess"             "late"              "got"              
##  [3484] "pocketses"         "cried"             "light"            
##  [3487] "eyes"              "like"              "green"            
##  [3490] "flame"             "sped"              "back"             
##  [3493] "murder"            "hobbit"            "recover"          
##  [3496] "precious"          "just"              "time"             
##  [3499] "bilbo"             "saw"               "peril"            
##  [3502] "fled"              "blindly"           "passage"          
##  [3505] "away"              "water"             "saved"            
##  [3508] "luck"              "just"              "ran"              
##  [3511] "put"               "hand"              "pocket"           
##  [3514] "ring"              "slipped"           "quietly"          
##  [3517] "finger"            "gollum"            "passed"           
##  [3520] "without"           "seeing"            "went"             
##  [3523] "guard"             "way"               "lest"             
##  [3526] ""                  "thief"             ""                 
##  [3529] "escape"            "warily"            "bilbo"            
##  [3532] "followed"          "went"              "along"            
##  [3535] "cursing"           "talking"           "precious"         
##  [3538] "talk"              "last"              "even"             
##  [3541] "bilbo"             "guessed"           "truth"            
##  [3544] "hope"              "came"              "darkness"         
##  [3547] "found"             "marvellous"        "ring"             
##  [3550] "chance"            "escape"            "orcs"             
##  [3553] "gollum"            "length"            "came"             
##  [3556] "halt"              "unseen"            "opening"          
##  [3559] "led"               "lower"             "gates"            
##  [3562] "mines"             "eastward"          "side"             
##  [3565] "mountains"         "gollum"            "crouched"         
##  [3568] "bay"               "smelling"          "listening"        
##  [3571] "bilbo"             "tempted"           "slay"             
##  [3574] "sword"             "pity"              "stayed"           
##  [3577] "though"            "kept"              "ring"             
##  [3580] "hope"              "lay"               "use"              
##  [3583] "help"              "kill"              "wretched"         
##  [3586] "creature"          "disadvantage"      "end"              
##  [3589] "gathering"         "courage"           "leaped"           
##  [3592] "gollum"            "dark"              "fled"             
##  [3595] "away"              "passage"           "pursued"          
##  [3598] "enemys"            "cries"             "hate"             
##  [3601] "despair"           "thief"             "thief"            
##  [3604] "baggins"           "hates"             "ever"             
##  [3607] "now"               "curious"           "fact"             
##  [3610] "story"             "bilbo"             "first"            
##  [3613] "told"              "companions"        "account"          
##  [3616] "gollum"            "promised"          "give"             
##  [3619] "present"           "won"               "game"             
##  [3622] "gollum"            "went"              "fetch"            
##  [3625] "island"            "found"             "treasure"         
##  [3628] "gone"              "magic"             "ring"             
##  [3631] "given"             "long"              "ago"              
##  [3634] "birthday"          "bilbo"             "guessed"          
##  [3637] "ring"              "found"             "won"              
##  [3640] "game"              "already"           "right"            
##  [3643] "tight"             "place"             "said"             
##  [3646] "nothing"           "made"              "gollum"           
##  [3649] "show"              "way"               "reward"           
##  [3652] "instead"           "present"           "account"          
##  [3655] "bilbo"             "set"               "memoirs"          
##  [3658] "seems"             "never"             "altered"          
##  [3661] "even"              "council"           "elrond"           
##  [3664] "evidently"         "still"             "appeared"         
##  [3667] "original"          "red"               "book"             
##  [3670] "several"           "copies"            "abstracts"        
##  [3673] "many"              "copies"            "contain"          
##  [3676] "true"              "account"           "alternative"      
##  [3679] "derived"           "doubt"             "notes"            
##  [3682] "frodo"             "samwise"           "learned"          
##  [3685] "truth"             "though"            "seem"             
##  [3688] "unwilling"         "delete"            "anything"         
##  [3691] "actually"          "written"           "old"              
##  [3694] "hobbit"            "gandalf"           "however"          
##  [3697] "disbelieved"       "bilbos"            "first"            
##  [3700] "story"             "soon"              "heard"            
##  [3703] "continued"         "curious"           "ring"             
##  [3706] "eventually"        "got"               "true"             
##  [3709] "tale"              "bilbo"             "much"             
##  [3712] "questioning"       "strained"          "friendship"       
##  [3715] "wizard"            "seemed"            "think"            
##  [3718] "truth"             "important"         "though"           
##  [3721] "say"               "bilbo"             "also"             
##  [3724] "thought"           "important"         "disturbing"       
##  [3727] "find"              "good"              "hobbit"           
##  [3730] "told"              "truth"             "first"            
##  [3733] "quite"             "contrary"          "habit"            
##  [3736] "idea"              "present"           "mere"             
##  [3739] "hobbitlike"        "invention"         "suggested"        
##  [3742] "bilbo"             "confessed"         "gollums"          
##  [3745] "talk"              "overheard"         "gollum"           
##  [3748] "fact"              "call"              "ring"             
##  [3751] "birthday"          "present"           "many"             
##  [3754] "times"             "also"              "gandalf"          
##  [3757] "thought"           "strange"           "suspicious"       
##  [3760] "discover"          "truth"             "point"            
##  [3763] "many"              "years"             "will"             
##  [3766] "seen"              "book"              "bilbos"           
##  [3769] "later"             "adventures"        "little"           
##  [3772] "need"              "said"              "help"             
##  [3775] "ring"              "escaped"           "orc"              
##  [3778] "guards"            "gate"              "rejoined"         
##  [3781] "companions"        "used"              "ring"             
##  [3784] "many"              "times"             "quest"            
##  [3787] "chiefly"           "help"              "friends"          
##  [3790] "kept"              "secret"            "long"             
##  [3793] "return"            "home"              "never"            
##  [3796] "spoke"             "anyone"            "save"             
##  [3799] "gandalf"           "frodo"             "one"              
##  [3802] "else"              "shire"             "knew"             
##  [3805] "existence"         "believed"          "frodo"            
##  [3808] "show"              "account"           "journey"          
##  [3811] "writing"           "sword"             "sting"            
##  [3814] "bilbo"             "hung"              "fireplace"        
##  [3817] "coat"              "marvellous"        "mail"             
##  [3820] "gift"              "dwarves"           "dragon"           
##  [3823] "hoard"             "lent"              "museum"           
##  [3826] "michel"            "delving"           "mathom"           
##  [3829] "house"             "fact"              "kept"             
##  [3832] "drawer"            "bag"               "end"              
##  [3835] "old"               "cloak"             "hood"             
##  [3838] "worn"              "travels"           "ring"             
##  [3841] "secured"           "fine"              "chain"            
##  [3844] "remained"          "pocket"            "returned"         
##  [3847] "home"              "bag"               "end"              
##  [3850] "june"              "nd"                "fifty"            
##  [3853] "second"            "year"              "sr"               
##  [3856] "nothing"           "notable"           "occurred"         
##  [3859] "shire"             "mr"                "baggins"          
##  [3862] "began"             "preparations"      "celebration"      
##  [3865] "hundred"           "eleventh"          "birthday"         
##  [3868] "sr"                "point"             "history"          
##  [3871] "begins"            "note"              "shire"            
##  [3874] "records"           "end"               "third"            
##  [3877] "age"               "part"              "played"           
##  [3880] "hobbits"           "great"             "events"           
##  [3883] "led"               "inclusion"         "shire"            
##  [3886] "reunited"          "kingdom"           "awakened"         
##  [3889] "among"             "widespread"        "interest"         
##  [3892] "history"           "many"              "traditions"       
##  [3895] "time"              "still"             "mainly"           
##  [3898] "oral"              "collected"         "written"          
##  [3901] "greater"           "families"          "also"             
##  [3904] "concerned"         "events"            "kingdom"          
##  [3907] "large"             "many"              "members"          
##  [3910] "studied"           "ancient"           "histories"        
##  [3913] "legends"           "end"               "first"            
##  [3916] "century"           "fourth"            "age"              
##  [3919] "already"           "found"             "shire"            
##  [3922] "several"           "libraries"         "contained"        
##  [3925] "many"              "historical"        "books"            
##  [3928] "records"           "largest"           "collections"      
##  [3931] "probably"          "undertowers"       "great"            
##  [3934] "smials"            "brandy"            "hall"             
##  [3937] "account"           "end"               "third"            
##  [3940] "age"               "drawn"             "mainly"           
##  [3943] "red"               "book"              "westmarch"        
##  [3946] "important"         "source"            "history"          
##  [3949] "war"               "ring"              "called"           
##  [3952] "long"              "preserved"         "undertowers"      
##  [3955] "home"              "fairbairns"        "wardens"          
##  [3958] "westmarch"         "origin"            "bilbos"           
##  [3961] "private"           "diary"             "took"             
##  [3964] "rivendell"         "frodo"             "brought"          
##  [3967] "back"              "shire"             "together"         
##  [3970] "many"              "loose"             "leaves"           
##  [3973] "notes"             "sr"                "nearly"           
##  [3976] "filled"            "pages"             "account"          
##  [3979] "war"               "annexed"           "preserved"        
##  [3982] "probably"          "single"            "red"              
##  [3985] "case"              "three"             "large"            
##  [3988] "volumes"           "bound"             "red"              
##  [3991] "leather"           "bilbo"             "gave"             
##  [3994] "parting"           "gift"              "four"             
##  [3997] "volumes"           "added"             "westmarch"        
##  [4000] "fifth"             "containing"        "commentaries"     
##  [4003] "genealogies"       "various"           "matter"           
##  [4006] "concerning"        "hobbit"            "members"          
##  [4009] "fellowship"        "original"          "red"              
##  [4012] "book"              "preserved"         "many"             
##  [4015] "copies"            "made"              "especially"       
##  [4018] "first"             "volume"            "use"              
##  [4021] "descendants"       "children"          "master"           
##  [4024] "samwise"           "important"         "copy"             
##  [4027] "however"           "different"         "history"          
##  [4030] "kept"              "great"             "smials"           
##  [4033] "written"           "condor"            "probably"         
##  [4036] "request"           "great"             "grandson"         
##  [4039] "peregrin"          "completed"         "sr"               
##  [4042] "fa"                "southern"          "scribe"           
##  [4045] "appended"          "note"              "findegil"         
##  [4048] "kings"             "writer"            "finished"         
##  [4051] "work"              "iv"                "exact"            
##  [4054] "copy"              "details"           "thains"           
##  [4057] "book"              "minas"             "tirith"           
##  [4060] "book"              "copy"              "made"             
##  [4063] "request"           "king"              "elessar"          
##  [4066] "red"               "book"              "periannath"       
##  [4069] "brought"           "thain"             "peregrin"         
##  [4072] "retired"           "gondor"            "iv"               
##  [4075] "thains"            "book"              "thus"             
##  [4078] "first"             "copy"              "made"             
##  [4081] "red"               "book"              "contained"        
##  [4084] "much"              "later"             "omitted"          
##  [4087] "lost"              "minas"             "tirith"           
##  [4090] "received"          "much"              "annotation"       
##  [4093] "many"              "corrections"       "especially"       
##  [4096] "names"             "words"             "quotations"       
##  [4099] "elvish"            "languages"         "added"            
##  [4102] "abbreviated"       "version"           "parts"            
##  [4105] "tale"              "aragorn"           "arwen"            
##  [4108] "lie"               "outside"           "account"          
##  [4111] "war"               "full"              "tale"             
##  [4114] "stated"            "written"           "barahir"          
##  [4117] "grandson"          "steward"           "faramir"          
##  [4120] "time"              "passing"           "king"             
##  [4123] "chief"             "importance"        "findegils"        
##  [4126] "copy"              "alone"             "contains"         
##  [4129] "whole"             "bilbos"            "translations"     
##  [4132] "elvish"            "three"             "volumes"          
##  [4135] "found"             "work"              "great"            
##  [4138] "skill"             "learning"          "used"             
##  [4141] "sources"           "available"         "rivendell"        
##  [4144] "living"            "written"           "since"            
##  [4147] "little"            "used"              "frodo"            
##  [4150] "almost"            "entirely"          "concerned"        
##  [4153] "elder"             "days"              "said"             
##  [4156] "since"             "meriadoc"          "peregrin"         
##  [4159] "became"            "heads"             "great"            
##  [4162] "families"          "time"              "kept"             
##  [4165] "connexions"        "rohan"             "gondor"           
##  [4168] "libraries"         "bucklebury"        "tuckborough"      
##  [4171] "contained"         "much"              "appear"           
##  [4174] "red"               "book"              "brandy"           
##  [4177] "hall"              "many"              "works"            
##  [4180] "dealing"           "eriador"           "history"          
##  [4183] "rohan"             "composed"          "begun"            
##  [4186] "meriadoc"          "though"            "shire"            
##  [4189] "chiefly"           "remembered"        "herblore"         
##  [4192] "shire"             "reckoning"         "years"            
##  [4195] "discussed"         "relation"          "calendars"        
##  [4198] "shire"             "bree"              "rivendell"        
##  [4201] "gondor"            "rohan"             "also"             
##  [4204] "wrote"             "short"             "treatise"         
##  [4207] "old"               "words"             "names"            
##  [4210] "shire"             "special"           "interest"         
##  [4213] "discovering"       "kinship"           "language"         
##  [4216] "rohirrim"          "shire"             "words"            
##  [4219] "mathom"            "old"               "elements"         
##  [4222] "place"             "names"             "great"            
##  [4225] "smials"            "books"             "less"             
##  [4228] "interest"          "shire"             "folk"             
##  [4231] "though"            "important"         "larger"           
##  [4234] "history"           "none"              "written"          
##  [4237] "peregrin"          "successors"        "collected"        
##  [4240] "many"              "manuscripts"       "written"          
##  [4243] "scribes"           "gondor"            "mainly"           
##  [4246] "copies"            "summaries"         "histories"        
##  [4249] "legends"           "relating"          "elendil"          
##  [4252] "heirs"             "shire"             "found"            
##  [4255] "extensive"         "materials"         "history"          
##  [4258] "númenor"           "arising"           "sauron"           
##  [4261] "probably"          "great"             "smials"           
##  [4264] "tale"              "years"             "put"              
##  [4267] "together"          "assistance"        "material"         
##  [4270] "collected"         "meriadoc"          "though"           
##  [4273] "dates"             "given"             "often"            
##  [4276] "conjectural"       "especially"        "second"           
##  [4279] "age"               "deserve"           "attention"        
##  [4282] "probable"          "meriadoc"          "obtained"         
##  [4285] "assistance"        "information"       "rivendell"        
##  [4288] "visited"           "though"            "elrond"           
##  [4291] "departed"          "sons"              "long"             
##  [4294] "remained"          "together"          "high"             
##  [4297] "elven"             "folk"              "said"             
##  [4300] "celeborn"          "went"              "dwell"            
##  [4303] "departure"         "galadriel"         "record"           
##  [4306] "day"               "last"              "sought"           
##  [4309] "grey"              "havens"            "went"             
##  [4312] "last"              "living"            "memory"           
##  [4315] "elder"             "days"              "middle"           
##  [4318] "earth"             "book"              "chapter"          
##  [4321] "long"              "expected"          "party"            
##  [4324] "mr"                "bilbo"             "baggins"          
##  [4327] "bag"               "end"               "announced"        
##  [4330] "shortly"           "celebrating"       "eleventy"         
##  [4333] "first"             "birthday"          "party"            
##  [4336] "special"           "magnificence"      "much"             
##  [4339] "talk"              "excitement"        "hobbiton"         
##  [4342] "bilbo"             "rich"              "peculiar"         
##  [4345] "wonder"            "shire"             "sixty"            
##  [4348] "years"             "ever"              "since"            
##  [4351] "remarkable"        "disappearance"     "unexpected"       
##  [4354] "return"            "riches"            "brought"          
##  [4357] "back"              "travels"           "now"              
##  [4360] "become"            "local"             "legend"           
##  [4363] "popularly"         "believed"          "whatever"         
##  [4366] "old"               "folk"              "might"            
##  [4369] "say"               "hill"              "bag"              
##  [4372] "end"               "full"              "tunnels"          
##  [4375] "stuffed"           "treasure"          "enough"           
##  [4378] "fame"              "also"              "prolonged"        
##  [4381] "vigour"            "marvel"            "time"             
##  [4384] "wore"              "seemed"            "little"           
##  [4387] "effect"            "mr"                "baggins"          
##  [4390] "ninety"            "much"              "fifty"            
##  [4393] "ninety"            "nine"              "began"            
##  [4396] "call"              "well"              "preserved"        
##  [4399] "unchanged"         "nearer"            "mark"             
##  [4402] "shook"             "heads"             "thought"          
##  [4405] "much"              "good"              "thing"            
##  [4408] "seemed"            "unfair"            "anyone"           
##  [4411] "possess"           "apparently"        "perpetual"        
##  [4414] "youth"             "well"              "reputedly"        
##  [4417] "inexhaustible"     "wealth"            ""                 
##  [4420] ""                  "will"              "paid"             
##  [4423] ""                  ""                  "said"             
##  [4426] ""                  ""                  "isn"              
##  [4429] ""                  "natural"           "trouble"          
##  [4432] "will"              "come"              ""                 
##  [4435] ""                  "far"               "trouble"          
##  [4438] "come"              "mr"                "baggins"          
##  [4441] "generous"          "money"             "people"           
##  [4444] "willing"           "forgive"           "oddities"         
##  [4447] "good"              "fortune"           "remained"         
##  [4450] "visiting"          "terms"             "relatives"        
##  [4453] "except"            "course"            "sackville"        
##  [4456] "bagginses"         "many"              "devoted"          
##  [4459] "admirers"          "among"             "hobbits"          
##  [4462] "poor"              "unimportant"       "families"         
##  [4465] "close"             "friends"           "younger"          
##  [4468] "cousins"           "began"             "grow"             
##  [4471] "eldest"            "bilbo"             ""                 
##  [4474] "favourite"         "young"             "frodo"            
##  [4477] "baggins"           "bilbo"             "ninety"           
##  [4480] "nine"              "adopted"           "frodo"            
##  [4483] "heir"              "brought"           "live"             
##  [4486] "bag"               "end"               "hopes"            
##  [4489] "sackville"         "bagginses"         "finally"          
##  [4492] "dashed"            "bilbo"             "frodo"            
##  [4495] "happened"          "birthday"          "september"        
##  [4498] "nd"                ""                  ""                 
##  [4501] "better"            "come"              "live"             
##  [4504] "frodo"             "lad"               ""                 
##  [4507] "said"              "bilbo"             "one"              
##  [4510] "day"               ""                  ""                 
##  [4513] "can"               "celebrate"         "birthday"         
##  [4516] "parties"           "comfortably"       "together"         
##  [4519] ""                  "time"              "frodo"            
##  [4522] "still"             "tweens"            "hobbits"          
##  [4525] "called"            "irresponsible"     "twenties"         
##  [4528] "childhood"         "coming"            "age"              
##  [4531] "thirty"            "three"             "twelve"           
##  [4534] "years"             "passed"            "year"             
##  [4537] "bagginses"         "given"             "lively"           
##  [4540] "combined"          "birthday"          "parties"          
##  [4543] "bag"               "end"               "now"              
##  [4546] "understood"        "something"         "quite"            
##  [4549] "exceptional"       "planned"           "autumn"           
##  [4552] "bilbo"             "going"             "eleventy"         
##  [4555] "one"               "rather"            "curious"          
##  [4558] "number"            "respectable"       "age"              
##  [4561] "hobbit"            "old"               "took"             
##  [4564] "reached"           "frodo"             "going"            
##  [4567] "thirty"            "three"             "important"        
##  [4570] "number"            "date"              ""                 
##  [4573] "coming"            "age"               ""                 
##  [4576] "tongues"           "began"             "wag"              
##  [4579] "hobbiton"          "bywater"           "rumour"           
##  [4582] "coming"            "event"             "travelled"        
##  [4585] "shire"             "history"           "character"        
##  [4588] "mr"                "bilbo"             "baggins"          
##  [4591] "became"            "chief"             "topic"            
##  [4594] "conversation"      "older"             "folk"             
##  [4597] "suddenly"          "found"             "reminiscences"    
##  [4600] "welcome"           "demand"            "one"              
##  [4603] "attentive"         "audience"          "old"              
##  [4606] "ham"               "gamgee"            "commonly"         
##  [4609] "known"             "gaffer"            "held"             
##  [4612] "forth"             "ivy"               "bush"             
##  [4615] "small"             "inn"               "bywater"          
##  [4618] "road"              "spoke"             "authority"        
##  [4621] "tended"            "garden"            "bag"              
##  [4624] "end"               "forty"             "years"            
##  [4627] "helped"            "old"               "holman"           
##  [4630] "job"               "now"               "growing"          
##  [4633] "old"               "stiff"             "joints"           
##  [4636] "job"               "mainly"            "carried"          
##  [4639] "youngest"          "son"               "sam"              
##  [4642] "gamgee"            "father"            "son"              
##  [4645] "friendly"          "terms"             "bilbo"            
##  [4648] "frodo"             "lived"             "hill"             
##  [4651] "number"            "bagshot"           "row"              
##  [4654] "just"              "bag"               "end"              
##  [4657] ""                  ""                  "nice"             
##  [4660] "well"              "spoken"            "gentlehobbit"     
##  [4663] "mr"                "bilbo"             ""                 
##  [4666] "ve"                "always"            "said"             
##  [4669] ""                  "gaffer"            "declared"         
##  [4672] "perfect"           "truth"             "bilbo"            
##  [4675] "polite"            "calling"           ""                 
##  [4678] "master"            "hamfast"           ""                 
##  [4681] "consulting"        "constantly"        "upon"             
##  [4684] "growing"           "vegetables"        "matter"           
##  [4687] ""                  "roots"             ""                 
##  [4690] "especially"        "potatoes"          "gaffer"           
##  [4693] "recognized"        "leading"           "authority"        
##  [4696] "neighbourhood"     "including"         ""                 
##  [4699] ""                  "frodo"             "lives"            
##  [4702] ""                  ""                  "asked"            
##  [4705] "old"               "noakes"            "bywater"          
##  [4708] ""                  "baggins"           "name"             
##  [4711] ""                  ""                  "half"             
##  [4714] "brandybuck"        "say"               "beats"            
##  [4717] "baggins"           "hobbiton"          "go"               
##  [4720] "looking"           "wife"              "away"             
##  [4723] "buckland"          "folks"             "queer"            
##  [4726] ""                  ""                  ""                 
##  [4729] "wonder"            ""                  "re"               
##  [4732] "queer"             ""                  "put"              
##  [4735] "daddy"             "twofoot"           "gaffer"           
##  [4738] ""                  "next"              "door"             
##  [4741] "neighbour"         ""                  ""                 
##  [4744] "live"              "wrong"             "side"             
##  [4747] "brandywine"        "river"             "right"            
##  [4750] "agin"              "old"               "forest"           
##  [4753] ""                  ""                  "dark"             
##  [4756] "bad"               "place"             "half"             
##  [4759] "tales"             "true"              ""                 
##  [4762] ""                  ""                  "re"               
##  [4765] "right"             "dad"               ""                 
##  [4768] "said"              "gaffer"            ""                 
##  [4771] ""                  "brandybucks"       "buck"             
##  [4774] "land"              "live"              "old"              
##  [4777] "forest"            ""                  "re"               
##  [4780] "queer"             "breed"             "seemingly"        
##  [4783] "fool"              "boats"             "big"              
##  [4786] "river"             "isn"               ""                 
##  [4789] "natural"           "small"             "wonder"           
##  [4792] "trouble"           "came"              "say"              
##  [4795] "may"               "mr"                "frodo"            
##  [4798] "nice"              "young"             "hobbit"           
##  [4801] "wish"              "meet"              "much"             
##  [4804] "like"              "mr"                "bilbo"            
##  [4807] "looks"             "father"            "baggins"          
##  [4810] "decent"            "respectable"       "hobbit"           
##  [4813] "mr"                "drogo"             "baggins"          
##  [4816] "never"             "much"              "tell"             
##  [4819] "till"              "drownded"          ""                 
##  [4822] ""                  "drownded"          ""                 
##  [4825] "said"              "several"           "voices"           
##  [4828] "heard"             "darker"            "rumours"          
##  [4831] "course"            "hobbits"           "passion"          
##  [4834] "family"            "history"           "ready"            
##  [4837] "hear"              ""                  "well"             
##  [4840] "say"               ""                  "said"             
##  [4843] "gaffer"            ""                  ""                 
##  [4846] "see"               "mr"                "drogo"            
##  [4849] "married"           "poor"              "miss"             
##  [4852] "primula"           "brandybuck"        "mr"               
##  [4855] "bilbo"             ""                  "first"            
##  [4858] "cousin"            "mother"            ""                 
##  [4861] "side"              "mother"            "youngest"         
##  [4864] "old"               "took"              ""                 
##  [4867] "daughters"         "mr"                "drogo"            
##  [4870] "second"            "cousin"            "mr"               
##  [4873] "frodo"             "first"             "second"           
##  [4876] "cousin"            "removed"           "either"           
##  [4879] "way"               "saying"            "follow"           
##  [4882] "mr"                "drogo"             "staying"          
##  [4885] "brandy"            "hall"              "father"           
##  [4888] "law"               "old"               "master"           
##  [4891] "gorbadoc"          "often"             "marriage"         
##  [4894] "partial"           "vittles"           "old"              
##  [4897] "gorbadoc"          "keeping"           "mighty"           
##  [4900] "generous"          "table"             "went"             
##  [4903] "boating"           "brandywine"        "river"            
##  [4906] "wife"              "drownded"          "poor"             
##  [4909] "mr"                "frodo"             "child"            
##  [4912] ""                  ""                  ""                 
##  [4915] ""                  "ve"                "heard"            
##  [4918] "went"              "water"             "dinner"           
##  [4921] "moonlight"         ""                  "said"             
##  [4924] "old"               "noakes"            ""                 
##  [4927] ""                  "drogo"             ""                 
##  [4930] "weight"            "sunk"              "boat"             
##  [4933] ""                  ""                  ""                 
##  [4936] "heard"             "pushed"            "pulled"           
##  [4939] ""                  ""                  "said"             
##  [4942] "sandyman"          "hobbiton"          "miller"           
##  [4945] ""                  ""                  "shouldn"          
##  [4948] ""                  "listen"            "hear"             
##  [4951] "sandyman"          ""                  "said"             
##  [4954] "gaffer"            "much"              "like"             
##  [4957] "miller"            ""                  ""                 
##  [4960] "isn"               ""                  "call"             
##  [4963] "go"                "talking"           "pushing"          
##  [4966] "pulling"           "boats"             "quite"            
##  [4969] "tricky"            "enough"            "sit"              
##  [4972] "still"             "without"           "looking"          
##  [4975] "cause"             "trouble"           "anyway"           
##  [4978] "mr"                "frodo"             "left"             
##  [4981] "orphan"            "stranded"          "might"            
##  [4984] "say"               "among"             "queer"            
##  [4987] "bucklanders"       "brought"           "anyhow"           
##  [4990] "brandy"            "hall"              "regular"          
##  [4993] "warren"            "accounts"          "old"              
##  [4996] "master"            "gorbadoc"          "never"            
##  [4999] "fewer"             "couple"            "hundred"          
##  [5002] "relations"         "place"             "mr"               
##  [5005] "bilbo"             "never"             "kinder"           
##  [5008] "deed"              "brought"           "lad"              
##  [5011] "back"              "live"              "among"            
##  [5014] "decent"            "folk"              ""                 
##  [5017] ""                  "reckon"            "nasty"            
##  [5020] "shock"             "sackville"         "bagginses"        
##  [5023] "thought"           "going"             "get"              
##  [5026] "bag"               "end"               "time"             
##  [5029] "went"              "thought"           "dead"             
##  [5032] "comes"             "back"              "orders"           
##  [5035] "goes"              "living"            "living"           
##  [5038] "never"             "looking"           "day"              
##  [5041] "older"             "bless"             "suddenly"         
##  [5044] "produces"          "heir"              "papers"           
##  [5047] "made"              "proper"            "sackville"        
##  [5050] "bagginses"         "won"               ""                 
##  [5053] "never"             "see"               "inside"           
##  [5056] "bag"               "end"               "now"              
##  [5059] "hoped"             ""                  ""                 
##  [5062] ""                  ""                  ""                 
##  [5065] "tidy"              "bit"               "money"            
##  [5068] "tucked"            "away"              "hear"             
##  [5071] "tell"              ""                  "said"             
##  [5074] "stranger"          "visitor"           "business"         
##  [5077] "michel"            "delving"           "westfarthing"     
##  [5080] ""                  ""                  "top"              
##  [5083] "hill"              "full"              "tunnels"          
##  [5086] "packed"            "chests"            "gold"             
##  [5089] "silver"            "jools"             ""                 
##  [5092] "ve"                "heard"             ""                 
##  [5095] ""                  ""                  ""                 
##  [5098] ""                  "ve"                "heard"            
##  [5101] "can"               "speak"             ""                 
##  [5104] ""                  "answered"          "gaffer"           
##  [5107] "know"              "nothing"           "jools"            
##  [5110] "mr"                "bilbo"             "free"             
##  [5113] "money"             "seems"             "lack"             
##  [5116] "know"              "tunnel"            "making"           
##  [5119] "saw"               "mr"                "bilbo"            
##  [5122] "came"              "back"              "matter"           
##  [5125] "sixty"             "years"             "ago"              
##  [5128] "lad"               ""                  ""                 
##  [5131] "long"              "come"              "prentice"         
##  [5134] "old"               "holman"            "dad"              
##  [5137] ""                  "cousin"            "bag"              
##  [5140] "end"               "helping"           "keep"             
##  [5143] "folks"             "trampling"         "trapessing"       
##  [5146] "garden"            "sale"              "middle"           
##  [5149] "mr"                "bilbo"             "comes"            
##  [5152] "hill"              "pony"              "mighty"           
##  [5155] "big"               "bags"              "couple"           
##  [5158] "chests"            "don"               ""                 
##  [5161] "doubt"             "mostly"            "full"             
##  [5164] "treasure"          "picked"            "foreign"          
##  [5167] "parts"             "mountains"         "gold"             
##  [5170] "say"               "wasn"              ""                 
##  [5173] "enough"            "fill"              "tunnels"          
##  [5176] "lad"               "sam"               "will"             
##  [5179] "know"              ""                  ""                 
##  [5182] "bag"               "end"               "crazy"            
##  [5185] "stories"           "old"               "days"             
##  [5188] "listens"           "mr"                "bilbo"            
##  [5191] ""                  "tales"             "mr"               
##  [5194] "bilbo"             "learned"           "letters"          
##  [5197] "meaning"           "harm"              "mark"             
##  [5200] "hope"              "harm"              "will"             
##  [5203] "come"              ""                  "elves"            
##  [5206] "dragons"           ""                  "says"             
##  [5209] ""                  "cabbages"          "potatoes"         
##  [5212] "better"            "don"               ""                 
##  [5215] "go"                "getting"           "mixed"            
##  [5218] "business"          "betters"           ""                 
##  [5221] "ll"                "land"              "trouble"          
##  [5224] "big"               ""                  ""                 
##  [5227] "says"              "might"             "say"              
##  [5230] "others"            ""                  "added"            
##  [5233] "look"              "stranger"          "miller"           
##  [5236] "gaffer"            "convince"          "audience"         
##  [5239] "legend"            "bilbo"             ""                 
##  [5242] "wealth"            "now"               "firmly"           
##  [5245] "fixed"             "minds"             "younger"          
##  [5248] "generation"        "hobbits"           ""                 
##  [5251] "ah"                "likely"            "enough"           
##  [5254] "adding"            "brought"           "first"            
##  [5257] ""                  "argued"            "miller"           
##  [5260] "voicing"           "common"            "opinion"          
##  [5263] ""                  ""                  ""                 
##  [5266] "often"             "away"              "home"             
##  [5269] "look"              "outlandish"        "folk"             
##  [5272] "visit"             "dwarves"           "coming"           
##  [5275] "night"             "old"               "wandering"        
##  [5278] "conjuror"          "gandalf"           "can"              
##  [5281] "say"               "like"              "gaffer"           
##  [5284] "bag"               "end"               ""                 
##  [5287] "queer"             "place"             "folk"             
##  [5290] "queerer"           ""                  ""                 
##  [5293] ""                  "can"               "say"              
##  [5296] "like"              "know"              "boating"          
##  [5299] "mr"                "sandyman"          ""                 
##  [5302] "retorted"          "gaffer"            "disliking"        
##  [5305] "miller"            "even"              "usual"            
##  [5308] ""                  ""                  "queer"            
##  [5311] "bit"               "queerness"         "parts"            
##  [5314] ""                  ""                  "far"              
##  [5317] "away"              "wouldn"            ""                 
##  [5320] "offer"             "pint"              "beer"             
##  [5323] "friend"            "lived"             "hole"             
##  [5326] "golden"            "walls"             "things"           
##  [5329] "proper"            "bag"               "end"              
##  [5332] "sam"               "says"              "everyone"         
##  [5335] ""                  "going"             "invited"          
##  [5338] "party"             ""                  ""                 
##  [5341] "going"             "presents"          "mark"             
##  [5344] "presents"          "month"             ""                 
##  [5347] ""                  "month"             "september"        
##  [5350] "fine"              "ask"               "day"              
##  [5353] "two"               "later"             "rumour"           
##  [5356] "probably"          "started"           "knowledgeable"    
##  [5359] "sam"               "spread"            "going"            
##  [5362] "fireworks"         "fireworks"         "seen"             
##  [5365] "shire"             "nigh"              "century"          
##  [5368] "indeed"            "since"             "old"              
##  [5371] "took"              "died"              "days"             
##  [5374] "passed"            "day"               "drew"             
##  [5377] "nearer"            "odd"               "looking"          
##  [5380] "waggon"            "laden"             "odd"              
##  [5383] "looking"           "packages"          "rolled"           
##  [5386] "hobbiton"          "one"               "evening"          
##  [5389] "toiled"            "hill"              "bag"              
##  [5392] "end"               "startled"          "hobbits"          
##  [5395] "peered"            "lamplit"           "doors"            
##  [5398] "gape"              "driven"            "outlandish"       
##  [5401] "folk"              "singing"           "strange"          
##  [5404] "songs"             "dwarves"           "long"             
##  [5407] "beards"            "deep"              "hoods"            
##  [5410] "remained"          "bag"               "end"              
##  [5413] "end"               "second"            "week"             
##  [5416] "september"         "cart"              "came"             
##  [5419] "bywater"           "direction"         "brandywine"       
##  [5422] "bridge"            "broad"             "daylight"         
##  [5425] "old"               "man"               "driving"          
##  [5428] "alone"             "wore"              "tall"             
##  [5431] "pointed"           "blue"              "hat"              
##  [5434] "long"              "grey"              "cloak"            
##  [5437] "silver"            "scarf"             "long"             
##  [5440] "white"             "beard"             "bushy"            
##  [5443] "eyebrows"          "stuck"             "beyond"           
##  [5446] "brim"              "hat"               "small"            
##  [5449] "hobbit"            "children"          "ran"              
##  [5452] "cart"              "hobbiton"          "right"            
##  [5455] "hill"              "cargo"             "fireworks"        
##  [5458] "rightly"           "guessed"           "bilbo"            
##  [5461] ""                  "front"             "door"             
##  [5464] "old"               "man"               "began"            
##  [5467] "unload"            "great"             "bundles"          
##  [5470] "fireworks"         "sorts"             "shapes"           
##  [5473] "labelled"          "large"             "red"              
##  [5476] "elf"               "rune"              "gandalf"          
##  [5479] ""                  "mark"              "course"           
##  [5482] "old"               "man"               "gandalf"          
##  [5485] "wizard"            "whose"             "fame"             
##  [5488] "shire"             "due"               "mainly"           
##  [5491] "skill"             "fires"             "smokes"           
##  [5494] "lights"            "real"              "business"         
##  [5497] "far"               "difficult"         "dangerous"        
##  [5500] "shire"             "folk"              "knew"             
##  [5503] "nothing"           "just"              "one"              
##  [5506] ""                  "attractions"       ""                 
##  [5509] "party"             "hence"             "excitement"       
##  [5512] "hobbit"            "children"          ""                 
##  [5515] ""                  "grand"             ""                 
##  [5518] "shouted"           "old"               "man"              
##  [5521] "smiled"            "knew"              "sight"            
##  [5524] "though"            "appeared"          "hobbiton"         
##  [5527] "occasionally"      "never"             "stopped"          
##  [5530] "long"              "neither"           "oldest"           
##  [5533] "elders"            "seen"              "one"              
##  [5536] "firework"          "displays"          "now"              
##  [5539] "belonged"          "legendary"         "past"             
##  [5542] "old"               "man"               "helped"           
##  [5545] "bilbo"             "dwarves"           "finished"         
##  [5548] "unloading"         "bilbo"             "gave"             
##  [5551] "pennies"           "away"              "single"           
##  [5554] "squib"             "cracker"           "forthcoming"      
##  [5557] "disappointment"    "onlookers"         ""                 
##  [5560] "run"               "away"              "now"              
##  [5563] ""                  "said"              "gandalf"          
##  [5566] ""                  ""                  "will"             
##  [5569] "get"               "plenty"            "time"             
##  [5572] "comes"             ""                  "disappeared"      
##  [5575] "inside"            "bilbo"             "door"             
##  [5578] "shut"              "young"             "hobbits"          
##  [5581] "stared"            "door"              "vain"             
##  [5584] "made"              "feeling"           "day"              
##  [5587] "party"             "never"             "come"             
##  [5590] "inside"            "bag"               "end"              
##  [5593] "bilbo"             "gandalf"           "sitting"          
##  [5596] "open"              "window"            "small"            
##  [5599] "room"              "looking"           "west"             
##  [5602] "garden"            "late"              "afternoon"        
##  [5605] "bright"            "peaceful"          "flowers"          
##  [5608] "glowed"            "red"               "golden"           
##  [5611] "snap"              "dragons"           "sun"              
##  [5614] "flowers"           "nasturtiums"       "trailing"         
##  [5617] "turf"              "walls"             "peeping"          
##  [5620] "round"             "windows"           ""                 
##  [5623] ""                  "bright"            "garden"           
##  [5626] "looks"             ""                  "said"             
##  [5629] "gandalf"           ""                  "yes"              
##  [5632] ""                  "said"              "bilbo"            
##  [5635] "fond"              "indeed"            "dear"             
##  [5638] "old"               "shire"             "think"            
##  [5641] "need"              "holiday"           ""                 
##  [5644] ""                  ""                  "mean"             
##  [5647] "go"                "plan"              ""                 
##  [5650] ""                  ""                  ""                 
##  [5653] "made"              "mind"              "months"           
##  [5656] "ago"               "haven"             ""                 
##  [5659] "changed"           ""                  ""                 
##  [5662] ""                  ""                  "well"             
##  [5665] "good"              "saying"            "stick"            
##  [5668] "plan"              "whole"             "plan"             
##  [5671] "mind"              "hope"              "will"             
##  [5674] "turn"              "best"              "us"               
##  [5677] ""                  ""                  ""                 
##  [5680] "hope"              "anyway"            "mean"             
##  [5683] "enjoy"             "thursday"          "little"           
##  [5686] "joke"              ""                  ""                 
##  [5689] ""                  "will"              "laugh"            
##  [5692] "wonder"            ""                  "said"             
##  [5695] "gandalf"           "shaking"           "head"             
##  [5698] ""                  ""                  "shall"            
##  [5701] "see"               ""                  "said"             
##  [5704] "bilbo"             "next"              "day"              
##  [5707] "carts"             "rolled"            "hill"             
##  [5710] "still"             "carts"             "might"            
##  [5713] "grumbling"         ""                  "dealing"          
##  [5716] "locally"           ""                  "week"             
##  [5719] "orders"            "began"             "pour"             
##  [5722] "bag"               "end"               "every"            
##  [5725] "kind"              "provision"         "commodity"        
##  [5728] "luxury"            "obtained"          "hobbiton"         
##  [5731] "bywater"           "anywhere"          "neighbourhood"    
##  [5734] "people"            "became"            "enthusiastic"     
##  [5737] "began"             "tick"              "days"             
##  [5740] "calendar"          "watched"           "eagerly"          
##  [5743] "postman"           "hoping"            "invitations"      
##  [5746] "long"              "invitations"       "began"            
##  [5749] "pouring"           "hobbiton"          "post"             
##  [5752] "office"            "blocked"           "bywater"          
##  [5755] "post"              "office"            "snowed"           
##  [5758] "voluntary"         "assistant"         "postmen"          
##  [5761] "called"            "constant"          "stream"           
##  [5764] "going"             "hill"              "carrying"         
##  [5767] "hundreds"          "polite"            "variations"       
##  [5770] "thank"             "shall"             "certainly"        
##  [5773] "come"              "notice"            "appeared"         
##  [5776] "gate"              "bag"               "end"              
##  [5779] "admittance"        "except"            "party"            
##  [5782] "business"          "even"              "pretended"        
##  [5785] "party"             "business"          "seldom"           
##  [5788] "allowed"           "inside"            "bilbo"            
##  [5791] "busy"              "writing"           "invitations"      
##  [5794] "ticking"           "answers"           "packing"          
##  [5797] "presents"          "making"            "private"          
##  [5800] "preparations"      "time"              "gandalf"          
##  [5803] ""                  "arrival"           "remained"         
##  [5806] "hidden"            "view"              "one"              
##  [5809] "morning"           "hobbits"           "woke"             
##  [5812] "find"              "large"             "field"            
##  [5815] "south"             "bilbo"             ""                 
##  [5818] "front"             "door"              "covered"          
##  [5821] "ropes"             "poles"             "tents"            
##  [5824] "pavilions"         "special"           "entrance"         
##  [5827] "cut"               "bank"              "leading"          
##  [5830] "road"              "wide"              "steps"            
##  [5833] "large"             "white"             "gate"             
##  [5836] "built"             "three"             "hobbit"           
##  [5839] "families"          "bagshot"           "row"              
##  [5842] "adjoining"         "field"             "intensely"        
##  [5845] "interested"        "generally"         "envied"           
##  [5848] "old"               "gaffer"            "gamgee"           
##  [5851] "stopped"           "even"              "pretending"       
##  [5854] "work"              "garden"            "tents"            
##  [5857] "began"             "go"                "specially"        
##  [5860] "large"             "pavilion"          "big"              
##  [5863] "tree"              "grew"              "field"            
##  [5866] "right"             "inside"            "stood"            
##  [5869] "proudly"           "near"              "one"              
##  [5872] "end"               "head"              "chief"            
##  [5875] "table"             "lanterns"          "hung"             
##  [5878] "branches"          "promising"         "still"            
##  [5881] "hobbits"           ""                  "mind"             
##  [5884] "enormous"          "open"              "air"              
##  [5887] "kitchen"           "erected"           "north"            
##  [5890] "corner"            "field"             "draught"          
##  [5893] "cooks"             "every"             "inn"              
##  [5896] "eating"            "house"             "miles"            
##  [5899] "around"            "arrived"           "supplement"       
##  [5902] "dwarves"           "odd"               "folk"             
##  [5905] "quartered"         "bag"               "end"              
##  [5908] "excitement"        "rose"              "height"           
##  [5911] "weather"           "clouded"           "wednesday"        
##  [5914] "eve"               "party"             "anxiety"          
##  [5917] "intense"           "thursday"          "september"        
##  [5920] "nd"                "actually"          "dawned"           
##  [5923] "sun"               "got"               "clouds"           
##  [5926] "vanished"          "flags"             "unfurled"         
##  [5929] "fun"               "began"             "bilbo"            
##  [5932] "baggins"           "called"            "party"            
##  [5935] "really"            "variety"           "entertainments"   
##  [5938] "rolled"            "one"               "practically"      
##  [5941] "everybody"         "living"            "near"             
##  [5944] "invited"           "overlooked"        "accident"         
##  [5947] "turned"            "matter"            "many"             
##  [5950] "people"            "parts"             "shire"            
##  [5953] "also"              "asked"             "even"             
##  [5956] "outside"           "borders"           "bilbo"            
##  [5959] "met"               "guests"            "additions"        
##  [5962] "new"               "white"             "gate"             
##  [5965] "person"            "gave"              "away"             
##  [5968] "presents"          "sundry"            "latter"           
##  [5971] "went"              "back"              "way"              
##  [5974] "came"              "gate"              "hobbits"          
##  [5977] "give"              "presents"          "people"           
##  [5980] "birthdays"         "expensive"         "ones"             
##  [5983] "rule"              "lavishly"          "occasion"         
##  [5986] "bad"               "system"            "actually"         
##  [5989] "hobbiton"          "bywater"           "every"            
##  [5992] "day"               "year"              "somebody"         
##  [5995] ""                  "birthday"          "every"            
##  [5998] "hobbit"            "parts"             "fair"             
##  [6001] "chance"            "least"             "one"              
##  [6004] "present"           "least"             "week"             
##  [6007] "never"             "got"               "tired"            
##  [6010] "occasion"          "presents"          "unusually"        
##  [6013] "good"              "hobbit"            "children"         
##  [6016] "excited"           "almost"            "forgot"           
##  [6019] "eating"            "toys"              "like"             
##  [6022] "never"             "seen"              "beautiful"        
##  [6025] "obviously"         "magical"           "many"             
##  [6028] "indeed"            "ordered"           "year"             
##  [6031] "come"              "way"               "mountain"         
##  [6034] "dale"              "real"              "dwarf"            
##  [6037] "make"              "every"             "guest"            
##  [6040] "welcomed"          "finally"           "inside"           
##  [6043] "gate"              "songs"             "dances"           
##  [6046] "music"             "games"             "course"           
##  [6049] "food"              "drink"             "three"            
##  [6052] "official"          "meals"             "lunch"            
##  [6055] "tea"               "dinner"            "supper"           
##  [6058] "lunch"             "tea"               "marked"           
##  [6061] "chiefly"           "fact"              "times"            
##  [6064] "guests"            "sitting"           "eating"           
##  [6067] "together"          "times"             "merely"           
##  [6070] "lots"              "people"            "eating"           
##  [6073] "drinking"          "continuously"      "elevenses"        
##  [6076] "six"               "thirty"            "fireworks"        
##  [6079] "started"           "fireworks"         "gandalf"          
##  [6082] "brought"           "designed"          "made"             
##  [6085] "special"           "effects"           "set"              
##  [6088] "pieces"            "flights"           "rockets"          
##  [6091] "let"               "also"              "generous"         
##  [6094] "distribution"      "squibs"            "crackers"         
##  [6097] "backarappers"      "sparklers"         "torches"          
##  [6100] "dwarf"             "candles"           "elf"              
##  [6103] "fountains"         "goblin"            "barkers"          
##  [6106] "thunder"           "claps"             "superb"           
##  [6109] "art"               "gandalf"           "improved"         
##  [6112] "age"               "rockets"           "like"             
##  [6115] "flight"            "scintillating"     "birds"            
##  [6118] "singing"           "sweet"             "voices"           
##  [6121] "green"             "trees"             "trunks"           
##  [6124] "dark"              "smoke"             "leaves"           
##  [6127] "opened"            "like"              "whole"            
##  [6130] "spring"            "unfolding"         "moment"           
##  [6133] "shining"           "branches"          "dropped"          
##  [6136] "glowing"           "flowers"           "upon"             
##  [6139] "astonished"        "hobbits"           "disappearing"     
##  [6142] "sweet"             "scent"             "just"             
##  [6145] "touched"           "upturned"          "faces"            
##  [6148] "fountains"         "butterflies"       "flew"             
##  [6151] "glittering"        "trees"             "pillars"          
##  [6154] "coloured"          "fires"             "rose"             
##  [6157] "turned"            "eagles"            "sailing"          
##  [6160] "ships"             "phalanx"           "flying"           
##  [6163] "swans"             "red"               "thunderstorm"     
##  [6166] "shower"            "yellow"            "rain"             
##  [6169] "forest"            "silver"            "spears"           
##  [6172] "sprang"            "suddenly"          "air"              
##  [6175] "yell"              "like"              "embattled"        
##  [6178] "army"              "came"              "water"            
##  [6181] "hiss"              "like"              "hundred"          
##  [6184] "hot"               "snakes"            "also"             
##  [6187] "one"               "last"              "surprise"         
##  [6190] "honour"            "bilbo"             "startled"         
##  [6193] "hobbits"           "exceedingly"       "gandalf"          
##  [6196] "intended"          "lights"            "went"             
##  [6199] "great"             "smoke"             "went"             
##  [6202] "shaped"            "like"              "mountain"         
##  [6205] "seen"              "distance"          "began"            
##  [6208] "glow"              "summit"            "spouted"          
##  [6211] "green"             "scarlet"           "flames"           
##  [6214] "flew"              "red"               "golden"           
##  [6217] "dragon"            "life"              "size"             
##  [6220] "terribly"          "life"              "like"             
##  [6223] "fire"              "came"              "jaws"             
##  [6226] "eyes"              "glared"            "roar"             
##  [6229] "whizzed"           "three"             "times"            
##  [6232] "heads"             "crowd"             "ducked"           
##  [6235] "many"              "fell"              "flat"             
##  [6238] "faces"             "dragon"            "passed"           
##  [6241] "like"              "express"           "train"            
##  [6244] "turned"            "somersault"        "burst"            
##  [6247] "bywater"           "deafening"         "explosion"        
##  [6250] ""                  ""                  "signal"           
##  [6253] "supper"            ""                  "said"             
##  [6256] "bilbo"             "pain"              "alarm"            
##  [6259] "vanished"          "prostrate"         "hobbits"          
##  [6262] "leaped"            "feet"              "splendid"         
##  [6265] "supper"            "everyone"          "everyone"         
##  [6268] "except"            "invited"           "special"          
##  [6271] "family"            "dinner"            "party"            
##  [6274] "held"              "great"             "pavilion"         
##  [6277] "tree"              "invitations"       "limited"          
##  [6280] "twelve"            "dozen"             "number"           
##  [6283] "also"              "called"            "hobbits"          
##  [6286] "one"               "gross"             "though"           
##  [6289] "word"              "considered"        "proper"           
##  [6292] "use"               "people"            "guests"           
##  [6295] "selected"          "families"          "bilbo"            
##  [6298] "frodo"             "related"           "addition"         
##  [6301] "special"           "unrelated"         "friends"          
##  [6304] "gandalf"           "many"              "young"            
##  [6307] "hobbits"           "included"          "present"          
##  [6310] "parental"          "permission"        "hobbits"          
##  [6313] "easy"              "going"             "children"         
##  [6316] "matter"            "sitting"           "late"             
##  [6319] "especially"        "chance"            "getting"          
##  [6322] "free"              "meal"              "bringing"         
##  [6325] "young"             "hobbits"           "took"             
##  [6328] "lot"               "provender"         "many"             
##  [6331] "bagginses"         "boffins"           "also"             
##  [6334] "many"              "tooks"             "brandybucks"      
##  [6337] "various"           "grubbs"            "relations"        
##  [6340] "bilbo"             "baggins"           ""                 
##  [6343] "grandmother"       "various"           "chubbs"           
##  [6346] "connexions"        "took"              "grandfather"      
##  [6349] "selection"         "burrowses"         "bolgers"          
##  [6352] "bracegirdles"      "brockhouses"       "goodbodies"       
##  [6355] "hornblowers"       "proudfoots"        "distantly"        
##  [6358] "connected"         "bilbo"             "hardly"           
##  [6361] "ever"              "hobbiton"          "lived"            
##  [6364] "remote"            "corners"           "shire"            
##  [6367] "sackville"         "bagginses"         "forgotten"        
##  [6370] "otho"              "wife"              "lobelia"          
##  [6373] "present"           "disliked"          "bilbo"            
##  [6376] "detested"          "frodo"             "magnificent"      
##  [6379] "invitation"        "card"              "written"          
##  [6382] "golden"            "ink"               "felt"             
##  [6385] "impossible"        "refuse"            "besides"          
##  [6388] "cousin"            "bilbo"             "specializing"     
##  [6391] "food"              "many"              "years"            
##  [6394] "table"             "high"              "reputation"       
##  [6397] "one"               "hundred"           "forty"            
##  [6400] "four"              "guests"            "expected"         
##  [6403] "pleasant"          "feast"             "though"           
##  [6406] "rather"            "dreaded"           "dinner"           
##  [6409] "speech"            "host"              "inevitable"       
##  [6412] "item"              "liable"            "drag"             
##  [6415] "bits"              "called"            "poetry"           
##  [6418] "sometimes"         "glass"             "two"              
##  [6421] "allude"            "absurd"            "adventures"       
##  [6424] "mysterious"        "journey"           "guests"           
##  [6427] "disappointed"      "pleasant"          "feast"            
##  [6430] "fact"              "engrossing"        "entertainment"    
##  [6433] "rich"              "abundant"          "varied"           
##  [6436] "prolonged"         "purchase"          "provisions"       
##  [6439] "fell"              "almost"            "nothing"          
##  [6442] "throughout"        "district"          "ensuing"          
##  [6445] "weeks"             "bilbo"             ""                 
##  [6448] "catering"          "depleted"          "stocks"           
##  [6451] "stores"            "cellars"           "warehouses"       
##  [6454] "miles"             "around"            "matter"           
##  [6457] "much"              "feast"             "less"             
##  [6460] "came"              "speech"            "company"          
##  [6463] "however"           "now"               "tolerant"         
##  [6466] "mood"              "delightful"        "stage"            
##  [6469] "called"            ""                  "filling"          
##  [6472] "corners"           ""                  "sipping"          
##  [6475] "favourite"         "drinks"            "nibbling"         
##  [6478] "favourite"         "dainties"          "fears"            
##  [6481] "forgotten"         "prepared"          "listen"           
##  [6484] "anything"          "cheer"             "every"            
##  [6487] "full"              "stop"              "dear"             
##  [6490] "people"            "began"             "bilbo"            
##  [6493] "rising"            "place"             ""                 
##  [6496] "hear"              "hear"              "hear"             
##  [6499] ""                  "shouted"           "kept"             
##  [6502] "repeating"         "chorus"            "seeming"          
##  [6505] "reluctant"         "follow"            "advice"           
##  [6508] "bilbo"             "left"              "place"            
##  [6511] "went"              "stood"             "chair"            
##  [6514] "illuminated"       "tree"              "light"            
##  [6517] "lanterns"          "fell"              "beaming"          
##  [6520] "face"              "golden"            "buttons"          
##  [6523] "shone"             "embroidered"       "silk"             
##  [6526] "waistcoat"         "see"               "standing"         
##  [6529] "waving"            "one"               "hand"             
##  [6532] "air"               "trouser"           "pocket"           
##  [6535] "dear"              "bagginses"         "boffins"          
##  [6538] "began"             "dear"              "tooks"            
##  [6541] "brandybucks"       "grubbs"            "chubbs"           
##  [6544] "burrowses"         "hornblowers"       "bolgers"          
##  [6547] "bracegirdles"      "goodbodies"        "brockhouses"      
##  [6550] "proudfoots"        ""                  "proudfeet"        
##  [6553] ""                  "shouted"           "elderly"          
##  [6556] "hobbit"            "back"              "pavilion"         
##  [6559] "name"              "course"            "proudfoot"        
##  [6562] "well"              "merited"           "feet"             
##  [6565] "large"             "exceptionally"     "furry"            
##  [6568] "table"             "proudfoots"        "repeated"         
##  [6571] "bilbo"             "also"              "good"             
##  [6574] "sackville"         "bagginses"         "welcome"          
##  [6577] "back"              "last"              "bag"              
##  [6580] "end"               "today"             "one"              
##  [6583] "hundred"           "eleventh"          "birthday"         
##  [6586] "eleventy"          "one"               "today"            
##  [6589] ""                  "hurray"            "hurray"           
##  [6592] "many"              "happy"             "returns"          
##  [6595] ""                  "shouted"           "hammered"         
##  [6598] "joyously"          "tables"            "bilbo"            
##  [6601] "splendidly"        "sort"              "stuff"            
##  [6604] "liked"             "short"             "obvious"          
##  [6607] "hope"              "enjoying"          "much"             
##  [6610] "deafening"         "cheers"            "cries"            
##  [6613] "yes"               "noises"            "trumpets"         
##  [6616] "horns"             "pipes"             "flutes"           
##  [6619] "musical"           "instruments"       "said"             
##  [6622] "many"              "young"             "hobbits"          
##  [6625] "present"           "hundreds"          "musical"          
##  [6628] "crackers"          "pulled"            "bore"             
##  [6631] "mark"              "dale"              "convey"           
##  [6634] "much"              "hobbits"           "agreed"           
##  [6637] "marvellous"        "crackers"          "contained"        
##  [6640] "instruments"       "small"             "perfect"          
##  [6643] "make"              "enchanting"        "tones"            
##  [6646] "indeed"            "one"               "corner"           
##  [6649] "young"             "tooks"             "brandybucks"      
##  [6652] "supposing"         "uncle"             "bilbo"            
##  [6655] "finished"          "since"             "plainly"          
##  [6658] "said"              "necessary"         "now"              
##  [6661] "got"               "impromptu"         "orchestra"        
##  [6664] "began"             "merry"             "dance"            
##  [6667] "tune"              "master"            "everard"          
##  [6670] "took"              "miss"              "melilot"          
##  [6673] "brandybuck"        "got"               "table"            
##  [6676] "bells"             "hands"             "began"            
##  [6679] "dance"             "springle"          "ring"             
##  [6682] "pretty"            "dance"             "rather"           
##  [6685] "vigorous"          "bilbo"             "finished"         
##  [6688] "seizing"           "horn"              "youngster"        
##  [6691] "near"              "blew"              "three"            
##  [6694] "loud"              "hoots"             "noise"            
##  [6697] "subsided"          "shall"             "keep"             
##  [6700] "long"              "cried"             "cheers"           
##  [6703] "assembly"          "called"            "together"         
##  [6706] "purpose"           "something"         "way"              
##  [6709] "said"              "made"              "impression"       
##  [6712] "almost"            "silence"           "one"              
##  [6715] "two"               "tooks"             "pricked"          
##  [6718] "ears"              "indeed"            "three"            
##  [6721] "purposes"          "first"             "tell"             
##  [6724] "immensely"         "fond"              "eleventy"         
##  [6727] "one"               "years"             "short"            
##  [6730] "time"              "live"              "among"            
##  [6733] "excellent"         "admirable"         "hobbitstremendous"
##  [6736] "outburst"          "approval"          "don"              
##  [6739] ""                  "know"              "half"             
##  [6742] "half"              "well"              "like"             
##  [6745] "like"              "less"              "half"             
##  [6748] "half"              "well"              "deserve"          
##  [6751] "unexpected"        "rather"            "difficult"        
##  [6754] "scattered"         "clapping"          "trying"           
##  [6757] "work"              "see"               "came"             
##  [6760] "compliment"        "secondly"          "celebrate"        
##  [6763] "birthday"          "cheers"            "say"              
##  [6766] "birthday"          "course"            "also"             
##  [6769] "birthday"          "heir"              "nephew"           
##  [6772] "frodo"             "comes"             "age"              
##  [6775] "inheritance"       "todaysome"         "perfunctory"      
##  [6778] "clapping"          "elders"            "loud"             
##  [6781] "shouts"            ""                  "frodo"            
##  [6784] "frodo"             "jolly"             "old"              
##  [6787] "frodo"             ""                  "juniors"          
##  [6790] "sackville"         "bagginses"         "scowled"          
##  [6793] "wondered"          "meant"             ""                 
##  [6796] "coming"            "inheritance"       ""                 
##  [6799] "together"          "score"             "one"              
##  [6802] "hundred"           "forty"             "four"             
##  [6805] "numbers"           "chosen"            "fit"              
##  [6808] "remarkable"        "total"             "one"              
##  [6811] "gross"             "may"               "use"              
##  [6814] "expression"        "cheers"            "ridiculous"       
##  [6817] "many"              "guests"            "especially"       
##  [6820] "sackville"         "bagginses"         "insulted"         
##  [6823] "feeling"           "sure"              "asked"            
##  [6826] "fill"              "required"          "number"           
##  [6829] "like"              "goods"             "package"          
##  [6832] ""                  "one"               "gross"            
##  [6835] "indeed"            "vulgar"            "expression"       
##  [6838] ""                  "also"              "may"              
##  [6841] "allowed"           "refer"             "ancient"          
##  [6844] "history"           "anniversary"       "arrival"          
##  [6847] "barrel"            "esgaroth"          "long"             
##  [6850] "lake"              "though"            "fact"             
##  [6853] "birthday"          "slipped"           "memory"           
##  [6856] "occasion"          "fifty"             "one"              
##  [6859] "birthdays"         "seem"              "important"        
##  [6862] "banquet"           "splendid"          "however"          
##  [6865] "though"            "bad"               "cold"             
##  [6868] "time"              "remember"          "say"              
##  [6871] ""                  "thag"              "buch"             
##  [6874] ""                  "now"               "repeat"           
##  [6877] "correctly"         "thank"             "much"             
##  [6880] "coming"            "little"            "party"            
##  [6883] "obstinate"         "silence"           "feared"           
##  [6886] "song"              "poetry"            "now"              
##  [6889] "imminent"          "getting"           "bored"            
##  [6892] "couldn"            ""                  "stop"             
##  [6895] "talking"           "let"               "drink"            
##  [6898] "health"            "bilbo"             "sing"             
##  [6901] "recite"            "paused"            "moment"           
##  [6904] "thirdly"           "finally"           "said"             
##  [6907] "wish"              "make"              "announcement"     
##  [6910] "spoke"             "last"              "word"             
##  [6913] "loudly"            "suddenly"          "everyone"         
##  [6916] "sat"               "still"             "regret"           
##  [6919] "announce"          "though"            "said"             
##  [6922] "eleventy"          "one"               "years"            
##  [6925] "far"               "short"             "time"             
##  [6928] "spend"             "among"             "end"              
##  [6931] "going"             "leaving"           "now"              
##  [6934] "good"              "bye"               "stepped"          
##  [6937] "vanished"          "blinding"          "flash"            
##  [6940] "light"             "guests"            "blinked"          
##  [6943] "opened"            "eyes"              "bilbo"            
##  [6946] "nowhere"           "seen"              "one"              
##  [6949] "hundred"           "forty"             "four"             
##  [6952] "flabbergasted"     "hobbits"           "sat"              
##  [6955] "back"              "speechless"        "old"              
##  [6958] "odo"               "proudfoot"         "removed"          
##  [6961] "feet"              "table"             "stamped"          
##  [6964] "dead"              "silence"           "suddenly"         
##  [6967] "several"           "deep"              "breaths"          
##  [6970] "every"             "baggins"           "boffin"           
##  [6973] "took"              "brandybuck"        "grubb"            
##  [6976] "chubb"             "burrows"           "bolger"           
##  [6979] "bracegirdle"       "brockhouse"        "goodbody"         
##  [6982] "hornblower"        "proudfoot"         "began"            
##  [6985] "talk"              "generally"         "agreed"           
##  [6988] "joke"              "bad"               "taste"            
##  [6991] "food"              "drink"             "needed"           
##  [6994] "cure"              "guests"            "shock"            
##  [6997] "annoyance"         ""                  ""                 
##  [7000] ""                  "mad"               "always"           
##  [7003] "said"              ""                  ""                 
##  [7006] "probably"          "popular"           "comment"          
##  [7009] "even"              "tooks"             "exceptions"       
##  [7012] "thought"           "bilbo"             ""                 
##  [7015] "behaviour"         "absurd"            "moment"           
##  [7018] "took"              "granted"           "disappearance"    
##  [7021] "nothing"           "ridiculous"        "prank"            
##  [7024] "old"               "rory"              "brandybuck"       
##  [7027] "sure"              "neither"           "age"              
##  [7030] "enormous"          "dinner"            "clouded"          
##  [7033] "wits"              "said"              "daughter"         
##  [7036] "law"               "esmeralda"         ""                 
##  [7039] ""                  ""                  "something"        
##  [7042] "fishy"             "dear"              "believe"          
##  [7045] "mad"               "baggins"           "silly"            
##  [7048] "old"               "fool"              "worry"            
##  [7051] "hasn"              ""                  "taken"            
##  [7054] "vittles"           ""                  ""                 
##  [7057] "called"            "loudly"            "frodo"            
##  [7060] "send"              "wine"              "round"            
##  [7063] "frodo"             "one"               "present"          
##  [7066] "said"              "nothing"           "time"             
##  [7069] "sat"               "silent"            "beside"           
##  [7072] "bilbo"             ""                  "empty"            
##  [7075] "chair"             "ignored"           "remarks"          
##  [7078] "questions"         "enjoyed"           "joke"             
##  [7081] "course"            "even"              "though"           
##  [7084] "know"              "difficulty"        "keeping"          
##  [7087] "laughter"          "indignant"         "surprise"         
##  [7090] "guests"            "time"              "felt"             
##  [7093] "deeply"            "troubled"          "realized"         
##  [7096] "suddenly"          "loved"             "old"              
##  [7099] "hobbit"            "dearly"            "guests"           
##  [7102] "went"              "eating"            "drinking"         
##  [7105] "discussing"        "bilbo"             "baggins"          
##  [7108] ""                  "oddities"          "past"             
##  [7111] "present"           "sackville"         "bagginses"        
##  [7114] "already"           "departed"          "wrath"            
##  [7117] "frodo"             "want"              "party"            
##  [7120] "gave"              "orders"            "wine"             
##  [7123] "served"            "got"               "drained"          
##  [7126] "glass"             "silently"          "health"           
##  [7129] "bilbo"             "slipped"           "pavilion"         
##  [7132] "bilbo"             "baggins"           "even"             
##  [7135] "making"            "speech"            "fingering"        
##  [7138] "golden"            "ring"              "pocket"           
##  [7141] "magic"             "ring"              "kept"             
##  [7144] "secret"            "many"              "years"            
##  [7147] "stepped"           "slipped"           "finger"           
##  [7150] "never"             "seen"              "hobbit"           
##  [7153] "hobbiton"          "walked"            "briskly"          
##  [7156] "back"              "hole"              "stood"            
##  [7159] "moment"            "listening"         "smile"            
##  [7162] "din"               "pavilion"          "sounds"           
##  [7165] "merrymaking"       "parts"             "field"            
##  [7168] "went"              "took"              "party"            
##  [7171] "clothes"           "folded"            "wrapped"          
##  [7174] "tissue"            "paper"             "embroidered"      
##  [7177] "silk"              "waistcoat"         "put"              
##  [7180] "away"              "put"               "quickly"          
##  [7183] "old"               "untidy"            "garments"         
##  [7186] "fastened"          "round"             "waist"            
##  [7189] "worn"              "leather"           "belt"             
##  [7192] "hung"              "short"             "sword"            
##  [7195] "battered"          "black"             "leather"          
##  [7198] "scabbard"          "locked"            "drawer"           
##  [7201] "smelling"          "moth"              "balls"            
##  [7204] "took"              "old"               "cloak"            
##  [7207] "hood"              "locked"            "precious"         
##  [7210] "patched"           "weatherstained"    "original"         
##  [7213] "colour"            "hardly"            "guessed"          
##  [7216] "might"             "dark"              "green"            
##  [7219] "rather"            "large"             "went"             
##  [7222] "study"             "large"             "strong"           
##  [7225] "box"               "took"              "bundle"           
##  [7228] "wrapped"           "old"               "cloths"           
##  [7231] "leather"           "bound"             "manuscript"       
##  [7234] "also"              "large"             "bulky"            
##  [7237] "envelope"          "book"              "bundle"           
##  [7240] "stuffed"           "top"               "heavy"            
##  [7243] "bag"               "standing"          "already"          
##  [7246] "nearly"            "full"              "envelope"         
##  [7249] "slipped"           "golden"            "ring"             
##  [7252] "fine"              "chain"             "sealed"           
##  [7255] "addressed"         "frodo"             "first"            
##  [7258] "put"               "mantelpiece"       "suddenly"         
##  [7261] "removed"           "stuck"             "pocket"           
##  [7264] "moment"            "door"              "opened"           
##  [7267] "gandalf"           "came"              "quickly"          
##  [7270] ""                  "hullo"             ""                 
##  [7273] "said"              "bilbo"             "wondered"         
##  [7276] "turn"              ""                  ""                 
##  [7279] "glad"              "find"              "visible"          
##  [7282] ""                  "replied"           "wizard"           
##  [7285] "sitting"           "chair"             "wanted"           
##  [7288] "catch"             "final"             "words"            
##  [7291] "suppose"           "feel"              "everything"       
##  [7294] "gone"              "splendidly"        "according"        
##  [7297] "plan"              ""                  ""                 
##  [7300] "yes"               ""                  ""                 
##  [7303] "said"              "bilbo"             "though"           
##  [7306] "flash"             "surprising"        "quite"            
##  [7309] "startled"          "let"               "alone"            
##  [7312] "others"            "little"            "addition"         
##  [7315] "suppose"           ""                  "wisely"           
##  [7318] "kept"              "ring"              "secret"           
##  [7321] "years"             "seemed"            "necessary"        
##  [7324] "give"              "guests"            "something"        
##  [7327] "else"              "seem"              "explain"          
##  [7330] "sudden"            "vanishment"        ""                 
##  [7333] ""                  ""                  "spoil"            
##  [7336] "joke"              "interfering"       "old"              
##  [7339] "busybody"          ""                  "laughed"          
##  [7342] "bilbo"             ""                  ""                 
##  [7345] "expect"            "know"              "best"             
##  [7348] "usual"             ""                  ""                 
##  [7351] ""                  "know"              "anything"         
##  [7354] "don"               ""                  "feel"             
##  [7357] "sure"              "whole"             "affair"           
##  [7360] "now"               "come"              "final"            
##  [7363] "point"             "joke"              "alarmed"          
##  [7366] "offended"          "relations"         "given"            
##  [7369] "whole"             "shire"             "something"        
##  [7372] "talk"              "nine"              "days"             
##  [7375] "ninety"            "nine"              "likely"           
##  [7378] "going"             ""                  ""                 
##  [7381] ""                  "yes"               "feel"             
##  [7384] "need"              "holiday"           "long"             
##  [7387] "holiday"           "told"              "probably"         
##  [7390] "permanent"         "holiday"           "don"              
##  [7393] ""                  "expect"            "shall"            
##  [7396] "return"            "fact"              "don"              
##  [7399] ""                  "mean"              "made"             
##  [7402] "arrangements"      "old"               "gandalf"          
##  [7405] "don"               ""                  "look"             
##  [7408] "beginning"         "feel"              "heart"            
##  [7411] "hearts"            "well"              "preserved"        
##  [7414] "indeed"            ""                  "snorted"          
##  [7417] ""                  ""                  "feel"             
##  [7420] "thin"              "sort"              "stretched"        
##  [7423] "know"              "mean"              "like"             
##  [7426] "butter"            "scraped"           "much"             
##  [7429] "bread"             "can"               ""                 
##  [7432] "right"             "need"              "change"           
##  [7435] "something"         ""                  "gandalf"          
##  [7438] "looked"            "curiously"         "closely"          
##  [7441] ""                  ""                  "seem"             
##  [7444] "right"             ""                  "said"             
##  [7447] "thoughtfully"      ""                  ""                 
##  [7450] "believe"           "plan"              "probably"         
##  [7453] "best"              ""                  ""                 
##  [7456] "well"              ""                  "ve"               
##  [7459] "made"              "mind"              "anyway"           
##  [7462] "want"              "see"               "mountains"        
##  [7465] "gandalf"           "mountains"         "find"             
##  [7468] "somewhere"         "can"               "rest"             
##  [7471] "peace"             "quiet"             "without"          
##  [7474] "lot"               "relatives"         "prying"           
##  [7477] "around"            "string"            "confounded"       
##  [7480] "visitors"          "hanging"           "bell"             
##  [7483] "might"             "find"              "somewhere"        
##  [7486] "can"               "finish"            "book"             
##  [7489] "thought"           "nice"              "ending"           
##  [7492] "lived"             "happily"           "ever"             
##  [7495] "end"               "days"              ""                 
##  [7498] ""                  "gandalf"           "laughed"          
##  [7501] "hope"              "will"              "nobody"           
##  [7504] "will"              "read"              "book"             
##  [7507] "however"           "ends"              ""                 
##  [7510] ""                  "oh"                "may"              
##  [7513] "years"             "come"              "frodo"            
##  [7516] "read"              "already"           "far"              
##  [7519] "gone"              ""                  "ll"               
##  [7522] "keep"              "eye"               "frodo"            
##  [7525] "won"               ""                  ""                 
##  [7528] ""                  ""                  "yes"              
##  [7531] "will"              "two"               "eyes"             
##  [7534] "often"             "can"               "spare"            
##  [7537] ""                  ""                  ""                 
##  [7540] ""                  "come"              "course"           
##  [7543] "asked"             "fact"              "offered"          
##  [7546] "just"              "party"             "really"           
##  [7549] "want"              "yet"               "want"             
##  [7552] "see"               "wild"              "country"          
##  [7555] "die"               "mountains"         "still"            
##  [7558] "love"              "shire"             "woods"            
##  [7561] "fields"            "little"            "rivers"           
##  [7564] "comfortable"       "leaving"           "everything"       
##  [7567] "course"            "except"            "oddments"         
##  [7570] "hope"              "will"              "happy"            
##  [7573] "gets"              "used"              ""                 
##  [7576] ""                  "time"              "master"           
##  [7579] "now"               ""                  ""                 
##  [7582] "everything"        ""                  "said"             
##  [7585] "gandalf"           ""                  ""                 
##  [7588] "ring"              "well"              "agreed"           
##  [7591] "remember"          ""                  ""                 
##  [7594] "well"              "er"                "yes"              
##  [7597] "suppose"           ""                  ""                 
##  [7600] "stammered"         "bilbo"             ""                 
##  [7603] ""                  ""                  ""                 
##  [7606] ""                  ""                  "envelope"         
##  [7609] "must"              "know"              ""                 
##  [7612] "said"              "bilbo"             "impatiently"      
##  [7615] ""                  ""                  "mantelpiece"      
##  [7618] "well"              "pocket"            ""                 
##  [7621] "hesitated"         ""                  "isn"              
##  [7624] ""                  "odd"               "now"              
##  [7627] ""                  "said"              "softly"           
##  [7630] ""                  "yet"               "shouldn"          
##  [7633] ""                  "stay"              ""                 
##  [7636] ""                  "gandalf"           "looked"           
##  [7639] "hard"              "bilbo"             "gleam"            
##  [7642] "eyes"              ""                  ""                 
##  [7645] "think"             "bilbo"             ""                 
##  [7648] "said"              "quietly"           ""                 
##  [7651] ""                  "leave"             "behind"           
##  [7654] "don"               ""                  "want"             
##  [7657] ""                  ""                  ""                 
##  [7660] "well"              "yes"               "now"              
##  [7663] "comes"             "don"               ""                 
##  [7666] "like"              "parting"           "may"              
##  [7669] "say"               "don"               ""                 
##  [7672] "really"            "see"               "want"             
##  [7675] ""                  ""                  "asked"            
##  [7678] "curious"           "change"            "came"             
##  [7681] "voice"             "sharp"             "suspicion"        
##  [7684] "annoyance"         ""                  ""                 
##  [7687] "always"            "badgering"         "ring"             
##  [7690] "never"             "bothered"          "things"           
##  [7693] "got"               "journey"           ""                 
##  [7696] ""                  ""                  "badger"           
##  [7699] ""                  ""                  "said"             
##  [7702] "gandalf"           ""                  ""                 
##  [7705] "wanted"            "truth"             "important"        
##  [7708] "magic"             "rings"             "well"             
##  [7711] "magical"           "rare"              "curious"          
##  [7714] "professionally"    "interested"        "ring"             
##  [7717] "may"               "say"               "still"            
##  [7720] "like"              "know"              "go"               
##  [7723] "wandering"         "also"              "think"            
##  [7726] "quite"             "long"              "enough"           
##  [7729] "won"               ""                  "need"             
##  [7732] "bilbo"             "unless"            "quite"            
##  [7735] "mistaken"          ""                  "bilbo"            
##  [7738] "flushed"           "angry"             "light"            
##  [7741] "eyes"              "kindly"            "face"             
##  [7744] "grew"              "hard"              ""                 
##  [7747] ""                  ""                  ""                 
##  [7750] "cried"             ""                  ""                 
##  [7753] "business"          "anyway"            "know"             
##  [7756] "things"            "found"             "came"             
##  [7759] ""                  ""                  ""                 
##  [7762] "yes"               "yes"               ""                 
##  [7765] "said"              "gandalf"           ""                 
##  [7768] ""                  "need"              "get"              
##  [7771] "angry"             ""                  ""                 
##  [7774] ""                  "fault"             ""                 
##  [7777] "said"              "bilbo"             ""                 
##  [7780] ""                  "mine"              "tell"             
##  [7783] "precious"          "yes"               "precious"         
##  [7786] ""                  "wizard"            ""                 
##  [7789] "face"              "remained"          "grave"            
##  [7792] "attentive"         "flicker"           "deep"             
##  [7795] "eyes"              "showed"            "startled"         
##  [7798] "indeed"            "alarmed"           ""                 
##  [7801] ""                  "called"            ""                 
##  [7804] ""                  "said"              ""                 
##  [7807] ""                  ""                  ""                 
##  [7810] ""                  ""                  "say"              
##  [7813] "now"               "even"              "gollum"           
##  [7816] "said"              ""                  ""                 
##  [7819] "now"               "mine"              "shall"            
##  [7822] "keep"              "say"               ""                 
##  [7825] "gandalf"           "stood"             "spoke"            
##  [7828] "sternly"           ""                  ""                 
##  [7831] "will"              "fool"              "bilbo"            
##  [7834] ""                  "said"              ""                 
##  [7837] ""                  "make"              "clearer"          
##  [7840] "every"             "word"              "say"              
##  [7843] "got"               "far"               "much"             
##  [7846] "hold"              "let"               "go"               
##  [7849] "can"               "go"                "free"             
##  [7852] ""                  ""                  ""                 
##  [7855] "ll"                "choose"            "go"               
##  [7858] "please"            ""                  "said"             
##  [7861] "bilbo"             "obstinately"       ""                 
##  [7864] "now"               "now"               "dear"             
##  [7867] "hobbit"            ""                  ""                 
##  [7870] "said"              "gandalf"           ""                 
##  [7873] ""                  "long"              "life"             
##  [7876] "friends"           "owe"               "something"        
##  [7879] "come"              "promised"          "give"             
##  [7882] ""                  ""                  ""                 
##  [7885] "well"              "want"              "ring"             
##  [7888] "say"               ""                  ""                 
##  [7891] "cried"             "bilbo"             ""                 
##  [7894] ""                  "won"               ""                 
##  [7897] "get"               "won"               ""                 
##  [7900] "give"              "precious"          "away"             
##  [7903] "tell"              ""                  ""                 
##  [7906] "hand"              "strayed"           "hilt"             
##  [7909] "small"             "sword"             "gandalf"          
##  [7912] ""                  "eyes"              "flashed"          
##  [7915] "will"              "turn"              "get"              
##  [7918] "angry"             "soon"              ""                 
##  [7921] "said"              "say"               "shall"            
##  [7924] "will"              "see"               "gandalf"          
##  [7927] "grey"              "uncloaked"         ""                 
##  [7930] "took"              "step"              "towards"          
##  [7933] "hobbit"            "seemed"            "grow"             
##  [7936] "tall"              "menacing"          "shadow"           
##  [7939] "filled"            "little"            "room"             
##  [7942] "bilbo"             "backed"            "away"             
##  [7945] "wall"              "breathing"         "hard"             
##  [7948] "hand"              "clutching"         "pocket"           
##  [7951] "stood"             "facing"            "one"              
##  [7954] "another"           "air"               "room"             
##  [7957] "tingled"           "gandalf"           ""                 
##  [7960] "eyes"              "remained"          "bent"             
##  [7963] "hobbit"            "slowly"            "hands"            
##  [7966] "relaxed"           "began"             "tremble"          
##  [7969] ""                  ""                  "don"              
##  [7972] ""                  "know"              "come"             
##  [7975] "gandalf"           ""                  "said"             
##  [7978] ""                  ""                  "never"            
##  [7981] "like"              "mine"              "isn"              
##  [7984] ""                  "found"             "gollum"           
##  [7987] "killed"            "hadn"              ""                 
##  [7990] "kept"              ""                  ""                 
##  [7993] "thief"             "whatever"          "said"             
##  [7996] ""                  ""                  ""                 
##  [7999] "never"             "called"            "one"              
##  [8002] ""                  "gandalf"           "answered"         
##  [8005] ""                  ""                  "one"              
##  [8008] "either"            "trying"            "rob"              
##  [8011] "help"              "wish"              "trust"            
##  [8014] "used"              ""                  "turned"           
##  [8017] "away"              "shadow"            "passed"           
##  [8020] "seemed"            "dwindle"           "old"              
##  [8023] "grey"              "man"               "bent"             
##  [8026] "troubled"          "bilbo"             "drew"             
##  [8029] "hand"              "eyes"              "sorry"            
##  [8032] ""                  "said"              ""                 
##  [8035] ""                  "felt"              "queer"            
##  [8038] "yet"               "relief"            "way"              
##  [8041] "bothered"          "growing"           "mind"             
##  [8044] "lately"            "sometimes"         "felt"             
##  [8047] "like"              "eye"               "looking"          
##  [8050] "always"            "wanting"           "put"              
##  [8053] "disappear"         "don"               ""                 
##  [8056] "know"              "wondering"         "safe"             
##  [8059] "pulling"           "make"              "sure"             
##  [8062] "tried"             "locking"           "found"            
##  [8065] "couldn"            ""                  "rest"             
##  [8068] "without"           "pocket"            "don"              
##  [8071] ""                  "know"              "don"              
##  [8074] ""                  "seem"              "able"             
##  [8077] "make"              "mind"              ""                 
##  [8080] ""                  ""                  "trust"            
##  [8083] "mine"              ""                  "said"             
##  [8086] "gandalf"           ""                  ""                 
##  [8089] "quite"             "made"              "go"               
##  [8092] "away"              "leave"             "behind"           
##  [8095] "stop"              "possessing"        "give"             
##  [8098] "frodo"             "will"              "look"             
##  [8101] ""                  ""                  "bilbo"            
##  [8104] "stood"             "moment"            "tense"            
##  [8107] "undecided"         "presently"         "sighed"           
##  [8110] ""                  ""                  "right"            
##  [8113] ""                  "said"              "effort"           
##  [8116] "will"              ""                  "shrugged"         
##  [8119] "shoulders"         "smiled"            "rather"           
##  [8122] "ruefully"          ""                  ""                 
##  [8125] ""                  ""                  "party"            
##  [8128] "business"          "really"            "give"             
##  [8131] "away"              "lots"              "birthday"         
##  [8134] "presents"          "somehow"           "make"             
##  [8137] "easier"            "give"              "away"             
##  [8140] "time"              "hasn"              ""                 
##  [8143] "made"              "easier"            "end"              
##  [8146] "pity"              "waste"             "preparations"     
##  [8149] "quite"             "spoil"             "joke"             
##  [8152] ""                  ""                  "indeed"           
##  [8155] "take"              "away"              "point"            
##  [8158] "ever"              "saw"               "affair"           
##  [8161] ""                  "said"              "gandalf"          
##  [8164] ""                  ""                  "well"             
##  [8167] ""                  "said"              "bilbo"            
##  [8170] ""                  ""                  "goes"             
##  [8173] "frodo"             "rest"              ""                 
##  [8176] "drew"              "deep"              "breath"           
##  [8179] ""                  ""                  "now"              
##  [8182] "really"            "must"              "starting"         
##  [8185] "somebody"          "else"              "will"             
##  [8188] "catch"             "said"              "good"             
##  [8191] "bye"               "couldn"            ""                 
##  [8194] "bear"              ""                  ""                 
##  [8197] "picked"            "bag"               "moved"            
##  [8200] "door"              ""                  ""                 
##  [8203] "still"             "got"               "ring"             
##  [8206] "pocket"            ""                  "said"             
##  [8209] "wizard"            ""                  "well"             
##  [8212] ""                  ""                  "cried"            
##  [8215] "bilbo"             ""                  ""                 
##  [8218] "will"              "documents"         "better"           
##  [8221] "take"              "deliver"           "will"             
##  [8224] "safest"            ""                  ""                 
##  [8227] ""                  "don"               ""                 
##  [8230] "give"              "ring"              ""                 
##  [8233] ""                  "said"              "gandalf"          
##  [8236] ""                  "put"               "mantelpiece"      
##  [8239] "will"              "safe"              "enough"           
##  [8242] "till"              "frodo"             "comes"            
##  [8245] "shall"             "wait"              ""                 
##  [8248] ""                  "bilbo"             "took"             
##  [8251] "envelope"          "just"              "set"              
##  [8254] "clock"             "hand"              "jerked"           
##  [8257] "back"              "packet"            "fell"             
##  [8260] "floor"             "pick"              "wizard"           
##  [8263] "stooped"           "seized"            "set"              
##  [8266] "place"             "spasm"             "anger"            
##  [8269] "passed"            "swiftly"           "hobbit"           
##  [8272] ""                  "face"              "suddenly"         
##  [8275] "gave"              "way"               "look"             
##  [8278] "relief"            "laugh"             ""                 
##  [8281] "well"              ""                  ""                 
##  [8284] ""                  ""                  "said"             
##  [8287] ""                  "now"               ""                 
##  [8290] ""                  ""                  ""                 
##  [8293] "went"              "hall"              "bilbo"            
##  [8296] "chose"             "favourite"         "stick"            
##  [8299] "stand"             "whistled"          "three"            
##  [8302] "dwarves"           "came"              "different"        
##  [8305] "rooms"             "busy"              ""                 
##  [8308] ""                  "everything"        "ready"            
##  [8311] ""                  "asked"             "bilbo"            
##  [8314] ""                  "everything"        "packed"           
##  [8317] "labelled"          ""                  ""                 
##  [8320] "everything"        ""                  "answered"         
##  [8323] ""                  "well"              "let"              
##  [8326] ""                  "start"             ""                 
##  [8329] ""                  "stepped"           "front"            
##  [8332] "door"              "fine"              "night"            
##  [8335] "black"             "sky"               "dotted"           
##  [8338] "stars"             "looked"            "sniffing"         
##  [8341] "air"               ""                  ""                 
##  [8344] "fun"               "fun"               "road"             
##  [8347] "dwarves"           "really"            "longing"          
##  [8350] "years"             "good"              "bye"              
##  [8353] ""                  ""                  "said"             
##  [8356] "looking"           "old"               "home"             
##  [8359] "bowing"            "door"              ""                 
##  [8362] "good"              "bye"               "gandalf"          
##  [8365] ""                  ""                  "good"             
##  [8368] "bye"               "present"           "bilbo"            
##  [8371] "take"              "care"              "old"              
##  [8374] "enough"            "perhaps"           "wise"             
##  [8377] "enough"            ""                  ""                 
##  [8380] "take"              "care"              "don"              
##  [8383] ""                  "care"              "don"              
##  [8386] ""                  "worry"             "happy"            
##  [8389] "now"               "ever"              "saying"           
##  [8392] "great"             "deal"              "time"             
##  [8395] "come"              "swept"             "feet"             
##  [8398] "last"              ""                  "added"            
##  [8401] "low"               "voice"             "sang"             
##  [8404] "softly"            "dark"              "road"             
##  [8407] "goes"              "ever"              "door"             
##  [8410] "began"             "now"               "far"              
##  [8413] "ahead"             "road"              "gone"             
##  [8416] "must"              "follow"            "can"              
##  [8419] "pursuing"          "eager"             "feet"             
##  [8422] "joins"             "larger"            "way"              
##  [8425] "many"              "paths"             "errands"          
##  [8428] "meet"              "whither"           "say"              
##  [8431] "paused"            "silent"            "moment"           
##  [8434] "without"           "another"           "word"             
##  [8437] "turned"            "away"              "lights"           
##  [8440] "voices"            "fields"            "tents"            
##  [8443] "followed"          "three"             "companions"       
##  [8446] "went"              "round"             "garden"           
##  [8449] "trotted"           "long"              "sloping"          
##  [8452] "path"              "jumped"            "low"              
##  [8455] "place"             "hedge"             "bottom"           
##  [8458] "took"              "meadows"           "passing"          
##  [8461] "night"             "like"              "rustle"           
##  [8464] "wind"              "grass"             "gandalf"          
##  [8467] "remained"          "staring"           "darkness"         
##  [8470] ""                  "goodbye"           "dear"             
##  [8473] "bilbo"             "next"              "meeting"          
##  [8476] ""                  "said"              "softly"           
##  [8479] "went"              "back"              "indoors"          
##  [8482] "frodo"             "came"              "soon"             
##  [8485] "afterwards"        "found"             "sitting"          
##  [8488] "dark"              "deep"              "thought"          
##  [8491] ""                  ""                  "gone"             
##  [8494] ""                  "asked"             ""                 
##  [8497] "yes"               ""                  "answered"         
##  [8500] "gandalf"           ""                  ""                 
##  [8503] "gone"              "last"              ""                 
##  [8506] "wish"              "mean"              "hoped"            
##  [8509] "evening"           "joke"              ""                 
##  [8512] "said"              "frodo"             ""                 
##  [8515] ""                  "knew"              "heart"            
##  [8518] "really"            "meant"             "go"               
##  [8521] "always"            "used"              "joke"             
##  [8524] "serious"           "things"            "wish"             
##  [8527] "come"              "back"              "sooner"           
##  [8530] "just"              "see"               ""                 
##  [8533] ""                  "think"             "really"           
##  [8536] "preferred"         "slipping"          "quietly"          
##  [8539] "end"               ""                  "said"             
##  [8542] "gandalf"           ""                  "don"              
##  [8545] ""                  "troubled"          ""                 
##  [8548] "ll"                "right"             "now"              
##  [8551] "left"              "packet"            ""                 
##  [8554] ""                  "frodo"             "took"             
##  [8557] "envelope"          "mantelpiece"       "glanced"          
##  [8560] "open"              ""                  ""                 
##  [8563] "ll"                "find"              "will"             
##  [8566] "documents"         "think"             ""                 
##  [8569] "said"              "wizard"            ""                 
##  [8572] ""                  "master"            "bag"              
##  [8575] "end"               "now"               "also"             
##  [8578] "fancy"             ""                  "ll"               
##  [8581] "find"              "golden"            "ring"             
##  [8584] ""                  ""                  ""                 
##  [8587] "ring"              ""                  "exclaimed"        
##  [8590] "frodo"             ""                  ""                 
##  [8593] "left"              "wonder"            "still"            
##  [8596] "may"               "useful"            ""                 
##  [8599] ""                  ""                  "may"              
##  [8602] "may"               ""                  ""                 
##  [8605] "said"              "gandalf"           ""                 
##  [8608] ""                  "make"              "use"              
##  [8611] "keep"              "secret"            "keep"             
##  [8614] "safe"              "now"               "going"            
##  [8617] "bed"               ""                  "master"           
##  [8620] "bag"               "end"               "frodo"            
##  [8623] "felt"              "painful"           "duty"             
##  [8626] "say"               "good"              "bye"              
##  [8629] "guests"            "rumours"           "strange"          
##  [8632] "events"            "now"               "spread"           
##  [8635] "field"             "frodo"             "say"              
##  [8638] "doubt"             "everything"        "will"             
##  [8641] "cleared"           "morning"           "midnight"         
##  [8644] "carriages"         "came"              "important"        
##  [8647] "folk"              "one"               "one"              
##  [8650] "rolled"            "away"              "filled"           
##  [8653] "full"              "unsatisfied"       "hobbits"          
##  [8656] "gardeners"         "came"              "arrangement"      
##  [8659] "removed"           "wheel"             "barrows"          
##  [8662] "inadvertently"     "remained"          "behind"           
##  [8665] "night"             "slowly"            "passed"           
##  [8668] "sun"               "rose"              "hobbits"          
##  [8671] "rose"              "rather"            "later"            
##  [8674] "morning"           "went"              "people"           
##  [8677] "came"              "began"             "orders"           
##  [8680] "clear"             "away"              "pavilions"        
##  [8683] "tables"            "chairs"            "spoons"           
##  [8686] "knives"            "bottles"           "plates"           
##  [8689] "lanterns"          "flowering"         "shrubs"           
##  [8692] "boxes"             "crumbs"            "cracker"          
##  [8695] "paper"             "forgotten"         "bags"             
##  [8698] "gloves"            "handkerchiefs"     "uneaten"          
##  [8701] "food"              "small"             "item"             
##  [8704] "number"            "people"            "came"             
##  [8707] "without"           "orders"            "bagginses"        
##  [8710] "boffins"           "bolgers"           "tooks"            
##  [8713] "guests"            "lived"             "staying"          
##  [8716] "near"              "mid"               "day"              
##  [8719] "even"              "best"              "fed"              
##  [8722] "large"             "crowd"             "bag"              
##  [8725] "end"               "uninvited"         "unexpected"       
##  [8728] "frodo"             "waiting"           "step"             
##  [8731] "smiling"           "looking"           "rather"           
##  [8734] "tired"             "worried"           "welcomed"         
##  [8737] "callers"           "much"              "say"              
##  [8740] "reply"             "inquiries"         "simply"           
##  [8743] ""                  "mr"                "bilbo"            
##  [8746] "baggins"           "gone"              "away"             
##  [8749] "far"               "know"              "good"             
##  [8752] ""                  "visitors"          "invited"          
##  [8755] "come"              "inside"            "bilbo"            
##  [8758] "left"              ""                  "messages"         
##  [8761] ""                  "inside"            "hall"             
##  [8764] "piled"             "large"             "assortment"       
##  [8767] "packages"          "parcels"           "small"            
##  [8770] "articles"          "furniture"         "every"            
##  [8773] "item"              "label"             "tied"             
##  [8776] "several"           "labels"            "sort"             
##  [8779] "adelard"           "took"              "bilbo"            
##  [8782] "umbrella"          "adelard"           "carried"          
##  [8785] "many"              "unlabelled"        "ones"             
##  [8788] "dora"              "baggins"           "memory"           
##  [8791] "long"              "correspondence"    "love"             
##  [8794] "bilbo"             "large"             "waste"            
##  [8797] "paper"             "basket"            "dora"             
##  [8800] "drogo"             ""                  "sister"           
##  [8803] "eldest"            "surviving"         "female"           
##  [8806] "relative"          "bilbo"             "frodo"            
##  [8809] "ninety"            "nine"              "written"          
##  [8812] "reams"             "good"              "advice"           
##  [8815] "half"              "century"           "milo"             
##  [8818] "burrows"           "hoping"            "will"             
##  [8821] "useful"            "bb"                "gold"             
##  [8824] "pen"               "ink"               "bottle"           
##  [8827] "milo"              "never"             "answered"         
##  [8830] "letters"           "angelica"          ""                 
##  [8833] "use"               "uncle"             "bilbo"            
##  [8836] "round"             "convex"            "mirror"           
##  [8839] "young"             "baggins"           "obviously"        
##  [8842] "considered"        "face"              "shapely"          
##  [8845] "collection"        "hugo"              "bracegirdle"      
##  [8848] "contributor"       "empty"             "book"             
##  [8851] "case"              "hugo"              "great"            
##  [8854] "borrower"          "books"             "worse"            
##  [8857] "usual"             "returning"         "lobelia"          
##  [8860] "sackville"         "baggins"           "present"          
##  [8863] "case"              "silver"            "spoons"           
##  [8866] "bilbo"             "believed"          "acquired"         
##  [8869] "good"              "many"              "spoons"           
##  [8872] "away"              "former"            "journey"          
##  [8875] "lobelia"           "knew"              "quite"            
##  [8878] "well"              "arrived"           "later"            
##  [8881] "day"               "took"              "point"            
##  [8884] "also"              "took"              "spoons"           
##  [8887] "small"             "selection"         "assembled"        
##  [8890] "presents"          "bilbo"             ""                 
##  [8893] "residence"         "got"               "rather"           
##  [8896] "cluttered"         "things"            "course"           
##  [8899] "long"              "life"              "tendency"         
##  [8902] "hobbit"            "holes"             "get"              
##  [8905] "cluttered"         "custom"            "giving"           
##  [8908] "many"              "birthday"          "presents"         
##  [8911] "largely"           "responsible"       "course"           
##  [8914] "birthday"          "presents"          "always"           
##  [8917] "new"               "one"               "two"              
##  [8920] "old"               "mathoms"           "forgotten"        
##  [8923] "uses"              "circulated"        "around"           
##  [8926] "district"          "bilbo"             "usually"          
##  [8929] "given"             "new"               "presents"         
##  [8932] "kept"              "received"          "old"              
##  [8935] "hole"              "now"               "cleared"          
##  [8938] "little"            "every"             "one"              
##  [8941] "various"           "parting"           "gifts"            
##  [8944] "labels"            "written"           "personally"       
##  [8947] "bilbo"             "several"           "point"            
##  [8950] "joke"              "course"            "things"           
##  [8953] "given"             "wanted"            "welcome"          
##  [8956] "poorer"            "hobbits"           "especially"       
##  [8959] "bagshot"           "row"               "well"             
##  [8962] "old"               "gaffer"            "gamgee"           
##  [8965] "got"               "two"               "sacks"            
##  [8968] "potatoes"          "new"               "spade"            
##  [8971] "woollen"           "waistcoat"         "bottle"           
##  [8974] "ointment"          "creaking"          "joints"           
##  [8977] "old"               "rory"              "brandybuck"       
##  [8980] "return"            "much"              "hospitality"      
##  [8983] "got"               "dozen"             "bottles"          
##  [8986] "old"               "winyards"          "strong"           
##  [8989] "red"               "wine"              "southfarthing"    
##  [8992] "now"               "quite"             "mature"           
##  [8995] "laid"              "bilbo"             ""                 
##  [8998] "father"            "rory"              "quite"            
##  [9001] "forgave"           "bilbo"             "voted"            
##  [9004] "capital"           "fellow"            "first"            
##  [9007] "bottle"            "plenty"            "everything"       
##  [9010] "left"              "frodo"             "course"           
##  [9013] "chief"             "treasures"         "well"             
##  [9016] "books"             "pictures"          "enough"           
##  [9019] "furniture"         "left"              "possession"       
##  [9022] "however"           "sign"              "mention"          
##  [9025] "money"             "jewellery"         "penny"            
##  [9028] "piece"             "glass"             "bead"             
##  [9031] "given"             "away"              "frodo"            
##  [9034] "trying"            "time"              "afternoon"        
##  [9037] "false"             "rumour"            "whole"            
##  [9040] "household"         "distributed"       "free"             
##  [9043] "spread"            "like"              "wildfire"         
##  [9046] "long"              "place"             "packed"           
##  [9049] "people"            "business"          "kept"             
##  [9052] "labels"            "got"               "torn"             
##  [9055] "mixed"             "quarrels"          "broke"            
##  [9058] "people"            "tried"             "swaps"            
##  [9061] "deals"             "hall"              "others"           
##  [9064] "tried"             "make"              "minor"            
##  [9067] "items"             "addressed"         "anything"         
##  [9070] "seemed"            "unwanted"          "unwatched"        
##  [9073] "road"              "gate"              "blocked"          
##  [9076] "barrows"           "handcarts"         "middle"           
##  [9079] "commotion"         "sackville"         "bagginses"        
##  [9082] "arrived"           "frodo"             "retired"          
##  [9085] "left"              "friend"            "merry"            
##  [9088] "brandybuck"        "keep"              "eye"              
##  [9091] "things"            "otho"              "loudly"           
##  [9094] "demanded"          "see"               "frodo"            
##  [9097] "merry"             "bowed"             "politely"         
##  [9100] ""                  ""                  "indisposed"       
##  [9103] ""                  "said"              ""                 
##  [9106] ""                  "resting"           ""                 
##  [9109] ""                  "hiding"            "mean"             
##  [9112] ""                  "said"              "lobelia"          
##  [9115] ""                  "anyway"            "want"             
##  [9118] "see"               "mean"              "see"              
##  [9121] "just"              "go"                "tell"             
##  [9124] ""                  ""                  "merry"            
##  [9127] "left"              "long"              "hall"             
##  [9130] "time"              "discover"          "parting"          
##  [9133] "gift"              "spoons"            "improve"          
##  [9136] "tempers"           "eventually"        "shown"            
##  [9139] "study"             "frodo"             "sitting"          
##  [9142] "table"             "lot"               "papers"           
##  [9145] "front"             "looked"            "indisposed"       
##  [9148] "see"               "sackville"         "bagginses"        
##  [9151] "rate"              "stood"             "fidgeting"        
##  [9154] "something"         "pocket"            "spoke"            
##  [9157] "quite"             "politely"          "sackville"        
##  [9160] "bagginses"         "rather"            "offensive"        
##  [9163] "began"             "offering"          "bad"              
##  [9166] "bargain"           "prices"            "friends"          
##  [9169] "various"           "valuable"          "unlabelled"       
##  [9172] "things"            "frodo"             "replied"          
##  [9175] "things"            "specially"         "directed"         
##  [9178] "bilbo"             "given"             "away"             
##  [9181] "said"              "whole"             "affair"           
##  [9184] "fishy"             ""                  ""                 
##  [9187] "one"               "thing"             "clear"            
##  [9190] ""                  ""                  "said"             
##  [9193] "otho"              ""                  ""                 
##  [9196] "exceedingly"       "well"              "insist"           
##  [9199] "seeing"            "will"              ""                 
##  [9202] "otho"              "bilbo"             ""                 
##  [9205] "heir"              "adoption"          "frodo"            
##  [9208] "read"              "will"              "carefully"        
##  [9211] "snorted"           "unfortunately"     "clear"            
##  [9214] "correct"           "according"         "legal"            
##  [9217] "customs"           "hobbits"           "demand"           
##  [9220] "among"             "things"            "seven"            
##  [9223] "signatures"        "witnesses"         "red"              
##  [9226] "ink"               ""                  "foiled"           
##  [9229] ""                  ""                  "said"             
##  [9232] "wife"              ""                  ""                 
##  [9235] "waiting"           "sixty"             "years"            
##  [9238] "spoons"            "fiddlesticks"      ""                 
##  [9241] "snapped"           "fingers"           "frodo"            
##  [9244] ""                  "nose"              "slumped"          
##  [9247] "lobelia"           "easily"            "got"              
##  [9250] "rid"               "little"            "later"            
##  [9253] "frodo"             "came"              "study"            
##  [9256] "see"               "things"            "going"            
##  [9259] "found"             "still"             "place"            
##  [9262] "investigating"     "nooks"             "comers"           
##  [9265] "tapping"           "floors"            "escorted"         
##  [9268] "firmly"            "premises"          "relieved"         
##  [9271] "several"           "small"             "rather"           
##  [9274] "valuable"          "articles"          "somehow"          
##  [9277] "fallen"            "inside"            "umbrella"         
##  [9280] "face"              "looked"            "throes"           
##  [9283] "thinking"          "really"            "crushing"         
##  [9286] "parting"           "remark"            "found"            
##  [9289] "say"               "turning"           "round"            
##  [9292] "step"              ""                  ""                 
##  [9295] "ll"                "live"              "regret"           
##  [9298] "young"             "fellow"            "didn"             
##  [9301] ""                  "go"                "don"              
##  [9304] ""                  "belong"            ""                 
##  [9307] "re"                "baggins"           ""                 
##  [9310] "re"                "brandybuck"        ""                 
##  [9313] ""                  ""                  "hear"             
##  [9316] "merry"             "insult"            "like"             
##  [9319] ""                  "said"              "frodo"            
##  [9322] "shut"              "door"              ""                 
##  [9325] ""                  "compliment"        ""                 
##  [9328] "said"              "merry"             "brandybuck"       
##  [9331] ""                  ""                  "course"           
##  [9334] "true"              ""                  "went"             
##  [9337] "round"             "hole"              "evicted"          
##  [9340] "three"             "young"             "hobbits"          
##  [9343] "two"               "boffins"           "bolger"           
##  [9346] "knocking"          "holes"             "walls"            
##  [9349] "one"               "cellars"           "frodo"            
##  [9352] "also"              "tussle"            "young"            
##  [9355] "sancho"            "proudfoot"         "old"              
##  [9358] "odo"               "proudfoot"         ""                 
##  [9361] "grandson"          "begun"             "excavation"       
##  [9364] "larger"            "pantry"            "thought"          
##  [9367] "echo"              "legend"            "bilbo"            
##  [9370] ""                  "gold"              "excited"          
##  [9373] "curiosity"         "hope"              "legendary"        
##  [9376] "gold"              "mysteriously"      "obtained"         
##  [9379] "positively"        "ill"               "gotten"           
##  [9382] "every"             "one"               "knows"            
##  [9385] "one"               ""                  "finding"          
##  [9388] "unless"            "search"            "interrupted"      
##  [9391] "overcome"          "sancho"            "pushed"           
##  [9394] "frodo"             "collapsed"         "chair"            
##  [9397] "hall"              ""                  ""                 
##  [9400] "time"              "close"             "shop"             
##  [9403] "merry"             ""                  "said"             
##  [9406] ""                  "lock"              "door"             
##  [9409] "don"               ""                  "open"             
##  [9412] "anyone"            "today"             "even"             
##  [9415] "bring"             "battering"         "ram"              
##  [9418] ""                  "went"              "revive"           
##  [9421] "belated"           "cup"               "tea"              
##  [9424] "hardly"            "sat"               "came"             
##  [9427] "soft"              "knock"             "front"            
##  [9430] "door"              ""                  "lobelia"          
##  [9433] "likely"            ""                  "thought"          
##  [9436] ""                  ""                  "must"             
##  [9439] "thought"           "something"         "really"           
##  [9442] "nasty"             "come"              "back"             
##  [9445] "say"               "can"               "wait"             
##  [9448] ""                  "went"              "tea"              
##  [9451] "knock"             "repeated"          "much"             
##  [9454] "louder"            "took"              "notice"           
##  [9457] "suddenly"          "wizard"            ""                 
##  [9460] "head"              "appeared"          "window"           
##  [9463] ""                  ""                  "don"              
##  [9466] ""                  "let"               "frodo"            
##  [9469] "shall"             "blow"              "door"             
##  [9472] "right"             "hole"              "hill"             
##  [9475] ""                  "said"              ""                 
##  [9478] ""                  "dear"              "gandalf"          
##  [9481] "half"              "minute"            ""                 
##  [9484] "cried"             "frodo"             "running"          
##  [9487] "room"              "door"              ""                 
##  [9490] "come"              "come"              "thought"          
##  [9493] "lobelia"           ""                  ""                 
##  [9496] ""                  "forgive"           "saw"              
##  [9499] "time"              "ago"               "driving"          
##  [9502] "pony"              "trap"              "towards"          
##  [9505] "bywater"           "face"              "curdled"          
##  [9508] "new"               "milk"              ""                 
##  [9511] ""                  ""                  "already"          
##  [9514] "nearly"            "curdled"           "honestly"         
##  [9517] "nearly"            "tried"             "bilbo"            
##  [9520] ""                  "ring"              "longed"           
##  [9523] "disappear"         ""                  ""                 
##  [9526] "don"               ""                  ""                 
##  [9529] ""                  "said"              "gandalf"          
##  [9532] "sitting"           ""                  ""                 
##  [9535] "careful"           "ring"              "frodo"            
##  [9538] "fact"              "partly"            "come"             
##  [9541] "say"               "last"              "word"             
##  [9544] ""                  ""                  "well"             
##  [9547] ""                  ""                  ""                 
##  [9550] ""                  "know"              "already"          
##  [9553] ""                  ""                  ""                 
##  [9556] "bilbo"             "told"              "heard"            
##  [9559] "story"             "found"             "used"             
##  [9562] "journey"           "mean"              ""                 
##  [9565] ""                  ""                  "story"            
##  [9568] "wonder"            ""                  "said"             
##  [9571] "gandalf"           ""                  "oh"               
##  [9574] "told"              "dwarves"           "put"              
##  [9577] "book"              ""                  "said"             
##  [9580] "frodo"             ""                  ""                 
##  [9583] "told"              "true"              "story"            
##  [9586] "soon"              "came"              "live"             
##  [9589] "said"              "pestered"          "till"             
##  [9592] "told"              "better"            "know"             
##  [9595] "secrets"           "us"                "frodo"            
##  [9598] "said"              "go"                ""                 
##  [9601] ""                  "mine"              "anyway"           
##  [9604] ""                  ""                  ""                 
##  [9607] ""                  "interesting"       ""                 
##  [9610] "said"              "gandalf"           ""                 
##  [9613] "well"              "think"             ""                 
##  [9616] ""                  ""                  ""                 
##  [9619] "mean"              "inventing"         "present"          
##  [9622] "well"              "thought"           "true"             
##  [9625] "story"             "much"              "likely"           
##  [9628] "couldn"            ""                  "see"              
##  [9631] "point"             "altering"          "unlike"           
##  [9634] "bilbo"             "anyway"            "thought"          
##  [9637] "rather"            "odd"               ""                 
##  [9640] ""                  ""                  "odd"              
##  [9643] "things"            "may"               "happen"           
##  [9646] "people"            "treasures"         "use"              
##  [9649] "let"               "warning"           "careful"          
##  [9652] "may"               "powers"            "just"             
##  [9655] "making"            "vanish"            "wish"             
##  [9658] ""                  ""                  ""                 
##  [9661] ""                  "don"               ""                 
##  [9664] "understand"        ""                  "said"             
##  [9667] "frodo"             ""                  "neither"          
##  [9670] ""                  ""                  "answered"         
##  [9673] "wizard"            ""                  ""                 
##  [9676] "merely"            "begun"             "wonder"           
##  [9679] "ring"              "especially"        "since"            
##  [9682] "last"              "night"             "need"             
##  [9685] "worry"             "take"              "advice"           
##  [9688] "will"              "use"               "seldom"           
##  [9691] "least"             "beg"               "use"              
##  [9694] "way"               "will"              "cause"            
##  [9697] "talk"              "rouse"             "suspicion"        
##  [9700] "say"               "keep"              "safe"             
##  [9703] "keep"              "secret"            ""                 
##  [9706] ""                  ""                  "mysterious"       
##  [9709] "afraid"            ""                  ""                 
##  [9712] ""                  ""                  "certain"          
##  [9715] "will"              "say"               "may"              
##  [9718] "able"              "tell"              "something"        
##  [9721] "come"              "back"              "going"            
##  [9724] "good"              "bye"               "present"          
##  [9727] ""                  "got"               ""                 
##  [9730] ""                  ""                  ""                 
##  [9733] "cried"             "frodo"             ""                 
##  [9736] ""                  "thought"           "staying"          
##  [9739] "least"             "week"              "looking"          
##  [9742] "forward"           "help"              ""                 
##  [9745] ""                  ""                  "mean"             
##  [9748] "change"            "mind"              "may"              
##  [9751] "away"              "good"              ""                 
##  [9754] "ll"                "come"              "see"              
##  [9757] "soon"              "can"               "expect"           
##  [9760] "see"               "shall"             "slip"             
##  [9763] "quietly"           "shan"              ""                 
##  [9766] "often"             "visiting"          "shire"            
##  [9769] "openly"            "find"              "become"           
##  [9772] "rather"            "unpopular"         "say"              
##  [9775] "nuisance"          "disturber"         "peace"            
##  [9778] "people"            "actually"          "accusing"         
##  [9781] "spiriting"         "bilbo"             "away"             
##  [9784] "worse"             "want"              "know"             
##  [9787] "supposed"          "plot"              "get"              
##  [9790] "hold"              "wealth"            ""                 
##  [9793] ""                  ""                  "people"           
##  [9796] ""                  "exclaimed"         "frodo"            
##  [9799] ""                  ""                  "mean"             
##  [9802] "otho"              "lobelia"           "abominable"       
##  [9805] "give"              "bag"               "end"              
##  [9808] "everything"        "else"              "get"              
##  [9811] "bilbo"             "back"              "go"               
##  [9814] "tramping"          "country"           "love"             
##  [9817] "shire"             "begin"             "wish"             
##  [9820] "somehow"           "gone"              "wonder"           
##  [9823] "shall"             "ever"              "see"              
##  [9826] ""                  ""                  ""                 
##  [9829] ""                  ""                  ""                 
##  [9832] "said"              "gandalf"           ""                 
##  [9835] ""                  "wonder"            "many"             
##  [9838] "things"            "good"              "bye"              
##  [9841] "now"               "take"              "care"             
##  [9844] "look"              "especially"        "unlikely"         
##  [9847] "times"             "good"              "bye"              
##  [9850] ""                  "frodo"             "saw"              
##  [9853] "door"              "gave"              "final"            
##  [9856] "wave"              "hand"              "walked"           
##  [9859] "surprising"        "pace"              "frodo"            
##  [9862] "thought"           "old"               "wizard"           
##  [9865] "looked"            "unusually"         "bent"             
##  [9868] "almost"            "carrying"          "great"            
##  [9871] "weight"            "evening"           "closing"          
##  [9874] "cloaked"           "figure"            "quickly"          
##  [9877] "vanished"          "twilight"          "frodo"            
##  [9880] "see"               "long"              "time"             
##  [9883] "chapter"           "shadow"            "past"             
##  [9886] "talk"              "die"               "nine"             
##  [9889] "even"              "ninety"            "nine"             
##  [9892] "days"              "second"            "disappearance"    
##  [9895] "mr"                "bilbo"             "baggins"          
##  [9898] "discussed"         "hobbiton"          "indeed"           
##  [9901] "shire"             "year"              "day"              
##  [9904] "remembered"        "much"              "longer"           
##  [9907] "became"            "fireside"          "story"            
##  [9910] "young"             "hobbits"           "eventually"       
##  [9913] "mad"               "baggins"           "used"             
##  [9916] "vanish"            "bang"              "flash"            
##  [9919] "reappear"          "bags"              "jewels"           
##  [9922] "gold"              "became"            "favourite"        
##  [9925] "character"         "legend"            "lived"            
##  [9928] "long"              "true"              "events"           
##  [9931] "forgotten"         "meantime"          "general"          
##  [9934] "opinion"           "neighbourhood"     "bilbo"            
##  [9937] "always"            "rather"            "cracked"          
##  [9940] "last"              "gone"              "quite"            
##  [9943] "mad"               "run"               "blue"             
##  [9946] "undoubtedly"       "fallen"            "pool"             
##  [9949] "river"             "come"              "tragic"           
##  [9952] "hardly"            "untimely"          "end"              
##  [9955] "blame"             "mostly"            "laid"             
##  [9958] "gandalf"           ""                  ""                 
##  [9961] "dratted"           "wizard"            "will"             
##  [9964] "leave"             "young"             "frodo"            
##  [9967] "alone"             "perhaps"           ""                 
##  [9970] "ll"                "settle"            "grow"             
##  [9973] "hobbit"            "sense"             ""                 
##  [9976] "said"              "appearance"        "wizard"           
##  [9979] "leave"             "frodo"             "alone"            
##  [9982] "settle"            "growth"            "hobbit"           
##  [9985] "sense"             "noticeable"        "indeed"           
##  [9988] "began"             "carry"             "bilbo"            
##  [9991] ""                  "reputation"        "oddity"           
##  [9994] "refused"           "go"                "mourning"         
##  [9997] "next"              "year"              "gave"             
## [10000] "party"             "honour"            "bilbo"            
## [10003] ""                  "hundred"           "twelfth"          
## [10006] "birthday"          "called"            "hundred"          
## [10009] "weight"            "feast"             "short"            
## [10012] "mark"              "twenty"            "guests"           
## [10015] "invited"           "several"           "meals"            
## [10018] "snowed"            "food"              "rained"           
## [10021] "drink"             "hobbits"           "say"              
## [10024] "people"            "rather"            "shocked"          
## [10027] "frodo"             "kept"              "custom"           
## [10030] "giving"            "bilbo"             ""                 
## [10033] "birthday"          "party"             "year"             
## [10036] "year"              "got"               "used"             
## [10039] "said"              "think"             "bilbo"            
## [10042] "dead"              "asked"             ""                 
## [10045] ""                  ""                  ""                 
## [10048] "shrugged"          "shoulders"         "lived"            
## [10051] "alone"             "bilbo"             "done"             
## [10054] "good"              "many"              "friends"          
## [10057] "especially"        "among"             "younger"          
## [10060] "hobbits"           "mostly"            "descendants"      
## [10063] "old"               "took"              "children"         
## [10066] "fond"              "bilbo"             "often"            
## [10069] "bag"               "end"               "folco"            
## [10072] "boffin"            "fredegar"          "bolger"           
## [10075] "two"               "closest"           "friends"          
## [10078] "peregrin"          "took"              "usually"          
## [10081] "called"            "pippin"            "merry"            
## [10084] "brandybuck"        "real"              "name"             
## [10087] "meriadoc"          "seldom"            "remembered"       
## [10090] "frodo"             "went"              "tramping"         
## [10093] "shire"             "often"             "wandered"         
## [10096] "amazement"         "sensible"          "folk"             
## [10099] "sometimes"         "seen"              "far"              
## [10102] "home"              "walking"           "hills"            
## [10105] "woods"             "starlight"         "merry"            
## [10108] "pippin"            "suspected"         "visited"          
## [10111] "elves"             "times"             "bilbo"            
## [10114] "done"              "time"              "went"             
## [10117] "people"            "began"             "notice"           
## [10120] "frodo"             "also"              "showed"           
## [10123] "signs"             "good"              ""                 
## [10126] "preservation"      ""                  "outwardly"        
## [10129] "retained"          "appearance"        "robust"           
## [10132] "energetic"         "hobbit"            "just"             
## [10135] "tweens"            ""                  ""                 
## [10138] "folk"              "luck"              ""                 
## [10141] "said"              "frodo"             "approached"       
## [10144] "usually"           "sober"             "age"              
## [10147] "fifty"             "began"             "think"            
## [10150] "queer"             "frodo"             "first"            
## [10153] "shock"             "found"             "master"           
## [10156] "mr"                "baggins"           "bag"              
## [10159] "end"               "rather"            "pleasant"         
## [10162] "years"             "quite"             "happy"            
## [10165] "worry"             "much"              "future"           
## [10168] "half"              "unknown"           "regret"           
## [10171] "gone"              "bilbo"             "steadily"         
## [10174] "growing"           "found"             "wondering"        
## [10177] "times"             "especially"        "autumn"           
## [10180] "wild"              "lands"             "strange"          
## [10183] "visions"           "mountains"         "never"            
## [10186] "seen"              "came"              "dreams"           
## [10189] "began"             "say"               ""                 
## [10192] "perhaps"           "shall"             "cross"            
## [10195] "river"             "one"               "day"              
## [10198] ""                  "half"              "mind"             
## [10201] "always"            "replied"           ""                 
## [10204] ""                  "yet"               ""                 
## [10207] "went"              "forties"           "running"          
## [10210] "fiftieth"          "birthday"          "drawing"          
## [10213] "near"              "fifty"             "number"           
## [10216] "felt"              "somehow"           "significant"      
## [10219] "ominous"           "rate"              "age"              
## [10222] "adventure"         "suddenly"          "befallen"         
## [10225] "bilbo"             "frodo"             "began"            
## [10228] "feel"              "restless"          "old"              
## [10231] "paths"             "seemed"            "well"             
## [10234] "trodden"           "looked"            "maps"             
## [10237] "wondered"          "lay"               "beyond"           
## [10240] "edges"             "maps"              "made"             
## [10243] "shire"             "showed"            "mostly"           
## [10246] "white"             "spaces"            "beyond"           
## [10249] "borders"           "took"              "wandering"        
## [10252] "afield"            "often"             "merry"            
## [10255] "friends"           "watched"           "anxiously"        
## [10258] "often"             "seen"              "walking"          
## [10261] "talking"           "strange"           "wayfarers"        
## [10264] "began"             "time"              "appear"           
## [10267] "shire"             "rumours"           "strange"          
## [10270] "things"            "happening"         "world"            
## [10273] "outside"           "gandalf"           "time"             
## [10276] "appeared"          "sent"              "message"          
## [10279] "several"           "years"             "frodo"            
## [10282] "gathered"          "news"              "elves"            
## [10285] "seldom"            "walked"            "shire"            
## [10288] "now"               "seen"              "passing"          
## [10291] "westward"          "woods"             "evening"          
## [10294] "passing"           "returning"         "leaving"          
## [10297] "middle"            "earth"             "longer"           
## [10300] "concerned"         "troubles"          "however"          
## [10303] "dwarves"           "road"              "unusual"          
## [10306] "numbers"           "ancient"           "east"             
## [10309] "west"              "road"              "ran"              
## [10312] "shire"             "end"               "grey"             
## [10315] "havens"            "dwarves"           "always"           
## [10318] "used"              "way"               "mines"            
## [10321] "blue"              "mountains"         "hobbits"          
## [10324] ""                  "chief"             "source"           
## [10327] "news"              "distant"           "parts"            
## [10330] "wanted"            "rule"              "dwarves"          
## [10333] "said"              "little"            "hobbits"          
## [10336] "asked"             "now"               "frodo"            
## [10339] "often"             "met"               "strange"          
## [10342] "dwarves"           "far"               "countries"        
## [10345] "seeking"           "refuge"            "west"             
## [10348] "troubled"          "spoke"             "whispers"         
## [10351] "enemy"             "land"              "mordor"           
## [10354] "name"              "hobbits"           "knew"             
## [10357] "legends"           "dark"              "past"             
## [10360] "like"              "shadow"            "background"       
## [10363] "memories"          "ominous"           "disquieting"      
## [10366] "seemed"            "evil"              "power"            
## [10369] "mirkwood"          "driven"            "white"            
## [10372] "council"           "reappear"          "greater"          
## [10375] "strength"          "old"               "strongholds"      
## [10378] "mordor"            "dark"              "tower"            
## [10381] "rebuilt"           "said"              "power"            
## [10384] "spreading"         "far"               "wide"             
## [10387] "away"              "far"               "east"             
## [10390] "south"             "wars"              "growing"          
## [10393] "fear"              "orcs"              "multiplying"      
## [10396] "mountains"         "trolls"            "abroad"           
## [10399] "longer"            "dull"              "witted"           
## [10402] "cunning"           "armed"             "dreadful"         
## [10405] "weapons"           "murmured"          "hints"            
## [10408] "creatures"         "terrible"          "name"             
## [10411] "little"            "course"            "reached"          
## [10414] "ears"              "ordinary"          "hobbits"          
## [10417] "even"              "deafest"           "stay"             
## [10420] "home"              "began"             "hear"             
## [10423] "queer"             "tales"             "whose"            
## [10426] "business"          "took"              "borders"          
## [10429] "saw"               "strange"           "things"           
## [10432] "conversation"      "green"             "dragon"           
## [10435] "bywater"           "one"               "evening"          
## [10438] "spring"            "frodo"             ""                 
## [10441] "fiftieth"          "year"              "showed"           
## [10444] "even"              "comfortable"       "heart"            
## [10447] "shire"             "rumours"           "heard"            
## [10450] "though"            "hobbits"           "still"            
## [10453] "laughed"           "sam"               "gamgee"           
## [10456] "sitting"           "one"               "corner"           
## [10459] "near"              "fire"              "opposite"         
## [10462] "ted"               "sandyman"          "miller"           
## [10465] ""                  "son"               "various"          
## [10468] "rustic"            "hobbits"           "listening"        
## [10471] "talk"              ""                  "queer"            
## [10474] "things"            "hear"              "days"             
## [10477] "sure"              ""                  "said"             
## [10480] "sam"               ""                  "ah"               
## [10483] ""                  "said"              "ted"              
## [10486] ""                  ""                  "listen"           
## [10489] "can"               "hear"              "fireside"         
## [10492] "tales"             "children"          ""                 
## [10495] "stories"           "home"              "want"             
## [10498] ""                  ""                  ""                 
## [10501] ""                  "doubt"             "can"              
## [10504] ""                  "retorted"          "sam"              
## [10507] ""                  ""                  "daresay"          
## [10510] ""                  ""                  "truth"            
## [10513] "reckon"            "invented"          "stories"          
## [10516] "anyway"            "take"              "dragons"          
## [10519] "now"               ""                  ""                 
## [10522] ""                  "thank"             ""                 
## [10525] "ee"                ""                  "said"             
## [10528] "ted"               ""                  ""                 
## [10531] "won"               ""                  "heard"            
## [10534] "tell"              "youngster"         ""                 
## [10537] ""                  "call"              "believe"          
## [10540] "now"               ""                  ""                 
## [10543] "one"               "dragon"            "bywater"          
## [10546] ""                  ""                  "green"            
## [10549] ""                  "said"              "getting"          
## [10552] "general"           "laugh"             ""                 
## [10555] ""                  "right"             ""                 
## [10558] "said"              "sam"               "laughing"         
## [10561] "rest"              ""                  ""                 
## [10564] "tree"              "men"               "giants"           
## [10567] "might"             "call"              "say"              
## [10570] "one"               "bigger"            "tree"             
## [10573] "seen"              "away"              "beyond"           
## [10576] "north"             "moors"             "long"             
## [10579] "back"              ""                  ""                 
## [10582] ""                  ""                  ""                 
## [10585] ""                  ""                  ""                 
## [10588] "cousin"            "hal"               "one"              
## [10591] "works"             "mr"                "boffin"           
## [10594] "overhill"          "goes"              "northfarthing"    
## [10597] "hunting"           "saw"               "one"              
## [10600] ""                  ""                  "says"             
## [10603] "perhaps"           "hal"               ""                 
## [10606] "always"            "saying"            ""                 
## [10609] ""                  "seen"              "things"           
## [10612] "maybe"             "sees"              "things"           
## [10615] "ain"               ""                  ""                 
## [10618] ""                  ""                  ""                 
## [10621] "one"               "big"               "elm"              
## [10624] "tree"              "walking"           "walking"          
## [10627] "seven"             "yards"             "stride"           
## [10630] "inch"              ""                  ""                 
## [10633] ""                  "bet"               "wasn"             
## [10636] ""                  "inch"              "saw"              
## [10639] "elm"               "tree"              "like"             
## [10642] ""                  ""                  ""                 
## [10645] ""                  "one"               "walking"          
## [10648] "tell"              "ain"               ""                 
## [10651] "elm"               "tree"              "north"            
## [10654] "moors"             ""                  ""                 
## [10657] ""                  "hal"               "can"              
## [10660] ""                  "seen"              "one"              
## [10663] ""                  "said"              "ted"              
## [10666] "laughing"          "clapping"          "audience"         
## [10669] "seemed"            "think"             "ted"              
## [10672] "scored"            "point"             ""                 
## [10675] ""                  ""                  ""                 
## [10678] "said"              "sam"               ""                 
## [10681] ""                  "can"               ""                 
## [10684] "deny"              "others"            "besides"          
## [10687] "halfast"           "seen"              "queer"            
## [10690] "folk"              "crossing"          "shire"            
## [10693] "crossing"          "mind"              "turned"           
## [10696] "back"              "borders"           "bounders"         
## [10699] "never"             "busy"              ""                 
## [10702] ""                  ""                  "ve"               
## [10705] "heard"             "tell"              "elves"            
## [10708] "moving"            "west"              "say"              
## [10711] "going"             "harbours"          "away"             
## [10714] "beyond"            "white"             "towers"           
## [10717] ""                  "sam"               "waved"            
## [10720] "arm"               "vaguely"           "neither"          
## [10723] "knew"              "far"               "sea"              
## [10726] "past"              "old"               "towers"           
## [10729] "beyond"            "western"           "borders"          
## [10732] "shire"             "old"               "tradition"        
## [10735] "away"              "stood"             "grey"             
## [10738] "havens"            "times"             "elven"            
## [10741] "ships"             "set"               "sail"             
## [10744] "never"             "return"            ""                 
## [10747] ""                  "sailing"           "sailing"          
## [10750] "sailing"           "sea"               "going"            
## [10753] "west"              "leaving"           "us"               
## [10756] ""                  "said"              "sam"              
## [10759] "half"              "chanting"          "words"            
## [10762] "shaking"           "head"              "sadly"            
## [10765] "solemnly"          "ted"               "laughed"          
## [10768] ""                  "well"              "isn"              
## [10771] ""                  "anything"          "new"              
## [10774] "believe"           "old"               "tales"            
## [10777] "don"               ""                  "see"              
## [10780] "matters"           "let"               "sail"             
## [10783] "warrant"           "haven"             ""                 
## [10786] "seen"              "one"               "else"             
## [10789] "shire"             ""                  ""                 
## [10792] "well"              "don"               ""                 
## [10795] "know"              ""                  "said"             
## [10798] "sam"               "thoughtfully"      "believed"         
## [10801] "seen"              "elf"               "woods"            
## [10804] "still"             "hoped"             "see"              
## [10807] "one"               "day"               "legends"          
## [10810] "heard"             "early"             "years"            
## [10813] "fragments"         "tales"             "half"             
## [10816] "remembered"        "stories"           "elves"            
## [10819] "hobbits"           "knew"              "always"           
## [10822] "moved"             "deeply"            ""                 
## [10825] ""                  "even"              "parts"            
## [10828] "know"              "fair"              "folk"             
## [10831] "get"               "news"              ""                 
## [10834] ""                  "said"              ""                 
## [10837] ""                  ""                  "mr"               
## [10840] "baggins"           "now"               "work"             
## [10843] "told"              "sailing"           "knows"            
## [10846] "bit"               "elves"             "old"              
## [10849] "mr"                "bilbo"             "knew"             
## [10852] "many"              ""                  "talk"             
## [10855] "little"            "lad"               ""                 
## [10858] ""                  "oh"                ""                 
## [10861] "re"                "cracked"           ""                 
## [10864] "said"              "ted"               ""                 
## [10867] "leastways"         "old"               "bilbo"            
## [10870] "cracked"           "frodo"             ""                 
## [10873] "cracking"          ""                  ""                 
## [10876] "get"               "news"              ""                 
## [10879] "ll"                "never"             "want"             
## [10882] "moonshine"         "well"              "friends"          
## [10885] ""                  ""                  "home"             
## [10888] "good"              "health"            ""                 
## [10891] "drained"           "mug"               "went"             
## [10894] "noisily"           "sam"               "sat"              
## [10897] "silent"            "said"              "good"             
## [10900] "deal"              "think"             "one"              
## [10903] "thing"             "lot"               "bag"              
## [10906] "end"               "garden"            "busy"             
## [10909] "day"               "tomorrow"          "weather"          
## [10912] "cleared"           "grass"             "growing"          
## [10915] "fast"              "sam"               "mind"             
## [10918] "gardening"         "sighed"            "got"              
## [10921] "went"              "early"             "april"            
## [10924] "sky"               "now"               "clearing"         
## [10927] "heavy"             "rain"              "sun"              
## [10930] "cool"              "pale"              "evening"          
## [10933] "quietly"           "fading"            "night"            
## [10936] "walked"            "home"              "early"            
## [10939] "stars"             "hobbiton"          "hill"             
## [10942] "whistling"         "softly"            "thoughtfully"     
## [10945] "just"              "time"              "gandalf"          
## [10948] "reappeared"        "long"              "absence"          
## [10951] "three"             "years"             "party"            
## [10954] "away"              "paid"              "frodo"            
## [10957] "brief"             "visit"             "taking"           
## [10960] "good"              "look"              "went"             
## [10963] "next"              "year"              "two"              
## [10966] "turned"            "fairly"            "often"            
## [10969] "coming"            "unexpectedly"      "dusk"             
## [10972] "going"             "without"           "warning"          
## [10975] "sunrise"           "discuss"           "business"         
## [10978] "journeys"          "seemed"            "chiefly"          
## [10981] "interested"        "small"             "news"             
## [10984] "frodo"             ""                  "health"           
## [10987] "doings"            "suddenly"          "visits"           
## [10990] "ceased"            "nine"              "years"            
## [10993] "since"             "frodo"             "seen"             
## [10996] "heard"             "begun"             "think"            
## [10999] "wizard"            "never"             "return"           
## [11002] "given"             "interest"          "hobbits"          
## [11005] "evening"           "sam"               "walking"          
## [11008] "home"              "twilight"          "fading"           
## [11011] "came"              "familiar"          "tap"              
## [11014] "study"             "window"            "frodo"            
## [11017] "welcomed"          "old"               "friend"           
## [11020] "surprise"          "great"             "delight"          
## [11023] "looked"            "hard"              "one"              
## [11026] "another"           ""                  "ah"               
## [11029] "well"              "eh"                ""                 
## [11032] "said"              "gandalf"           ""                 
## [11035] ""                  "look"              "ever"             
## [11038] "frodo"             ""                  ""                 
## [11041] ""                  ""                  ""                 
## [11044] "frodo"             "replied"           "secretly"         
## [11047] "thought"           "gandalf"           "looked"           
## [11050] "older"             "careworn"          "pressed"          
## [11053] "news"              "wide"              "world"            
## [11056] "soon"              "deep"              "talk"             
## [11059] "stayed"            "far"               "night"            
## [11062] "next"              "morning"           "late"             
## [11065] "breakfast"         "wizard"            "sitting"          
## [11068] "frodo"             "open"              "window"           
## [11071] "study"             "bright"            "fire"             
## [11074] "hearth"            "sun"               "warm"             
## [11077] "wind"              "south"             "everything"       
## [11080] "looked"            "fresh"             "new"              
## [11083] "green"             "spring"            "shimmering"       
## [11086] "fields"            "tips"              "trees"            
## [11089] ""                  "fingers"           "gandalf"          
## [11092] "thinking"          "spring"            "nearly"           
## [11095] "eighty"            "years"             "bilbo"            
## [11098] "run"               "bag"               "end"              
## [11101] "without"           "handkerchief"      "hair"             
## [11104] "perhaps"           "whiter"            "beard"            
## [11107] "eyebrows"          "perhaps"           "longer"           
## [11110] "face"              "lined"             "care"             
## [11113] "wisdom"            "eyes"              "bright"           
## [11116] "ever"              "smoked"            "blew"             
## [11119] "smoke"             "rings"             "vigour"           
## [11122] "delight"           "smoking"           "now"              
## [11125] "silence"           "frodo"             "sitting"          
## [11128] "still"             "deep"              "thought"          
## [11131] "even"              "light"             "morning"          
## [11134] "felt"              "dark"              "shadow"           
## [11137] "tidings"           "gandalf"           "brought"          
## [11140] "last"              "broke"             "silence"          
## [11143] ""                  "last"              "night"            
## [11146] "began"             "tell"              "strange"          
## [11149] "things"            "ring"              "gandalf"          
## [11152] ""                  "said"              ""                 
## [11155] ""                  "stopped"           "said"             
## [11158] "matters"           "best"              "left"             
## [11161] "daylight"          "don"               ""                 
## [11164] "think"             "better"            "finish"           
## [11167] "now"               "say"               "ring"             
## [11170] "dangerous"         "far"               "dangerous"        
## [11173] "guess"             "way"               ""                 
## [11176] ""                  ""                  "many"             
## [11179] "ways"              ""                  "answered"         
## [11182] "wizard"            "far"               "powerful"         
## [11185] "ever"              "dared"             "think"            
## [11188] "first"             "powerful"          "end"              
## [11191] "utterly"           "overcome"          "anyone"           
## [11194] "mortal"            "race"              "possessed"        
## [11197] "possess"           ""                  ""                 
## [11200] "eregion"           "long"              "ago"              
## [11203] "many"              "elven"             "rings"            
## [11206] "made"              "magic"             "rings"            
## [11209] "call"              "course"            "various"          
## [11212] "kinds"             "potent"            "less"             
## [11215] "lesser"            "rings"             "essays"           
## [11218] "craft"             "full"              "grown"            
## [11221] "elven"             "smiths"            "trifles"          
## [11224] "yet"               "still"             "mind"             
## [11227] "dangerous"         "mortals"           "great"            
## [11230] "rings"             "rings"             "power"            
## [11233] "perilous"          ""                  ""                 
## [11236] "mortal"            "frodo"             "keeps"            
## [11239] "one"               "great"             "rings"            
## [11242] "die"               "grow"              "obtain"           
## [11245] "life"              "merely"            "continues"        
## [11248] "last"              "every"             "minute"           
## [11251] "weariness"         "often"             "uses"             
## [11254] "ring"              "make"              "invisible"        
## [11257] "fades"             "becomes"           "end"              
## [11260] "invisible"         "permanently"       "walks"            
## [11263] "twilight"          "eye"               "dark"             
## [11266] "power"             "rules"             "rings"            
## [11269] "yes"               "sooner"            "later"            
## [11272] "later"             "strong"            "well"             
## [11275] "meaning"           "begin"             "neither"          
## [11278] "strength"          "good"              "purpose"          
## [11281] "will"              "last"              "sooner"           
## [11284] "later"             "dark"              "power"            
## [11287] "will"              "devour"            ""                 
## [11290] ""                  ""                  ""                 
## [11293] "terrifying"        ""                  "said"             
## [11296] "frodo"             "another"           "long"             
## [11299] "silence"           "sound"             "sam"              
## [11302] "gamgee"            "cutting"           "lawn"             
## [11305] "came"              "garden"            ""                 
## [11308] ""                  "long"              "known"            
## [11311] ""                  ""                  "asked"            
## [11314] "frodo"             "length"            ""                 
## [11317] ""                  "much"              "bilbo"            
## [11320] "know"              ""                  ""                 
## [11323] "bilbo"             "knew"              "told"             
## [11326] "sure"              ""                  "said"             
## [11329] "gandalf"           ""                  ""                 
## [11332] "certainly"         "never"             "passed"           
## [11335] "anything"          "thought"           "danger"           
## [11338] "even"              "though"            "promised"         
## [11341] "look"              "thought"           "ring"             
## [11344] "beautiful"         "useful"            "need"             
## [11347] "anything"          "wrong"             "queer"            
## [11350] "said"              ""                  "growing"          
## [11353] "mind"              ""                  "always"           
## [11356] "worrying"          "suspect"           "ring"             
## [11359] "blame"             "though"            "found"            
## [11362] "thing"             "needed"            "looking"          
## [11365] "seem"              "always"            "size"             
## [11368] "weight"            "shrank"            "expanded"         
## [11371] "odd"               "way"               "might"            
## [11374] "suddenly"          "slip"              "finger"           
## [11377] "tight"             ""                  ""                 
## [11380] "yes"               "warned"            "last"             
## [11383] "letter"            ""                  "said"             
## [11386] "frodo"             ""                  ""                 
## [11389] "always"            "kept"              "chain"            
## [11392] ""                  ""                  ""                 
## [11395] "wise"              ""                  "said"             
## [11398] "gandalf"           ""                  ""                 
## [11401] "long"              "life"              "bilbo"            
## [11404] "never"             "connected"         "ring"             
## [11407] "took"              "credit"            "proud"            
## [11410] "though"            "getting"           "restless"         
## [11413] "uneasy"            "thin"              "stretched"        
## [11416] "said"              "sign"              "ring"             
## [11419] "getting"           "control"           ""                 
## [11422] ""                  ""                  "long"             
## [11425] "known"             ""                  ""                 
## [11428] "asked"             "frodo"             ""                 
## [11431] "known"             ""                  "said"             
## [11434] "gandalf"           ""                  ""                 
## [11437] "known"             "much"              "wise"             
## [11440] "know"              "frodo"             "mean"             
## [11443] ""                  "known"             "ring"             
## [11446] ""                  "well"              "still"            
## [11449] "know"              "one"               "might"            
## [11452] "say"               "last"              "test"             
## [11455] "make"              "longer"            "doubt"            
## [11458] "guess"             ""                  ""                 
## [11461] "first"             "begin"             "guess"            
## [11464] ""                  "mused"             "searching"        
## [11467] "back"              "memory"            ""                 
## [11470] "let"               "see"               "year"             
## [11473] "white"             "council"           "drove"            
## [11476] "dark"              "power"             "mirkwood"         
## [11479] "just"              "battle"            "five"             
## [11482] "armies"            "bilbo"             "found"            
## [11485] "ring"              "shadow"            "fell"             
## [11488] "heart"             "though"            "know"             
## [11491] "yet"               "feared"            "wondered"         
## [11494] "often"             "gollum"            "came"             
## [11497] "great"             "ring"              "plainly"          
## [11500] "least"             "clear"             "first"            
## [11503] "heard"             "bilbo"             ""                 
## [11506] "strange"           "story"             ""                 
## [11509] "won"               ""                  "believe"          
## [11512] "last"              "got"               "truth"            
## [11515] "saw"               "trying"            "put"              
## [11518] "claim"             "ring"              "beyond"           
## [11521] "doubt"             "much"              "like"             
## [11524] "gollum"            ""                  "birthday"         
## [11527] "present"           ""                  "lies"             
## [11530] "much"              "alike"             "comfort"          
## [11533] "clearly"           "ring"              "unwholesome"      
## [11536] "power"             "set"               "work"             
## [11539] "keeper"            "first"             "real"             
## [11542] "warning"           "well"              "told"             
## [11545] "bilbo"             "often"             "rings"            
## [11548] "better"            "left"              "unused"           
## [11551] "resented"          "soon"              "got"              
## [11554] "angry"             "little"            "else"             
## [11557] "take"              "without"           "greater"          
## [11560] "harm"              "right"             "anyway"           
## [11563] "watch"             "wait"              "might"            
## [11566] "perhaps"           "consulted"         "saruman"          
## [11569] "white"             "something"         "always"           
## [11572] "held"              "back"              ""                 
## [11575] ""                  ""                  ""                 
## [11578] ""                  "asked"             "frodo"            
## [11581] "never"             "heard"             ""                 
## [11584] ""                  ""                  "maybe"            
## [11587] ""                  ""                  "answered"         
## [11590] "gandalf"           ""                  "hobbits"          
## [11593] "concern"           "yet"               "great"            
## [11596] "among"             "wise"              "chief"            
## [11599] "order"             "head"              "council"          
## [11602] "knowledge"         "deep"              "pride"            
## [11605] "grown"             "takes"             "ill"              
## [11608] "meddling"          "lore"              "elven"            
## [11611] "rings"             "great"             "small"            
## [11614] "province"          "long"              "studied"          
## [11617] "seeking"           "lost"              "secrets"          
## [11620] "making"            "rings"             "debated"          
## [11623] "council"           "reveal"            "us"               
## [11626] "ring"              "lore"              "told"             
## [11629] "fears"             "doubt"             "slept"            
## [11632] "uneasily"          "still"             "watched"          
## [11635] "waited"            ""                  ""                 
## [11638] "seemed"            "well"              "bilbo"            
## [11641] "years"             "passed"            "yes"              
## [11644] "passed"            "seemed"            "touch"            
## [11647] "showed"            "signs"             "age"              
## [11650] "shadow"            "fell"              "said"             
## [11653] ""                  ""                  "comes"            
## [11656] "long"              "lived"             "family"           
## [11659] "mother"            ""                  "side"             
## [11662] "time"              "yet"               "wait"             
## [11665] ""                  ""                  ""                 
## [11668] "waited"            "night"             "left"             
## [11671] "house"             "said"              "things"           
## [11674] "filled"            "fear"              "words"            
## [11677] "saruman"           "allay"             "knew"             
## [11680] "last"              "something"         "dark"             
## [11683] "deadly"            "work"              "spent"            
## [11686] "years"             "since"             "finding"          
## [11689] "truth"             ""                  ""                 
## [11692] ""                  ""                  "wasn"             
## [11695] ""                  "permanent"         "harm"             
## [11698] "done"              ""                  ""                 
## [11701] "asked"             "frodo"             "anxiously"        
## [11704] ""                  ""                  "get"              
## [11707] "right"             "time"              "wouldn"           
## [11710] ""                  "able"              "rest"             
## [11713] "peace"             "mean"              ""                 
## [11716] ""                  ""                  "felt"             
## [11719] "better"            ""                  ""                 
## [11722] "said"              "gandalf"           ""                 
## [11725] ""                  "one"               "power"            
## [11728] "world"             "knows"             "rings"            
## [11731] "effects"           "far"               "know"             
## [11734] "power"             "world"             "knows"            
## [11737] "hobbits"           "among"             "wise"             
## [11740] "one"               "goes"              "hobbit"           
## [11743] "lore"              "obscure"           "branch"           
## [11746] "knowledge"         "full"              "surprises"        
## [11749] "soft"              "butter"            "can"              
## [11752] "yet"               "sometimes"         "tough"            
## [11755] "old"               "tree"              "roots"            
## [11758] "think"             "likely"            "resist"           
## [11761] "rings"             "far"               "longer"           
## [11764] "wise"              "believe"           "don"              
## [11767] ""                  "think"             "need"             
## [11770] "worry"             "bilbo"             ""                 
## [11773] ""                  "course"            "possessed"        
## [11776] "ring"              "many"              "years"            
## [11779] "used"              "might"             "take"             
## [11782] "long"              "influence"         "wear"             
## [11785] "safe"              "see"               "instance"         
## [11788] "otherwise"         "might"             "live"             
## [11791] "years"             "quite"             "happily"          
## [11794] "just"              "stop"              "parted"           
## [11797] "gave"              "end"               "accord"           
## [11800] "important"         "point"             "troubled"         
## [11803] "dear"              "bilbo"             "let"              
## [11806] "thing"             "go"                "feel"             
## [11809] "responsible"       ""                  "ever"             
## [11812] "since"             "bilbo"             "left"             
## [11815] "deeply"            "concerned"         "charming"         
## [11818] "absurd"            "helpless"          "hobbits"          
## [11821] "grievous"          "blow"              "world"            
## [11824] "dark"              "power"             "overcame"         
## [11827] "shire"             "kind"              "jolly"            
## [11830] "stupid"            "bolgers"           "hornblowers"      
## [11833] "boffins"           "bracegirdles"      "rest"             
## [11836] "mention"           "ridiculous"        "bagginses"        
## [11839] "became"            "enslaved"          ""                 
## [11842] "frodo"             "shuddered"         ""                 
## [11845] ""                  ""                  ""                 
## [11848] "asked"             ""                  ""                 
## [11851] "want"              "slaves"            ""                 
## [11854] ""                  ""                  "tell"             
## [11857] "truth"             ""                  "replied"          
## [11860] "gandalf"           ""                  ""                 
## [11863] "believe"           "hitherto"          "hitherto"         
## [11866] "mark"              "entirely"          "overlooked"       
## [11869] "existence"         "hobbits"           "thankful"         
## [11872] "safety"            "passed"            "need"             
## [11875] "many"              "useful"            "servants"         
## [11878] "won"               ""                  "forget"           
## [11881] "hobbits"           "miserable"         "slaves"           
## [11884] "please"            "far"               "hobbits"          
## [11887] "happy"             "free"              "thing"            
## [11890] "malice"            "revenge"           ""                 
## [11893] ""                  "revenge"           ""                 
## [11896] "said"              "frodo"             ""                 
## [11899] "revenge"           "still"             "don"              
## [11902] ""                  "understand"        "bilbo"            
## [11905] "ring"              ""                  ""                 
## [11908] ""                  "everything"        ""                 
## [11911] ""                  "said"              "gandalf"          
## [11914] ""                  ""                  "know"             
## [11917] "real"              "peril"             "yet"              
## [11920] "shall"             "sure"              "last"             
## [11923] "time"              "come"              "speak"            
## [11926] "give"              "ring"              "moment"           
## [11929] ""                  "frodo"             "took"             
## [11932] "breeches"          "pocket"            "clasped"          
## [11935] "chain"             "hung"              "belt"             
## [11938] "unfastened"        "handed"            "slowly"           
## [11941] "wizard"            "felt"              "suddenly"         
## [11944] "heavy"             "either"            "frodo"            
## [11947] "way"               "reluctant"         "gandalf"          
## [11950] "touch"             "gandalf"           "held"             
## [11953] "looked"            "made"              "pure"             
## [11956] "solid"             "gold"              ""                 
## [11959] "can"               "see"               "markings"         
## [11962] ""                  ""                  "asked"            
## [11965] ""                  ""                  ""                 
## [11968] "said"              "frodo"             ""                 
## [11971] ""                  "none"              "quite"            
## [11974] "plain"             "never"             "shows"            
## [11977] "scratch"           "sign"              "wear"             
## [11980] ""                  ""                  "well"             
## [11983] "look"              ""                  "frodo"            
## [11986] ""                  "astonishment"      "distress"         
## [11989] "wizard"            "threw"             "suddenly"         
## [11992] "middle"            "glowing"           "corner"           
## [11995] "fire"              "frodo"             "gave"             
## [11998] "cry"               "groped"            "tongs"            
## [12001] "gandalf"           "held"              "back"             
## [12004] ""                  "wait"              ""                 
## [12007] "said"              "commanding"        "voice"            
## [12010] "giving"            "frodo"             "quick"            
## [12013] "look"              "bristling"         "brows"            
## [12016] "apparent"          "change"            "came"             
## [12019] "ring"              "gandalf"           "got"              
## [12022] "closed"            "shutters"          "outside"          
## [12025] "window"            "drew"              "curtains"         
## [12028] "room"              "became"            "dark"             
## [12031] "silent"            "though"            "clack"            
## [12034] "sam"               ""                  "shears"           
## [12037] "now"               "nearer"            "windows"          
## [12040] "still"             "heard"             "faintly"          
## [12043] "garden"            "moment"            "wizard"           
## [12046] "stood"             "looking"           "fire"             
## [12049] "stooped"           "removed"           "ring"             
## [12052] "hearth"            "tongs"             "picked"           
## [12055] "frodo"             "gasped"            "quite"            
## [12058] "cool"              ""                  "said"             
## [12061] "gandalf"           ""                  "take"             
## [12064] ""                  ""                  "frodo"            
## [12067] "received"          "shrinking"         "palm"             
## [12070] "seemed"            "become"            "thicker"          
## [12073] "heavier"           "ever"              ""                 
## [12076] "hold"              ""                  ""                 
## [12079] "said"              "gandalf"           ""                 
## [12082] ""                  "look"              "closely"          
## [12085] ""                  "frodo"             "now"              
## [12088] "saw"               "fine"              "lines"            
## [12091] "finer"             "finest"            "pen"              
## [12094] "strokes"           "running"           "along"            
## [12097] "ring"              "outside"           "inside"           
## [12100] "lines"             "fire"              "seemed"           
## [12103] "form"              "letters"           "flowing"          
## [12106] "script"            "shone"             "piercingly"       
## [12109] "bright"            "yet"               "remote"           
## [12112] "great"             "depth"             "read"             
## [12115] "fiery"             "letters"           ""                 
## [12118] "said"              "frodo"             "quavering"        
## [12121] "voice"             ""                  ""                 
## [12124] ""                  "said"              "gandalf"          
## [12127] ""                  ""                  "can"              
## [12130] "letters"           "elvish"            "ancient"          
## [12133] "mode"              "language"          "mordor"           
## [12136] "will"              "utter"             "common"           
## [12139] "tongue"            "said"              "close"            
## [12142] "enough"            "one"               "ring"             
## [12145] "rule"              "one"               "ring"             
## [12148] "find"              "one"               "ring"             
## [12151] "bring"             "darkness"          "bind"             
## [12154] "two"               "lines"             "verse"            
## [12157] "long"              "known"             "elven"            
## [12160] "lore"              "three"             "rings"            
## [12163] "elven"             "kings"             "sky"              
## [12166] "seven"             "dwarf"             "lords"            
## [12169] "halls"             "stone"             "nine"             
## [12172] "mortal"            "men"               "doomed"           
## [12175] "die"               "one"               "dark"             
## [12178] "lord"              "dark"              "throne"           
## [12181] "land"              "mordor"            "shadows"          
## [12184] "lie"               "one"               "ring"             
## [12187] "rule"              "one"               "ring"             
## [12190] "find"              "one"               "ring"             
## [12193] "bring"             "darkness"          "bind"             
## [12196] "land"              "mordor"            "shadows"          
## [12199] "lie"               ""                  "paused"           
## [12202] "said"              "slowly"            "deep"             
## [12205] "voice"             ""                  ""                 
## [12208] "master"            "ring"              "one"              
## [12211] "ring"              "rule"              "one"              
## [12214] "ring"              "lost"              "many"             
## [12217] "ages"              "ago"               "great"            
## [12220] "weakening"         "power"             "greatly"          
## [12223] "desires"           "must"              "get"              
## [12226] ""                  ""                  "frodo"            
## [12229] "sat"               "silent"            "motionless"       
## [12232] "fear"              "seemed"            "stretch"          
## [12235] "vast"              "hand"              "like"             
## [12238] "dark"              "cloud"             "rising"           
## [12241] "east"              "looming"           "engulf"           
## [12244] ""                  ""                  "ring"             
## [12247] ""                  "stammered"         ""                 
## [12250] ""                  "earth"             "come"             
## [12253] ""                  ""                  ""                 
## [12256] "ah"                ""                  "said"             
## [12259] "gandalf"           ""                  ""                 
## [12262] "long"              "story"             "beginnings"       
## [12265] "lie"               "back"              "black"            
## [12268] "years"             "lore"              "masters"          
## [12271] "now"               "remember"          "tell"             
## [12274] "tale"              "still"             "sitting"          
## [12277] "spring"            "passed"            "winter"           
## [12280] ""                  ""                  "last"             
## [12283] "night"             "told"              "sauron"           
## [12286] "great"             "dark"              "lord"             
## [12289] "rumours"           "heard"             "true"             
## [12292] "indeed"            "arisen"            "left"             
## [12295] "hold"              "mirkwood"          "returned"         
## [12298] "ancient"           "fastness"          "dark"             
## [12301] "tower"             "mordor"            "name"             
## [12304] "even"              "hobbits"           "heard"            
## [12307] "like"              "shadow"            "borders"          
## [12310] "old"               "stories"           "always"           
## [12313] "defeat"            "respite"           "shadow"           
## [12316] "takes"             "another"           "shape"            
## [12319] "grows"             ""                  ""                 
## [12322] ""                  ""                  "wish"             
## [12325] "need"              "happened"          "time"             
## [12328] ""                  "said"              "frodo"            
## [12331] ""                  ""                  ""                 
## [12334] ""                  "said"              "gandalf"          
## [12337] ""                  ""                  "live"             
## [12340] "see"               "times"             "decide"           
## [12343] "decide"            "time"              "given"            
## [12346] "us"                "already"           "frodo"            
## [12349] "time"              "beginning"         "look"             
## [12352] "black"             "enemy"             "fast"             
## [12355] "becoming"          "strong"            "plans"            
## [12358] "far"               "ripe"              "think"            
## [12361] "ripening"          "shall"             "hard"             
## [12364] "put"               "hard"              "put"              
## [12367] "even"              "dreadful"          "chance"           
## [12370] ""                  ""                  "enemy"            
## [12373] "still"             "lacks"             "one"              
## [12376] "thing"             "give"              "strength"         
## [12379] "knowledge"         "beat"              "resistance"       
## [12382] "break"             "last"              "defences"         
## [12385] "cover"             "lands"             "second"           
## [12388] "darkness"          "lacks"             "one"              
## [12391] "ring"              ""                  ""                 
## [12394] "three"             "fairest"           "elf"              
## [12397] "lords"             "hid"               "hand"             
## [12400] "never"             "touched"           "sullied"          
## [12403] "seven"             "dwarf"             "kings"            
## [12406] "possessed"         "three"             "recovered"        
## [12409] "others"            "dragons"           "consumed"         
## [12412] "nine"              "gave"              "mortal"           
## [12415] "men"               "proud"             "great"            
## [12418] "ensnared"          "long"              "ago"              
## [12421] "fell"              "dominion"          "one"              
## [12424] "became"            "ringwraiths"       "shadows"          
## [12427] "great"             "shadow"            "terrible"         
## [12430] "servants"          "long"              "ago"              
## [12433] "many"              "year"              "since"            
## [12436] "nine"              "walked"            "abroad"           
## [12439] "yet"               "knows"             "shadow"           
## [12442] "grows"             "may"               "walk"             
## [12445] "come"              "will"              "speak"            
## [12448] "things"            "even"              "morning"          
## [12451] "shire"             ""                  ""                 
## [12454] "now"               "nine"              "gathered"         
## [12457] "seven"             "also"              "else"             
## [12460] "destroyed"         "three"             "hidden"           
## [12463] "still"             "longer"            "troubles"         
## [12466] "needs"             "one"               "made"             
## [12469] "ring"              "let"               "great"            
## [12472] "part"              "former"            "power"            
## [12475] "pass"              "rule"              "others"           
## [12478] "recovers"          "will"              "command"          
## [12481] "wherever"          "even"              "three"            
## [12484] "wrought"           "will"              "laid"             
## [12487] "bare"              "will"              "stronger"         
## [12490] "ever"              ""                  ""                 
## [12493] "dreadful"          "chance"            "frodo"            
## [12496] "believed"          "one"               "perished"         
## [12499] "elves"             "destroyed"         "done"             
## [12502] "knows"             "now"               "perished"         
## [12505] "found"             "seeking"           "seeking"          
## [12508] "thought"           "bent"              "great"            
## [12511] "hope"              "great"             "fear"             
## [12514] ""                  ""                  ""                 
## [12517] "wasn"              ""                  "destroyed"        
## [12520] ""                  "cried"             "frodo"            
## [12523] ""                  ""                  "enemy"            
## [12526] "ever"              "come"              "lose"             
## [12529] "strong"            "precious"          ""                 
## [12532] ""                  "clutched"          "ring"             
## [12535] "hand"              "saw"               "already"          
## [12538] "dark"              "fingers"           "stretching"       
## [12541] "seize"             ""                  ""                 
## [12544] "taken"             ""                  ""                 
## [12547] "said"              "gandalf"           ""                 
## [12550] ""                  "strength"          "elves"            
## [12553] "resist"            "greater"           "long"             
## [12556] "ago"               "men"               "estranged"        
## [12559] "men"               "westernesse"       "came"             
## [12562] "aid"               "chapter"           "ancient"          
## [12565] "history"           "might"             "good"             
## [12568] "recall"            "sorrow"            "gathering"        
## [12571] "dark"              "great"             "valour"           
## [12574] "great"             "deeds"             "wholly"           
## [12577] "vain"              "one"               "day"              
## [12580] "perhaps"           "will"              "tell"             
## [12583] "tale"              "shall"             "hear"             
## [12586] "told"              "full"              "one"              
## [12589] "knows"             "best"              ""                 
## [12592] ""                  "moment"            "since"            
## [12595] "need"              "know"              "thing"            
## [12598] "came"              "will"              "tale"             
## [12601] "enough"            "will"              "say"              
## [12604] "gil"               "galad"             "elven"            
## [12607] "king"              "elendil"           "westernesse"      
## [12610] "overthrew"         "sauron"            "though"           
## [12613] "perished"          "deed"              "isildur"          
## [12616] "elendil"           ""                  "son"              
## [12619] "cut"               "ring"              "sauron"           
## [12622] ""                  "hand"              "took"             
## [12625] "sauron"            "vanquished"        "spirit"           
## [12628] "fled"              "hidden"            "long"             
## [12631] "years"             "shadow"            "took"             
## [12634] "shape"             "mirkwood"          ""                 
## [12637] ""                  "ring"              "lost"             
## [12640] "fell"              "great"             "river"            
## [12643] "anduin"            "vanished"          "isildur"          
## [12646] "marching"          "north"             "along"            
## [12649] "east"              "banks"             "river"            
## [12652] "near"              "gladden"           "fields"           
## [12655] "waylaid"           "orcs"              "mountains"        
## [12658] "almost"            "folk"              "slain"            
## [12661] "leaped"            "waters"            "ring"             
## [12664] "slipped"           "finger"            "swam"             
## [12667] "orcs"              "saw"               "killed"           
## [12670] "arrows"            ""                  "gandalf"          
## [12673] "paused"            ""                  ""                 
## [12676] "dark"              "pools"             "amid"             
## [12679] "gladden"           "fields"            ""                 
## [12682] "said"              ""                  ""                 
## [12685] "ring"              "passed"            "knowledge"        
## [12688] "legend"            "even"              "much"             
## [12691] "history"           "known"             "now"              
## [12694] "council"           "wise"              "discover"         
## [12697] "last"              "can"               "carry"            
## [12700] "story"             "think"             ""                 
## [12703] "long"              "still"             "long"             
## [12706] "ago"               "lived"             "banks"            
## [12709] "great"             "river"             "edge"             
## [12712] "wilderland"        "clever"            "handed"           
## [12715] "quiet"             "footed"            "little"           
## [12718] "people"            "guess"             "hobbit"           
## [12721] "kind"              "akin"              "fathers"          
## [12724] "fathers"           "stoors"            "loved"            
## [12727] "river"             "often"             "swam"             
## [12730] "made"              "little"            "boats"            
## [12733] "reeds"             "among"             "family"           
## [12736] "high"              "repute"            "large"            
## [12739] "wealthier"         "ruled"             "grandmother"      
## [12742] "folk"              "stern"             "wise"             
## [12745] "old"               "lore"              "inquisitive"      
## [12748] "curious"           "minded"            "family"           
## [12751] "called"            "sméagol"           "interested"       
## [12754] "roots"             "beginnings"        "dived"            
## [12757] "deep"              "pools"             "burrowed"         
## [12760] "trees"             "growing"           "plants"           
## [12763] "tunnelled"         "green"             "mounds"           
## [12766] "ceased"            "look"              "hill"             
## [12769] "tops"              "leaves"            "trees"            
## [12772] "flowers"           "opening"           "air"              
## [12775] "head"              "eyes"              "downward"         
## [12778] ""                  ""                  "friend"           
## [12781] "called"            "déagol"            "similar"          
## [12784] "sort"              "sharper"           "eyed"             
## [12787] "quick"             "strong"            "time"             
## [12790] "took"              "boat"              "went"             
## [12793] "gladden"           "fields"            "great"            
## [12796] "beds"              "iris"              "flowering"        
## [12799] "reeds"             "sméagol"           "got"              
## [12802] "went"              "nosing"            "banks"            
## [12805] "déagol"            "sat"               "boat"             
## [12808] "fished"            "suddenly"          "great"            
## [12811] "fish"              "took"              "hook"             
## [12814] "knew"              "dragged"           "water"            
## [12817] "bottom"            "let"               "go"               
## [12820] "line"              "thought"           "saw"              
## [12823] "something"         "shining"           "river"            
## [12826] "bed"               "holding"           "breath"           
## [12829] "grabbed"           ""                  ""                 
## [12832] "came"              "spluttering"       "weeds"            
## [12835] "hair"              "handful"           "mud"              
## [12838] "swam"              "bank"              "behold"           
## [12841] "washed"            "mud"               "away"             
## [12844] "hand"              "lay"               "beautiful"        
## [12847] "golden"            "ring"              "shone"            
## [12850] "glittered"         "sun"               "heart"            
## [12853] "glad"              "sméagol"           "watching"         
## [12856] "behind"            "tree"              "déagol"           
## [12859] "gloated"           "ring"              "sméagol"          
## [12862] "came"              "softly"            "behind"           
## [12865] ""                  ""                  "give"             
## [12868] "us"                "déagol"            "love"             
## [12871] ""                  "said"              "sméagol"          
## [12874] "friend"            ""                  "shoulder"         
## [12877] ""                  ""                  ""                 
## [12880] ""                  "said"              "déagol"           
## [12883] ""                  ""                  ""                 
## [12886] ""                  ""                  ""                 
## [12889] "birthday"          "love"              "wants"            
## [12892] ""                  ""                  "said"             
## [12895] "sméagol"           ""                  ""                 
## [12898] ""                  "don"               ""                 
## [12901] "care"              ""                  "said"             
## [12904] "déagol"            ""                  ""                 
## [12907] "given"             "present"           "already"          
## [12910] "afford"            "found"             ""                 
## [12913] ""                  "going"             "keep"             
## [12916] ""                  ""                  ""                 
## [12919] ""                  ""                  "oh"               
## [12922] "indeed"            "love"              ""                 
## [12925] "said"              "sméagol"           "caught"           
## [12928] "déagol"            "throat"            "strangled"        
## [12931] "gold"              "looked"            "bright"           
## [12934] "beautiful"         "put"               "ring"             
## [12937] "finger"            ""                  ""                 
## [12940] "one"               "ever"              "found"            
## [12943] "become"            "déagol"            "murdered"         
## [12946] "far"               "home"              "body"             
## [12949] "cunningly"         "hidden"            "sméagol"          
## [12952] "returned"          "alone"             "found"            
## [12955] "none"              "family"            "see"              
## [12958] "wearing"           "ring"              "pleased"          
## [12961] "discovery"         "concealed"         "used"             
## [12964] "find"              "secrets"           "put"              
## [12967] "knowledge"         "crooked"           "malicious"        
## [12970] "uses"              "became"            "sharp"            
## [12973] "eyed"              "keen"              "eared"            
## [12976] "hurtful"           "ring"              "given"            
## [12979] "power"             "according"         "stature"          
## [12982] "wondered"          "became"            "unpopular"        
## [12985] "shunned"           "visible"           "relations"        
## [12988] "kicked"            "bit"               "feet"             
## [12991] "took"              "thieving"          "going"            
## [12994] "muttering"         "gurgling"          "throat"           
## [12997] "called"            "gollum"            "cursed"           
## [13000] "told"              "go"                "far"              
## [13003] "away"              "grandmother"       "desiring"         
## [13006] "peace"             "expelled"          "family"           
## [13009] "turned"            "hole"              ""                 
## [13012] ""                  "wandered"          "loneliness"       
## [13015] "weeping"           "little"            "hardness"         
## [13018] "world"             "journeyed"         "river"            
## [13021] "till"              "came"              "stream"           
## [13024] "flowed"            "mountains"         "went"             
## [13027] "way"               "caught"            "fish"             
## [13030] "deep"              "pools"             "invisible"        
## [13033] "fingers"           "ate"               "raw"              
## [13036] "one"               "day"               "hot"              
## [13039] "bending"           "pool"              "felt"             
## [13042] "burning"           "back"              "head"             
## [13045] "dazzling"          "light"             "water"            
## [13048] "pained"            "wet"               "eyes"             
## [13051] "wondered"          "almost"            "forgotten"        
## [13054] "sun"               "last"              "time"             
## [13057] "looked"            "shook"             "fist"             
## [13060] ""                  ""                  "lowered"          
## [13063] "eyes"              "saw"               "far"              
## [13066] "tops"              "misty"             "mountains"        
## [13069] "stream"            "came"              "thought"          
## [13072] "suddenly"          ""                  ""                 
## [13075] "cool"              "shady"             "mountains"        
## [13078] "sun"               "watch"             "roots"            
## [13081] "mountains"         "must"              "roots"            
## [13084] "indeed"            "must"              "great"            
## [13087] "secrets"           "buried"            "discovered"       
## [13090] "since"             "beginning"         ""                 
## [13093] ""                  ""                  "journeyed"        
## [13096] "night"             "highlands"         "found"            
## [13099] "little"            "cave"              "dark"             
## [13102] "stream"            "ran"               "wormed"           
## [13105] "way"               "like"              "maggot"           
## [13108] "heart"             "hills"             "vanished"         
## [13111] "knowledge"         "ring"              "went"             
## [13114] "shadows"           "even"              "maker"            
## [13117] "power"             "begun"             "grow"             
## [13120] "learn"             "nothing"           ""                 
## [13123] ""                  ""                  "gollum"           
## [13126] ""                  "cried"             "frodo"            
## [13129] ""                  "gollum"            "mean"             
## [13132] "gollum"            "creature"          "bilbo"            
## [13135] "met"               "loathsome"         ""                 
## [13138] ""                  ""                  "think"            
## [13141] "sad"               "story"             ""                 
## [13144] "said"              "wizard"            ""                 
## [13147] ""                  "might"             "happened"         
## [13150] "others"            "even"              "hobbits"          
## [13153] "known"             ""                  ""                 
## [13156] ""                  "can"               ""                 
## [13159] "believe"           "gollum"            "connected"        
## [13162] "hobbits"           "however"           "distantly"        
## [13165] ""                  "said"              "frodo"            
## [13168] "heat"              ""                  ""                 
## [13171] "abominable"        "notion"            ""                 
## [13174] ""                  ""                  "true"             
## [13177] ""                  ""                  "replied"          
## [13180] "gandalf"           ""                  ""                 
## [13183] "origins"           "rate"              "know"             
## [13186] "hobbits"           "even"              "bilbo"            
## [13189] ""                  "story"             "suggests"         
## [13192] "kinship"           "great"             "deal"             
## [13195] "background"        "minds"             "memories"         
## [13198] "similar"           "understood"        "one"              
## [13201] "another"           "remarkably"        "well"             
## [13204] "much"              "better"            "hobbit"           
## [13207] "understand"        "say"               "dwarf"            
## [13210] "orc"               "even"              "elf"              
## [13213] "think"             "riddles"           "knew"             
## [13216] "one"               "thing"             ""                 
## [13219] ""                  "yes"               ""                 
## [13222] "said"              "frodo"             ""                 
## [13225] "though"            "folks"             "besides"          
## [13228] "hobbits"           "ask"               "riddles"          
## [13231] "much"              "sort"              "hobbits"          
## [13234] "don"               ""                  "cheat"            
## [13237] "gollum"            "meant"             "cheat"            
## [13240] "time"              "just"              "trying"           
## [13243] "put"               "poor"              "bilbo"            
## [13246] "guard"             "daresay"           "amused"           
## [13249] "wickedness"        "start"             "game"             
## [13252] "might"             "end"               "providing"        
## [13255] "easy"              "victim"            "lost"             
## [13258] "hurt"              ""                  ""                 
## [13261] ""                  ""                  "true"             
## [13264] "fear"              ""                  "said"             
## [13267] "gandalf"           ""                  ""                 
## [13270] "something"         "else"              "think"            
## [13273] "don"               ""                  "see"              
## [13276] "yet"               "even"              "gollum"           
## [13279] "wholly"            "ruined"            "proved"           
## [13282] "tougher"           "even"              "one"              
## [13285] "wise"              "guessed"           "hobbit"           
## [13288] "might"             "little"            "corner"           
## [13291] "mind"              "still"             "light"            
## [13294] "came"              "chink"             "dark"             
## [13297] "light"             "past"              "actually"         
## [13300] "pleasant"          "think"             "hear"             
## [13303] "kindly"            "voice"             "bringing"         
## [13306] "memories"          "wind"              "trees"            
## [13309] "sun"               "grass"             "forgotten"        
## [13312] "things"            ""                  ""                 
## [13315] "course"            "make"              "evil"             
## [13318] "part"              "angrier"           "end"              
## [13321] "unless"            "conquered"         "unless"           
## [13324] "cured"             ""                  "gandalf"          
## [13327] "sighed"            ""                  "alas"             
## [13330] "little"            "hope"              "yet"              
## [13333] "hope"              "though"            "possessed"        
## [13336] "ring"              "long"              "almost"           
## [13339] "far"               "back"              "can"              
## [13342] "remember"          "long"              "since"            
## [13345] "worn"              "much"              "black"            
## [13348] "darkness"          "seldom"            "needed"           
## [13351] "certainly"         "never"             ""                 
## [13354] "faded"             ""                  "thin"             
## [13357] "tough"             "still"             "thing"            
## [13360] "eating"            "mind"              "course"           
## [13363] "torment"           "become"            "almost"           
## [13366] "unbearable"        ""                  ""                 
## [13369] ""                  "great"             "secrets"          
## [13372] ""                  "mountains"         "turned"           
## [13375] "just"              "empty"             "night"            
## [13378] "nothing"           "find"              "nothing"          
## [13381] "worth"             "nasty"             "furtive"          
## [13384] "eating"            "resentful"         "remembering"      
## [13387] "altogether"        "wretched"          "hated"            
## [13390] "dark"              "hated"             "light"            
## [13393] "hated"             "everything"        "ring"             
## [13396] ""                  ""                  ""                 
## [13399] ""                  "mean"              ""                 
## [13402] "said"              "frodo"             ""                 
## [13405] "surely"            "ring"              "precious"         
## [13408] "thing"             "cared"             "hated"            
## [13411] "didn"              ""                  "get"              
## [13414] "rid"               "go"                "away"             
## [13417] "leave"             ""                  ""                 
## [13420] ""                  ""                  "begin"            
## [13423] "understand"        "frodo"             "heard"            
## [13426] ""                  "said"              "gandalf"          
## [13429] ""                  ""                  "hated"            
## [13432] "loved"             "hated"             "loved"            
## [13435] "get"               "rid"               "will"             
## [13438] "left"              "matter"            ""                 
## [13441] ""                  "ring"              "power"            
## [13444] "looks"             "frodo"             "may"              
## [13447] "slip"              "treacherously"     "keeper"           
## [13450] "never"             "abandons"          "plays"            
## [13453] "idea"              "handing"           "someone"          
## [13456] "else"              ""                  "care"             
## [13459] "early"             "stage"             "first"            
## [13462] "begins"            "grip"              "far"              
## [13465] "know"              "bilbo"             "alone"            
## [13468] "history"           "ever"              "gone"             
## [13471] "beyond"            "playing"           "really"           
## [13474] "done"              "needed"            "help"             
## [13477] "even"              "never"             "just"             
## [13480] "forsaken"          "cast"              "aside"            
## [13483] "gollum"            "frodo"             "ring"             
## [13486] "decided"           "things"            "ring"             
## [13489] "left"              ""                  ""                 
## [13492] ""                  ""                  "just"             
## [13495] "time"              "meet"              "bilbo"            
## [13498] ""                  "said"              "frodo"            
## [13501] ""                  "wouldn"            ""                 
## [13504] "orc"               "suited"            "better"           
## [13507] ""                  ""                  ""                 
## [13510] "laughing"          "matter"            ""                 
## [13513] "said"              "gandalf"           ""                 
## [13516] ""                  "strangest"         "event"            
## [13519] "whole"             "history"           "ring"             
## [13522] "far"               "bilbo"             ""                 
## [13525] "arrival"           "just"              "time"             
## [13528] "putting"           "hand"              "blindly"          
## [13531] "dark"              ""                  ""                 
## [13534] "one"               "power"             "work"             
## [13537] "frodo"             "ring"              "trying"           
## [13540] "get"               "back"              "master"           
## [13543] "slipped"           "isildur"           ""                 
## [13546] "hand"              "betrayed"          "chance"           
## [13549] "came"              "caught"            "poor"             
## [13552] "déagol"            "murdered"          "gollum"           
## [13555] "devoured"          "make"              "use"              
## [13558] "small"             "mean"              "long"             
## [13561] "stayed"            "never"             "leave"            
## [13564] "deep"              "pool"              "now"              
## [13567] "master"            "awake"             "sending"          
## [13570] "dark"              "thought"           "mirkwood"         
## [13573] "abandoned"         "gollum"            "picked"           
## [13576] "unlikely"          "person"            "imaginable"       
## [13579] "bilbo"             "shire"             ""                 
## [13582] "behind"            "something"         "else"             
## [13585] "work"              "beyond"            "design"           
## [13588] "ring"              "maker"             "can"              
## [13591] "put"               "plainer"           "saying"           
## [13594] "bilbo"             "meant"             "find"             
## [13597] "ring"              "maker"             "case"             
## [13600] "also"              "meant"             "maybe"            
## [13603] "encouraging"       "thought"           ""                 
## [13606] ""                  ""                  "said"             
## [13609] "frodo"             ""                  "though"           
## [13612] "sure"              "understand"        "learned"          
## [13615] "ring"              "gollum"            "really"           
## [13618] "know"              "just"              "guessing"         
## [13621] "still"             ""                  "gandalf"          
## [13624] "looked"            "frodo"             "eyes"             
## [13627] "glinted"           "knew"              "much"             
## [13630] "learned"           "much"              ""                 
## [13633] "answered"          ""                  ""                 
## [13636] "going"             "give"              "account"          
## [13639] "doings"            "history"           "elendil"          
## [13642] "isildur"           "one"               "ring"             
## [13645] "known"             "wise"              "ring"             
## [13648] "shown"             "one"               "ring"             
## [13651] "fire"              "writing"           "alone"            
## [13654] "apart"             "evidence"          ""                 
## [13657] ""                  ""                  "discover"         
## [13660] ""                  ""                  "asked"            
## [13663] "frodo"             "interrupting"      ""                 
## [13666] "just"              "now"               "room"             
## [13669] "course"            ""                  "answered"         
## [13672] "wizard"            "sharply"           ""                 
## [13675] ""                  "expected"          "find"             
## [13678] "come"              "back"              "dark"             
## [13681] "journeys"          "long"              "search"           
## [13684] "make"              "final"             "test"             
## [13687] "last"              "proof"             "now"              
## [13690] "clear"             "making"            "gollum"           
## [13693] ""                  "part"              "fitting"          
## [13696] "gap"               "history"           "required"         
## [13699] "thought"           "may"               "started"          
## [13702] "guesses"           "gollum"            "guessing"         
## [13705] "now"               "know"              "seen"             
## [13708] ""                  ""                  ""                 
## [13711] ""                  "seen"              "gollum"           
## [13714] ""                  "exclaimed"         "frodo"            
## [13717] "amazement"         ""                  "yes"              
## [13720] "obvious"           "thing"             "course"           
## [13723] "one"               "tried"             "long"             
## [13726] "ago"               "managed"           "last"             
## [13729] ""                  ""                  ""                 
## [13732] "happened"          "bilbo"             "escaped"          
## [13735] "know"              ""                  ""                 
## [13738] ""                  ""                  "clearly"          
## [13741] "told"              "gollum"            "willing"          
## [13744] "tell"              "though"            "course"           
## [13747] "way"               "reported"          "gollum"           
## [13750] "liar"              "sift"              "words"            
## [13753] "instance"          "called"            "ring"             
## [13756] ""                  "birthday"          "present"          
## [13759] ""                  "stuck"             "said"             
## [13762] "came"              "grandmother"       "lots"             
## [13765] "beautiful"         "things"            "kind"             
## [13768] "ridiculous"        "story"             "doubt"            
## [13771] "sméagols"          "grandmother"       "matriarch"        
## [13774] "great"             "person"            "way"              
## [13777] "talk"              "possessing"        "many"             
## [13780] "elven"             "rings"             "absurd"           
## [13783] "giving"            "away"              "lie"              
## [13786] "lie"               "grain"             "truth"            
## [13789] ""                  ""                  "murder"           
## [13792] "déagol"            "haunted"           "gollum"           
## [13795] "made"              "defence"           "repeating"        
## [13798] ""                  "precious"          ""                 
## [13801] "gnawed"            "bones"             "dark"             
## [13804] "almost"            "believed"          "birthday"         
## [13807] "déagol"            "given"             "ring"             
## [13810] "previously"        "turned"            "just"             
## [13813] "present"           "birthday"          "present"          
## [13816] "endured"           "long"              "truth"            
## [13819] "desperately"       "important"         "end"              
## [13822] "harsh"             "put"               "fear"             
## [13825] "fire"              "wrung"             "true"             
## [13828] "story"             "bit"               "bit"              
## [13831] "together"          "much"              "snivelling"       
## [13834] "snarling"          "thought"           "misunderstood"    
## [13837] "ill"               "used"              "last"             
## [13840] "told"              "history"           "far"              
## [13843] "end"               "riddle"            "game"             
## [13846] "bilbo"             ""                  "escape"           
## [13849] "say"               "except"            "dark"             
## [13852] "hints"             "fear"              "greater"          
## [13855] "mine"              "muttered"          "going"            
## [13858] "gel"               "back"              "people"           
## [13861] "see"               "stand"             "kicked"           
## [13864] "driven"            "hole"              "robbed"           
## [13867] "gollum"            "good"              "friends"          
## [13870] "now"               "good"              "friends"          
## [13873] "strong"            "help"              "baggins"          
## [13876] "pay"               "chief"             "thought"          
## [13879] "hated"             "bilbo"             "cursed"           
## [13882] "name"              "knew"              "came"             
## [13885] ""                  ""                  ""                 
## [13888] ""                  "find"              ""                 
## [13891] ""                  "asked"             "frodo"            
## [13894] ""                  "well"              "name"             
## [13897] "bilbo"             "foolishly"         "told"             
## [13900] "gollum"            "difficult"         "discover"         
## [13903] "country"           "gollum"            "came"             
## [13906] "oh"                "yes"               "came"             
## [13909] "longing"           "ring"              "proved"           
## [13912] "stronger"          "fear"              "orcs"             
## [13915] "even"              "light"             "year"             
## [13918] "two"               "left"              "mountains"        
## [13921] "see"               "though"            "still"            
## [13924] "bound"             "desire"            "ring"             
## [13927] "longer"            "devouring"         "began"            
## [13930] "revive"            "little"            "felt"             
## [13933] "old"               "terribly"          "old"              
## [13936] "yet"               "less"              "timid"            
## [13939] "mortally"          "hungry"            ""                 
## [13942] "light"             "light"             "sun"              
## [13945] "moon"              "still"             "feared"           
## [13948] "hated"             "always"            "will"             
## [13951] "think"             "cunning"           "found"            
## [13954] "hide"              "daylight"          "moonshine"        
## [13957] "make"              "way"               "swiftly"          
## [13960] "softly"            "dead"              "night"            
## [13963] "pale"              "cold"              "eyes"             
## [13966] "catch"             "small"             "frightened"       
## [13969] "unwary"            "things"            "grew"             
## [13972] "stronger"          "bolder"            "new"              
## [13975] "food"              "new"               "air"              
## [13978] "found"             "way"               "mirkwood"         
## [13981] "one"               "expect"            ""                 
## [13984] ""                  ""                  "found"            
## [13987] ""                  ""                  "asked"            
## [13990] "frodo"             ""                  ""                 
## [13993] "saw"               ""                  ""                 
## [13996] "answered"          "gandalf"           ""                 
## [13999] ""                  "wandered"          "far"              
## [14002] "following"         "bilbo"             ""                 
## [14005] "trail"             "difficult"         "learn"            
## [14008] "anything"          "certain"           "talk"             
## [14011] "constantly"        "interrupted"       "curses"           
## [14014] "threats"           ""                  ""                 
## [14017] "got"               "pocketses"         ""                 
## [14020] "said"              ""                  ""                 
## [14023] "wouldn"            ""                  "say"              
## [14026] "precious"          "little"            "cheat"            
## [14029] "fair"              "question"          "cheated"          
## [14032] "first"             "broke"             "rules"            
## [14035] "squeezed"          "yes"               "precious"         
## [14038] "will"              "precious"          ""                 
## [14041] ""                  ""                  "sample"           
## [14044] "talk"              "don"               ""                 
## [14047] "suppose"           "want"              "weary"            
## [14050] "days"              "hints"             "dropped"          
## [14053] "among"             "snarls"            "even"             
## [14056] "gathered"          "padding"           "feet"             
## [14059] "taken"             "last"              "esgaroth"         
## [14062] "even"              "streets"           "dale"             
## [14065] "listening"         "secretly"          "peering"          
## [14068] "well"              "news"              "great"            
## [14071] "events"            "went"              "far"              
## [14074] "wide"              "wilderland"        "many"             
## [14077] "heard"             "bilbo"             ""                 
## [14080] "name"              "knew"              "came"             
## [14083] "made"              "secret"            "return"           
## [14086] "journey"           "home"              "west"             
## [14089] "gollum"            ""                  "sharp"            
## [14092] "ears"              "soon"              "learn"            
## [14095] "wanted"            ""                  ""                 
## [14098] ""                  "didn"              ""                 
## [14101] "track"             "bilbo"             ""                 
## [14104] ""                  "asked"             "frodo"            
## [14107] ""                  ""                  "didn"             
## [14110] ""                  "come"              "shire"            
## [14113] ""                  ""                  "ah"               
## [14116] ""                  "said"              "gandalf"          
## [14119] ""                  "now"               "come"             
## [14122] "think"             "gollum"            "tried"            
## [14125] "set"               "came"              "back"             
## [14128] "westward"          "far"               "great"            
## [14131] "river"             "turned"            "aside"            
## [14134] "daunted"           "distance"          "sure"             
## [14137] "something"         "else"              "drew"             
## [14140] "away"              "friends"           "think"            
## [14143] "hunted"            ""                  ""                 
## [14146] "wood"              "elves"             "tracked"          
## [14149] "first"             "easy"              "task"             
## [14152] "trail"             "still"             "fresh"            
## [14155] "mirkwood"          "back"              "led"              
## [14158] "though"            "never"             "caught"           
## [14161] "wood"              "full"              "rumour"           
## [14164] "dreadful"          "tales"             "even"             
## [14167] "among"             "beasts"            "birds"            
## [14170] "woodmen"           "said"              "new"              
## [14173] "terror"            "abroad"            "ghost"            
## [14176] "drank"             "blood"             "climbed"          
## [14179] "trees"             "find"              "nests"            
## [14182] "crept"             "holes"             "find"             
## [14185] "young"             "slipped"           "windows"          
## [14188] "find"              "cradles"           ""                 
## [14191] ""                  "western"           "edge"             
## [14194] "mirkwood"          "trail"             "turned"           
## [14197] "away"              "wandered"          "southwards"       
## [14200] "passed"            "wood"              "elves"            
## [14203] ""                  "ken"               "lost"             
## [14206] "made"              "great"             "mistake"          
## [14209] "yes"               "frodo"             "first"            
## [14212] "though"            "fear"              "may"              
## [14215] "prove"             "worst"             "let"              
## [14218] "matter"            "let"               "go"               
## [14221] "much"              "else"              "think"            
## [14224] "time"              "still"             "trusted"          
## [14227] "lore"              "saruman"           ""                 
## [14230] "well"              "years"             "ago"              
## [14233] "paid"              "since"             "many"             
## [14236] "dark"              "dangerous"         "days"             
## [14239] "trail"             "long"              "cold"             
## [14242] "took"              "bilbo"             "left"             
## [14245] "search"            "vain"              "help"             
## [14248] "friend"            "aragorn"           "greatest"         
## [14251] "traveller"         "huntsman"          "age"              
## [14254] "world"             "together"          "sought"           
## [14257] "gollum"            "whole"             "length"           
## [14260] "wilderland"        "without"           "hope"             
## [14263] "without"           "success"           "last"             
## [14266] "given"             "chase"             "turned"           
## [14269] "parts"             "gollum"            "found"            
## [14272] "friend"            "returned"          "great"            
## [14275] "perils"            "bringing"          "miserable"        
## [14278] "creature"          ""                  ""                 
## [14281] "say"               "wept"              "called"           
## [14284] "us"                "cruel"             "many"             
## [14287] "gollum"            "throat"            "pressed"          
## [14290] "whined"            "cringed"           "rubbed"           
## [14293] "long"              "hands"             "licking"          
## [14296] "fingers"           "pained"            "remembered"       
## [14299] "old"               "torture"           "afraid"           
## [14302] "possible"          "doubt"             "made"             
## [14305] "slow"              "sneaking"          "way"              
## [14308] "step"              "step"              "mile"             
## [14311] "mile"              "south"             "last"             
## [14314] "land"              "mordor"            ""                 
## [14317] "heavy"             "silence"           "fell"             
## [14320] "room"              "frodo"             "hear"             
## [14323] "heart"             "beating"           "even"             
## [14326] "outside"           "everything"        "seemed"           
## [14329] "still"             "sound"             "sam"              
## [14332] ""                  "shears"            "now"              
## [14335] "heard"             ""                  "yes"              
## [14338] "mordor"            ""                  "said"             
## [14341] "gandalf"           ""                  "alas"             
## [14344] "mordor"            "draws"             "wicked"           
## [14347] "things"            "dark"              "power"            
## [14350] "bending"           "will"              "gather"           
## [14353] "ring"              "enemy"             "leave"            
## [14356] "mark"              "leave"             "open"             
## [14359] "summons"           "folk"              "whispering"       
## [14362] "new"               "shadow"            "south"            
## [14365] "hatred"            "west"              "fine"             
## [14368] "new"               "friends"           "help"             
## [14371] "revenge"           ""                  "wretched"         
## [14374] "fool"              "land"              "learn"            
## [14377] "much"              "much"              "comfort"          
## [14380] "sooner"            "later"             "lurked"           
## [14383] "pried"             "borders"           "caught"           
## [14386] "taken"             "examination"       "way"              
## [14389] "fear"              "found"             "already"          
## [14392] "long"              "way"               "back"             
## [14395] "errand"            "mischief"          "matter"           
## [14398] "much"              "now"               "worst"            
## [14401] "mischief"          "done"              ""                 
## [14404] "yes"               "alas"              "enemy"            
## [14407] "learned"           "one"               "found"            
## [14410] "knows"             "isildur"           "fell"             
## [14413] "knows"             "gollum"            "found"            
## [14416] "ring"              "knows"             "great"            
## [14419] "ring"              "gave"              "long"             
## [14422] "life"              "knows"             "one"              
## [14425] "three"             "never"             "lost"             
## [14428] "endure"            "evil"              "knows"            
## [14431] "one"               "seven"             "nine"             
## [14434] "accounted"         "knows"             "one"              
## [14437] "last"              "heard"             "think"            
## [14440] "hobbits"           "shire"             ""                 
## [14443] ""                  "shire"             "may"              
## [14446] "seeking"           "now"               "already"          
## [14449] "found"             "lies"              "indeed"           
## [14452] "frodo"             "fear"              "may"              
## [14455] "even"              "think"             "long"             
## [14458] "unnoticed"         "name"              "baggins"          
## [14461] "become"            "important"         ""                 
## [14464] ""                  ""                  "terrible"         
## [14467] ""                  "cried"             "frodo"            
## [14470] ""                  "far"               "worse"            
## [14473] "worst"             "imagined"          "hints"            
## [14476] "warnings"          "gandalf"           "best"             
## [14479] "friends"           "now"               "really"           
## [14482] "afraid"            "pity"              "bilbo"            
## [14485] "stab"              "vile"              "creature"         
## [14488] "chance"            ""                  ""                 
## [14491] "pity"              "pity"              "stayed"           
## [14494] "hand"              "pity"              "mercy"            
## [14497] "strike"            "without"           "need"             
## [14500] "well"              "rewarded"          "frodo"            
## [14503] "sure"              "took"              "little"           
## [14506] "hurt"              "evil"              "escaped"          
## [14509] "end"               "began"             "ownership"        
## [14512] "ring"              "pity"              ""                 
## [14515] ""                  ""                  "sorry"            
## [14518] ""                  "said"              "frodo"            
## [14521] ""                  ""                  "frightened"       
## [14524] "feel"              "pity"              "gollum"           
## [14527] ""                  ""                  ""                 
## [14530] "seen"              ""                  ""                 
## [14533] "gandalf"           "broke"             ""                 
## [14536] ""                  "don"               ""                 
## [14539] "want"              ""                  ""                 
## [14542] "said"              "frodo"             "can"              
## [14545] ""                  "understand"        "mean"             
## [14548] "say"               "elves"             "let"              
## [14551] "live"              "horrible"          "deeds"            
## [14554] "now"               "rate"              "bad"              
## [14557] "orc"               "just"              "enemy"            
## [14560] "deserves"          "death"             ""                 
## [14563] ""                  "deserves"          "daresay"          
## [14566] "many"              "live"              "deserve"          
## [14569] "death"             "die"               "deserve"          
## [14572] "life"              "can"               "give"             
## [14575] "eager"             "deal"              "death"            
## [14578] "judgement"         "even"              "wise"             
## [14581] "see"               "ends"              "much"             
## [14584] "hope"              "gollum"            "can"              
## [14587] "cured"             "dies"              "chance"           
## [14590] "bound"             "fate"              "ring"             
## [14593] "heart"             "tells"             "part"             
## [14596] "play"              "yet"               "good"             
## [14599] "ill"               "end"               "comes"            
## [14602] "pity"              "bilbo"             "may"              
## [14605] "rule"              "fate"              "many"             
## [14608] "least"             "case"              "kill"             
## [14611] "old"               "wretched"          "wood"             
## [14614] "elves"             "prison"            "treat"            
## [14617] "kindness"          "can"               "find"             
## [14620] "wise"              "hearts"            ""                 
## [14623] ""                  ""                  ""                 
## [14626] ""                  "said"              "frodo"            
## [14629] ""                  "even"              "bilbo"            
## [14632] "kill"              "gollum"            "wish"             
## [14635] "kept"              "ring"              "wish"             
## [14638] "never"             "found"             "got"              
## [14641] "let"               "keep"              "didn"             
## [14644] ""                  "make"              "throw"            
## [14647] "away"              "destroy"           ""                 
## [14650] ""                  ""                  "let"              
## [14653] "make"              ""                  ""                 
## [14656] "said"              "wizard"            ""                 
## [14659] "haven"             ""                  "listening"        
## [14662] "said"              "thinking"          "saying"           
## [14665] "throwing"          "away"              "obviously"        
## [14668] "wrong"             "rings"             "way"              
## [14671] "found"             "evil"              "hands"            
## [14674] "might"             "done"              "great"            
## [14677] "evil"              "worst"             "might"            
## [14680] "fallen"            "hands"             "enemy"            
## [14683] "indeed"            "certainly"         "one"              
## [14686] "exerting"          "power"             "find"             
## [14689] "draw"              ""                  ""                 
## [14692] "course"            "dear"              "frodo"            
## [14695] "dangerous"         "troubled"          "deeply"           
## [14698] "much"              "stake"             "take"             
## [14701] "risk"              "though"            "even"             
## [14704] "far"               "away"              "never"            
## [14707] "day"               "shire"             "guarded"          
## [14710] "watchful"          "eyes"              "long"             
## [14713] "never"             "used"              "think"            
## [14716] "ring"              "lasting"           "effect"           
## [14719] "evil"              "rate"              "long"             
## [14722] "time"              "must"              "remember"         
## [14725] "nine"              "years"             "ago"              
## [14728] "last"              "saw"               "still"            
## [14731] "knew"              "little"            "certain"          
## [14734] ""                  ""                  ""                 
## [14737] "destroy"           "say"               "done"             
## [14740] "long"              "ago"               ""                 
## [14743] "cried"             "frodo"             "warned"           
## [14746] "even"              "sent"              "message"          
## [14749] "done"              "away"              ""                 
## [14752] ""                  ""                  ""                 
## [14755] "ever"              "tried"             ""                 
## [14758] ""                  ""                  "suppose"          
## [14761] "one"               "hammer"            "melt"             
## [14764] ""                  ""                  ""                 
## [14767] "try"               ""                  "said"             
## [14770] "gandalf"           "try"               "now"              
## [14773] ""                  "frodo"             "drew"             
## [14776] "ring"              "pocket"            "looked"           
## [14779] "now"               "appeared"          "plain"            
## [14782] "smooth"            "without"           "mark"             
## [14785] "device"            "see"               "gold"             
## [14788] "looked"            "fair"              "pure"             
## [14791] "frodo"             "thought"           "rich"             
## [14794] "beautiful"         "colour"            "perfect"          
## [14797] "roundness"         "admirable"         "thing"            
## [14800] "altogether"        "precious"          "took"             
## [14803] "intended"          "fling"             "hottest"          
## [14806] "part"              "fire"              "found"            
## [14809] "now"               "without"           "great"            
## [14812] "struggle"          "weighed"           "ring"             
## [14815] "hand"              "hesitating"        "forcing"          
## [14818] "remember"          "gandalf"           "told"             
## [14821] "effort"            "will"              "made"             
## [14824] "movement"          "cast"              "away"             
## [14827] "found"             "put"               "back"             
## [14830] "pocket"            "gandalf"           "laughed"          
## [14833] "grimly"            ""                  ""                 
## [14836] "see"               "already"           "frodo"            
## [14839] "easily"            "let"               "go"               
## [14842] "will"              "damage"            ""                 
## [14845] "make"              ""                  "except"           
## [14848] "force"             "break"             "mind"             
## [14851] "breaking"          "ring"              "force"            
## [14854] "useless"           "even"              "took"             
## [14857] "struck"            "heavy"             "sledge"           
## [14860] "hammer"            "make"              "dint"             
## [14863] "unmade"            "hands"             "mine"             
## [14866] ""                  ""                  "small"            
## [14869] "fire"              "course"            "melt"             
## [14872] "even"              "ordinary"          "gold"             
## [14875] "ring"              "already"           "passed"           
## [14878] "unscathed"         "even"              "unheated"         
## [14881] "smith"             ""                  "forge"            
## [14884] "shire"             "change"            "even"             
## [14887] "anvils"            "furnaces"          "dwarves"          
## [14890] "said"              "dragon"            "fire"             
## [14893] "melt"              "consume"           "rings"            
## [14896] "power"             "now"               "dragon"           
## [14899] "left"              "earth"             "old"              
## [14902] "fire"              "hot"               "enough"           
## [14905] "ever"              "dragon"            "even"             
## [14908] "ancalagon"         "black"             "harmed"           
## [14911] "one"               "ring"              "ruling"           
## [14914] "ring"              "made"              "sauron"           
## [14917] "one"               "way"               "find"             
## [14920] "cracks"            "doom"              "depths"           
## [14923] "orodruin"          "fire"              "mountain"         
## [14926] "cast"              "ring"              "really"           
## [14929] "wish"              "destroy"           "put"              
## [14932] "beyond"            "grasp"             "enemy"            
## [14935] "ever"              ""                  ""                 
## [14938] ""                  "really"            "wish"             
## [14941] "destroy"           ""                  ""                 
## [14944] "cried"             "frodo"             ""                 
## [14947] ""                  "well"              "destroyed"        
## [14950] "made"              "perilous"          "quests"           
## [14953] "wish"              "never"             "seen"             
## [14956] "ring"              "come"              "chosen"           
## [14959] ""                  ""                  ""                 
## [14962] "questions"         "answered"          ""                 
## [14965] "said"              "gandalf"           ""                 
## [14968] ""                  "may"               "sure"             
## [14971] "merit"             "others"            "possess"          
## [14974] "power"             "wisdom"            "rate"             
## [14977] "chosen"            "must"              "therefore"        
## [14980] "use"               "strength"          "heart"            
## [14983] "wits"              ""                  ""                 
## [14986] ""                  ""                  "little"           
## [14989] "things"            "wise"              "powerful"         
## [14992] "will"              "take"              "ring"             
## [14995] ""                  ""                  ""                 
## [14998] ""                  "cried"             "gandalf"          
## [15001] "springing"         "feet"              ""                 
## [15004] ""                  "power"             "power"            
## [15007] "great"             "terrible"          "ring"             
## [15010] "gain"              "power"             "still"            
## [15013] "greater"           "deadly"            ""                 
## [15016] "eyes"              "flashed"           "face"             
## [15019] "lit"               "fire"              "within"           
## [15022] ""                  ""                  "tempt"            
## [15025] "wish"              "become"            "like"             
## [15028] "dark"              "lord"              "yet"              
## [15031] "way"               "ring"              "heart"            
## [15034] "pity"              "pity"              "weakness"         
## [15037] "desire"            "strength"          "good"             
## [15040] "tempt"             "dare"              "take"             
## [15043] "even"              "keep"              "safe"             
## [15046] "unused"            "wish"              "wield"            
## [15049] "great"             "strength"          "shall"            
## [15052] "need"              "great"             "perils"           
## [15055] "lie"               ""                  ""                 
## [15058] "went"              "window"            "drew"             
## [15061] "aside"             "curtains"          "shutters"         
## [15064] "sunlight"          "streamed"          "back"             
## [15067] "room"              "sam"               "passed"           
## [15070] "along"             "path"              "outside"          
## [15073] "whistling"         ""                  ""                 
## [15076] "now"               ""                  "said"             
## [15079] "wizard"            "turning"           "back"             
## [15082] "frodo"             ""                  ""                 
## [15085] "decision"          "lies"              "will"             
## [15088] "always"            "help"              ""                 
## [15091] ""                  "laid"              "hand"             
## [15094] "frodo"             ""                  "shoulder"         
## [15097] ""                  ""                  "will"             
## [15100] "help"              "bear"              "burden"           
## [15103] "long"              "bear"              "must"             
## [15106] "something"         "soon"              "enemy"            
## [15109] "moving"            ""                  "long"             
## [15112] "silence"           "gandalf"           "sat"              
## [15115] "puffed"            "pipe"              "lost"             
## [15118] "thought"           "eyes"              "seemed"           
## [15121] "closed"            "lids"              "watching"         
## [15124] "frodo"             "intently"          "frodo"            
## [15127] "gazed"             "fixedly"           "red"              
## [15130] "embers"            "hearth"            "filled"           
## [15133] "vision"            "seemed"            "looking"          
## [15136] "profound"          "wells"             "fire"             
## [15139] "thinking"          "fabled"            "cracks"           
## [15142] "doom"              "terror"            "fiery"            
## [15145] "mountain"          ""                  "well"             
## [15148] ""                  "said"              "gandalf"          
## [15151] "last"              ""                  ""                 
## [15154] "thinking"          "decided"           ""                 
## [15157] ""                  ""                  ""                 
## [15160] ""                  "answered"          "frodo"            
## [15163] "coming"            "back"              "darkness"         
## [15166] "finding"           "surprise"          "dark"             
## [15169] "window"            "see"               "sunlit"           
## [15172] "garden"            ""                  ""                 
## [15175] "perhaps"           "yes"               "far"              
## [15178] "understand"        "said"              "suppose"          
## [15181] "must"              "keep"              "ring"             
## [15184] "guard"             "least"             "present"          
## [15187] "whatever"          "may"               ""                 
## [15190] ""                  ""                  "whatever"         
## [15193] "may"               "will"              "slow"             
## [15196] "slow"              "evil"              "keep"             
## [15199] "purpose"           ""                  "said"             
## [15202] "gandalf"           ""                  ""                 
## [15205] "hope"              ""                  ""                 
## [15208] "said"              "frodo"             ""                 
## [15211] ""                  "hope"              "may"              
## [15214] "find"              "better"            "keeper"           
## [15217] "soon"              "meanwhile"         "seems"            
## [15220] "danger"            "danger"            "live"             
## [15223] "near"              "keep"              "ring"             
## [15226] "stay"              "leave"             "bag"              
## [15229] "end"               "leave"             "shire"            
## [15232] "leave"             "everything"        "go"               
## [15235] "away"              ""                  "sighed"           
## [15238] ""                  ""                  "like"             
## [15241] "save"              "shire"             "though"           
## [15244] "times"             "thought"           "inhabitants"      
## [15247] "stupid"            "dull"              "words"            
## [15250] "felt"              "earthquake"        "invasion"         
## [15253] "dragons"           "might"             "good"             
## [15256] "don"               ""                  "feel"             
## [15259] "like"              "now"               "feel"             
## [15262] "long"              "shire"             "lies"             
## [15265] "behind"            "safe"              "comfortable"      
## [15268] "shall"             "find"              "wandering"        
## [15271] "bearable"          "shall"             "know"             
## [15274] "somewhere"         "firm"              "foothold"         
## [15277] "even"              "feet"              "stand"            
## [15280] ""                  ""                  "course"           
## [15283] "sometimes"         "thought"           "going"            
## [15286] "away"              "imagined"          "kind"             
## [15289] "holiday"           "series"            "adventures"       
## [15292] "like"              "bilbo"             ""                 
## [15295] "better"            "ending"            "peace"            
## [15298] "mean"              "exile"             "flight"           
## [15301] "danger"            "danger"            "drawing"          
## [15304] "suppose"           "must"              "go"               
## [15307] "alone"             "save"              "shire"            
## [15310] "feel"              "small"             "uprooted"         
## [15313] "well"              "desperate"         "enemy"            
## [15316] "strong"            "terrible"          ""                 
## [15319] "tell"              "gandalf"           "speaking"         
## [15322] "great"             "desire"            "follow"           
## [15325] "bilbo"             "flamed"            "heart"            
## [15328] "follow"            "bilbo"             "even"             
## [15331] "perhaps"           "find"              "strong"           
## [15334] "overcame"          "fear"              "almost"           
## [15337] "run"               "road"              "without"          
## [15340] "hat"               "bilbo"             "done"             
## [15343] "similar"           "morning"           "long"             
## [15346] "ago"               ""                  ""                 
## [15349] "dear"              "frodo"             ""                 
## [15352] "exclaimed"         "gandalf"           ""                 
## [15355] "hobbits"           "really"            "amazing"          
## [15358] "creatures"         "said"              "can"              
## [15361] "learn"             "know"              "ways"             
## [15364] "month"             "yet"               "hundred"          
## [15367] "years"             "can"               "still"            
## [15370] "surprise"          "pinch"             "hardly"           
## [15373] "expected"          "get"               "answer"           
## [15376] "even"              "bilbo"             "made"             
## [15379] "mistake"           "choosing"          "heir"             
## [15382] "though"            "little"            "thought"          
## [15385] "important"         "prove"             "afraid"           
## [15388] "right"             "ring"              "will"             
## [15391] "able"              "stay"              "hidden"           
## [15394] "shire"             "much"              "longer"           
## [15397] "sake"              "well"              "others"           
## [15400] "will"              "go"                "leave"            
## [15403] "name"              "baggins"           "behind"           
## [15406] "name"              "will"              "safe"             
## [15409] "outside"           "shire"             "wild"             
## [15412] "will"              "give"              "travelling"       
## [15415] "name"              "now"               "go"               
## [15418] "go"                "mr"                "underhill"        
## [15421] ""                  ""                  "don"              
## [15424] ""                  "think"             "need"             
## [15427] "go"                "alone"             "know"             
## [15430] "anyone"            "can"               "trust"            
## [15433] "willing"           "go"                "side"             
## [15436] "willing"           "take"              "unknown"          
## [15439] "perils"            "look"              "companion"        
## [15442] "careful"           "choosing"          "careful"          
## [15445] "say"               "even"              "closest"          
## [15448] "friends"           "enemy"             "many"             
## [15451] "spies"             "many"              "ways"             
## [15454] "hearing"           ""                  "suddenly"         
## [15457] "stopped"           "listening"         "frodo"            
## [15460] "became"            "aware"             "quiet"            
## [15463] "inside"            "outside"           "gandalf"          
## [15466] "crept"             "one"               "side"             
## [15469] "window"            "dart"              "sprang"           
## [15472] "sill"              "thrust"            "long"             
## [15475] "arm"               "downwards"         "squawk"           
## [15478] "came"              "sam"               "gamgee"           
## [15481] ""                  "curly"             "head"             
## [15484] "hauled"            "one"               "ear"              
## [15487] ""                  "well"              "well"             
## [15490] "bless"             "beard"             ""                 
## [15493] "said"              "gandalf"           ""                 
## [15496] "sam"               "gamgee"            "now"              
## [15499] "may"               ""                  ""                 
## [15502] ""                  "lor"               "bless"            
## [15505] "mr"                "gandalf"           "sir"              
## [15508] ""                  "said"              "sam"              
## [15511] ""                  "nothing"           "leastways"        
## [15514] "just"              "trimming"          "grass"            
## [15517] "border"            "window"            "follow"           
## [15520] ""                  ""                  "picked"           
## [15523] "shears"            "exhibited"         "evidence"         
## [15526] ""                  ""                  "don"              
## [15529] ""                  ""                  ""                 
## [15532] "said"              "gandalf"           "grimly"           
## [15535] "time"              "since"             "last"             
## [15538] "heard"             "sound"             "shears"           
## [15541] "long"              "eavesdropping"     ""                 
## [15544] ""                  "eavesdropping"     "sir"              
## [15547] "don"               ""                  "follow"           
## [15550] "begging"           "pardon"            "ain"              
## [15553] ""                  "eaves"             "bag"              
## [15556] "end"               ""                  ""                 
## [15559] "fact"              ""                  ""                 
## [15562] "don"               ""                  "fool"             
## [15565] "heard"             "listen"            ""                 
## [15568] "gandalf"           ""                  "eyes"             
## [15571] "flashed"           "brows"             "stuck"            
## [15574] "like"              "bristles"          ""                 
## [15577] "mr"                "frodo"             "sir"              
## [15580] ""                  "cried"             "sam"              
## [15583] "quaking"           ""                  "don"              
## [15586] ""                  "let"               "hurt"             
## [15589] "sir"               "don"               ""                 
## [15592] "let"               "turn"              "anything"         
## [15595] "unnatural"         "old"               "dad"              
## [15598] "take"              "meant"             "harm"             
## [15601] "honour"            "sir"               ""                 
## [15604] ""                  ""                  "won"              
## [15607] ""                  "hurt"              ""                 
## [15610] ""                  "said"              "frodo"            
## [15613] "hardly"            "able"              "keep"             
## [15616] "laughing"          "although"          "startled"         
## [15619] "rather"            "puzzled"           ""                 
## [15622] ""                  "knows"             "well"             
## [15625] "mean"              "harm"              "just"             
## [15628] "answer"            "questions"         "straight"         
## [15631] "away"              ""                  ""                 
## [15634] "well"              "sir"               ""                 
## [15637] "said"              "sam"               "dithering"        
## [15640] "little"            ""                  ""                 
## [15643] "heard"             "deal"              "didn"             
## [15646] ""                  "rightly"           "understand"       
## [15649] "enemy"             "rings"             "mr"               
## [15652] "bilbo"             "sir"               "dragons"          
## [15655] "fiery"             "mountain"          "elves"            
## [15658] "sir"               "listened"          "couldn"           
## [15661] ""                  "help"              "know"             
## [15664] "mean"              "lor"               "bless"            
## [15667] "sir"               "love"              "tales"            
## [15670] "sort"              "believe"           "whatever"         
## [15673] "ted"               "may"               "say"              
## [15676] "elves"             "sir"               "dearly"           
## [15679] "love"              "see"               "couldn"           
## [15682] ""                  "take"              "see"              
## [15685] "elves"             "sir"               "go"               
## [15688] ""                  "suddenly"          "gandalf"          
## [15691] "laughed"           ""                  "come"             
## [15694] "inside"            ""                  "shouted"          
## [15697] "putting"           "arms"              "lifted"           
## [15700] "astonished"        "sam"               "shears"           
## [15703] "grass"             "clippings"         "right"            
## [15706] "window"            "stood"             "floor"            
## [15709] ""                  "take"              "see"              
## [15712] "elves"             "eh"                ""                 
## [15715] "said"              "eyeing"            "sam"              
## [15718] "closely"           "smile"             "flickering"       
## [15721] "face"              ""                  ""                 
## [15724] "heard"             "mr"                "frodo"            
## [15727] "going"             "away"              ""                 
## [15730] ""                  ""                  "sir"              
## [15733] ""                  ""                  "choked"           
## [15736] "heard"             "seemingly"         "tried"            
## [15739] "sir"               "burst"             "upset"            
## [15742] ""                  ""                  ""                 
## [15745] "can"               ""                  "helped"           
## [15748] "sam"               ""                  "said"             
## [15751] "frodo"             "sadly"             "suddenly"         
## [15754] "realized"          "flying"            "shire"            
## [15757] "mean"              "painful"           "partings"         
## [15760] "merely"            "saying"            "farewell"         
## [15763] "familiar"          "comforts"          "bag"              
## [15766] "end"               ""                  ""                 
## [15769] "shall"             "go"                ""                 
## [15772] ""                  "looked"            "hard"             
## [15775] "sam"               ""                  ""                 
## [15778] "really"            "care"              "will"             
## [15781] "keep"              "dead"              "secret"           
## [15784] "see"               "don"               ""                 
## [15787] "even"              "breathe"           "word"             
## [15790] ""                  "ve"                "heard"            
## [15793] "hope"              "gandalf"           "will"             
## [15796] "turn"              "spotted"           "toad"             
## [15799] "fill"              "garden"            "full"             
## [15802] "grass"             "snakes"            ""                 
## [15805] "sam"               "fell"              "knees"            
## [15808] "trembling"         ""                  "get"              
## [15811] "sam"               ""                  "said"             
## [15814] "gandalf"           "thought"           "something"        
## [15817] "better"            "something"         "shut"             
## [15820] "mouth"             "punish"            "properly"         
## [15823] "listening"         "shall"             "go"               
## [15826] "away"              "mr"                "frodo"            
## [15829] ""                  ""                  ""                 
## [15832] "sir"               ""                  "cried"            
## [15835] "sam"               "springing"         "like"             
## [15838] "dog"               "invited"           "walk"             
## [15841] ""                  ""                  "go"               
## [15844] "see"               "elves"             "hooray"           
## [15847] ""                  "shouted"           "burst"            
## [15850] "tears"             "chapter"           "three"            
## [15853] "company"           ""                  ""                 
## [15856] "go"                "quietly"           "go"               
## [15859] "soon"              ""                  "said"             
## [15862] "gandalf"           "two"               "three"            
## [15865] "weeks"             "passed"            "still"            
## [15868] "frodo"             "made"              "sign"             
## [15871] "getting"           "ready"             "go"               
## [15874] ""                  ""                  "know"             
## [15877] "difficult"         ""                  ""                 
## [15880] "objected"          "just"              "vanish"           
## [15883] "like"              "bilbo"             "tale"             
## [15886] "will"              "shire"             "time"             
## [15889] ""                  ""                  ""                 
## [15892] "course"            "mustn"             ""                 
## [15895] "vanish"            ""                  "said"             
## [15898] "gandalf"           ""                  ""                 
## [15901] "wouldn"            ""                  "said"             
## [15904] "soon"              "instantly"         "can"              
## [15907] "think"             "way"               "slipping"         
## [15910] "shire"             "without"           "generally"        
## [15913] "known"             "will"              "worth"            
## [15916] "little"            "delay"             "must"             
## [15919] "delay"             "long"              ""                 
## [15922] ""                  ""                  "autumn"           
## [15925] "birthday"          ""                  "asked"            
## [15928] "frodo"             ""                  ""                 
## [15931] "think"             "probably"          "make"             
## [15934] "arrangements"      ""                  ""                 
## [15937] "tell"              "truth"             "reluctant"        
## [15940] "start"             "now"               "come"             
## [15943] "point"             "bag"               "end"              
## [15946] "seemed"            "desirable"         "residence"        
## [15949] "years"             "wanted"            "savour"           
## [15952] "much"              "last"              "summer"           
## [15955] "shire"             "autumn"            "came"             
## [15958] "knew"              "part"              "least"            
## [15961] "heart"             "think"             "kindly"           
## [15964] "journeying"        "always"            "season"           
## [15967] "indeed"            "privately"         "made"             
## [15970] "mind"              "leave"             "fiftieth"         
## [15973] "birthday"          "bilbo"             ""                 
## [15976] "one"               "hundred"           "twenty"           
## [15979] "eighth"            "seemed"            "somehow"          
## [15982] "proper"            "day"               "set"              
## [15985] "follow"            "following"         "bilbo"            
## [15988] "uppermost"         "mind"              "one"              
## [15991] "thing"             "made"              "thought"          
## [15994] "leaving"           "bearable"          "thought"          
## [15997] "little"            "possible"          "ring"             
## [16000] "might"             "lead"              "end"              
## [16003] "tell"              "thoughts"          "gandalf"          
## [16006] "wizard"            "guessed"           "always"           
## [16009] "difficult"         "tell"              "looked"           
## [16012] "frodo"             "smiled"            ""                 
## [16015] ""                  "well"              ""                 
## [16018] "said"              ""                  ""                 
## [16021] "think"             "will"              "must"             
## [16024] "later"             "getting"           "anxious"          
## [16027] "mean"              "take"              "care"             
## [16030] "don"               ""                  "let"              
## [16033] "hint"              "going"             "see"              
## [16036] "sam"               "gamgee"            "talk"             
## [16039] "really"            "shall"             "turn"             
## [16042] "toad"              ""                  ""                 
## [16045] ""                  "going"             ""                 
## [16048] "said"              "frodo"             ""                 
## [16051] ""                  "difficult"         "give"             
## [16054] "away"              "clear"             "idea"             
## [16057] "yet"               ""                  ""                 
## [16060] "don"               ""                  "absurd"           
## [16063] ""                  "said"              "gandalf"          
## [16066] ""                  ""                  "warning"          
## [16069] "leaving"           "address"           "post"             
## [16072] "office"            "leaving"           "shire"            
## [16075] "known"             "far"               "away"             
## [16078] "must"              "go"                "least"            
## [16081] "set"               "either"            "north"            
## [16084] "south"             "west"              "east"             
## [16087] "direction"         "certainly"         "known"            
## [16090] ""                  ""                  ""                 
## [16093] "taken"             "thoughts"          "leaving"          
## [16096] "bag"               "end"               "saying"           
## [16099] "farewell"          "never"             "even"             
## [16102] "considered"        "direction"         ""                 
## [16105] "said"              "frodo"             ""                 
## [16108] ""                  "go"                "shall"            
## [16111] "steer"             "quest"             "bilbo"            
## [16114] "went"              "find"              "treasure"         
## [16117] "back"              "go"                "lose"             
## [16120] "one"               "return"            "far"              
## [16123] "can"               "see"               ""                 
## [16126] ""                  ""                  "see"              
## [16129] "far"               ""                  "said"             
## [16132] "gandalf"           ""                  "neither"          
## [16135] "can"               "may"               "task"             
## [16138] "find"              "cracks"            "doom"             
## [16141] "quest"             "may"               "others"           
## [16144] "know"              "rate"              "ready"            
## [16147] "long"              "road"              "yet"              
## [16150] ""                  ""                  ""                 
## [16153] "indeed"            ""                  "said"             
## [16156] "frodo"             ""                  ""                 
## [16159] "meantime"          "course"            "lake"             
## [16162] ""                  ""                  "towards"          
## [16165] "danger"            "rashly"            "straight"         
## [16168] ""                  "answered"          "wizard"           
## [16171] ""                  ""                  "want"             
## [16174] "advice"            "make"              "rivendell"        
## [16177] "journey"           "prove"             "perilous"         
## [16180] "though"            "road"              "less"             
## [16183] "easy"              "will"              "grow"             
## [16186] "worse"             "year"              "fails"            
## [16189] ""                  ""                  "rivendell"        
## [16192] ""                  "said"              "frodo"            
## [16195] ""                  ""                  "good"             
## [16198] "will"              "go"                "east"             
## [16201] "will"              "make"              "rivendell"        
## [16204] "will"              "take"              "sam"              
## [16207] "visit"             "elves"             "will"             
## [16210] "delighted"         ""                  "spoke"            
## [16213] "lightly"           "heart"             "moved"            
## [16216] "suddenly"          "desire"            "see"              
## [16219] "house"             "elrond"            "halfelven"        
## [16222] "breathe"           "air"               "deep"             
## [16225] "valley"            "many"              "fair"             
## [16228] "folk"              "still"             "dwelt"            
## [16231] "peace"             "one"               "summer"           
## [16234] ""                  "evening"           "astonishing"      
## [16237] "piece"             "news"              "reached"          
## [16240] "ivy"               "bush"              "green"            
## [16243] "dragon"            "giants"            "portents"         
## [16246] "borders"           "shire"             "forgotten"        
## [16249] "important"         "matters"           "mr"               
## [16252] "frodo"             "selling"           "bag"              
## [16255] "end"               "indeed"            "already"          
## [16258] "sold"              "sackville"         "bagginses"        
## [16261] ""                  ""                  "nice"             
## [16264] "bit"               "loo"               ""                 
## [16267] "said"              ""                  ""                 
## [16270] "bargain"           "price"             ""                 
## [16273] "said"              "others"            ""                 
## [16276] ""                  ""                  ""                 
## [16279] "likely"            "mistress"          "lobelia"          
## [16282] ""                  "buyer"             ""                 
## [16285] "otho"              "died"              "years"            
## [16288] "ripe"              "disappointed"      "age"              
## [16291] "just"              "mr"                "frodo"            
## [16294] "selling"           "beautiful"         "hole"             
## [16297] "even"              "debatable"         "price"            
## [16300] "held"              "theory"            "supported"        
## [16303] "nods"              "hints"             "mr"               
## [16306] "baggins"           "frodo"             ""                 
## [16309] "money"             "running"           "going"            
## [16312] "leave"             "hobbiton"          "live"             
## [16315] "quiet"             "way"               "proceeds"         
## [16318] "sale"              "buckland"          "among"            
## [16321] "brandybuck"        "relations"         ""                 
## [16324] ""                  "far"               "sackville"        
## [16327] "bagginses"         "may"               ""                 
## [16330] ""                  "added"             "firmly"           
## [16333] "fixed"             "notion"            "immeasurable"     
## [16336] "wealth"            "bagginses"         "bag"              
## [16339] "end"               "become"            "found"            
## [16342] "hard"              "believe"           "harder"           
## [16345] "reason"            "unreason"          "fancy"            
## [16348] "suggest"           "suggested"         "dark"             
## [16351] "yet"               "unrevealed"        "plot"             
## [16354] "gandalf"           "though"            "kept"             
## [16357] "quiet"             "go"                "day"              
## [16360] "well"              "known"             ""                 
## [16363] "hiding"            "bag"               "end"              
## [16366] ""                  "however"           "removal"          
## [16369] "might"             "fit"               "designs"          
## [16372] "wizardry"          "doubt"             "fact"             
## [16375] "frodo"             "baggins"           "going"            
## [16378] "back"              "buckland"          ""                 
## [16381] "yes"               "shall"             "moving"           
## [16384] "autumn"            ""                  "said"             
## [16387] ""                  "merry"             "brandybuck"       
## [16390] "looking"           "nice"              "little"           
## [16393] "hole"              "perhaps"           "small"            
## [16396] "house"             ""                  "matter"           
## [16399] "fact"              "merry"             ""                 
## [16402] "help"              "already"           "chosen"           
## [16405] "bought"            "little"            "house"            
## [16408] "crickhollow"       "country"           "beyond"           
## [16411] "bucklebury"        "sam"               "pretended"        
## [16414] "going"             "settle"            "permanently"      
## [16417] "decision"          "set"               "eastwards"        
## [16420] "suggested"         "idea"              "buckland"         
## [16423] "eastern"           "borders"           "shire"            
## [16426] "lived"             "childhood"         "going"            
## [16429] "back"              "least"             "seem"             
## [16432] "credible"          "gandalf"           "stayed"           
## [16435] "shire"             "two"               "months"           
## [16438] "one"               "evening"           "end"              
## [16441] "june"              "soon"              "frodo"            
## [16444] ""                  "plan"              "finally"          
## [16447] "arranged"          "suddenly"          "announced"        
## [16450] "going"             "next"              "morning"          
## [16453] ""                  ""                  "short"            
## [16456] "hope"              ""                  "said"             
## [16459] ""                  ""                  "going"            
## [16462] "beyond"            "southern"          "borders"          
## [16465] "get"               "news"              "can"              
## [16468] "idle"              "longer"            ""                 
## [16471] ""                  "spoke"             "lightly"          
## [16474] "seemed"            "frodo"             "looked"           
## [16477] "rather"            "worried"           ""                 
## [16480] ""                  "anything"          "happened"         
## [16483] ""                  "asked"             ""                 
## [16486] "well"              "heard"             "something"        
## [16489] "made"              "anxious"           "needs"            
## [16492] "looking"           "think"             "necessary"        
## [16495] "get"               "shall"             "come"             
## [16498] "back"              "immediately"       "least"            
## [16501] "send"              "word"              "meanwhile"        
## [16504] "stick"             "plan"              "careful"          
## [16507] "ever"              "especially"        "ring"             
## [16510] "let"               "impress"           "don"              
## [16513] ""                  "use"               ""                 
## [16516] ""                  "went"              "dawn"             
## [16519] ""                  ""                  "may"              
## [16522] "back"              "day"               ""                 
## [16525] "said"              ""                  ""                 
## [16528] "latest"            "shall"             "come"             
## [16531] "back"              "farewell"          "party"            
## [16534] "think"             "may"               "need"             
## [16537] "company"           "road"              ""                 
## [16540] "first"             "frodo"             "good"             
## [16543] "deal"              "disturbed"         "wondered"         
## [16546] "often"             "gandalf"           "heard"            
## [16549] "uneasiness"        "wore"              "fine"             
## [16552] "weather"           "forgot"            "troubles"         
## [16555] "shire"             "seldom"            "seen"             
## [16558] "fair"              "summer"            "rich"             
## [16561] "autumn"            "trees"             "laden"            
## [16564] "apples"            "honey"             "dripping"         
## [16567] "combs"             "corn"              "tall"             
## [16570] "full"              "autumn"            "well"             
## [16573] "way"               "frodo"             "began"            
## [16576] "worry"             "gandalf"           "september"        
## [16579] "passing"           "still"             "news"             
## [16582] "birthday"          "removal"           "drew"             
## [16585] "nearer"            "still"             "come"             
## [16588] "send"              "word"              "bag"              
## [16591] "end"               "began"             "busy"             
## [16594] "frodo"             ""                  "friends"          
## [16597] "came"              "stay"              "help"             
## [16600] "packing"           "fredegar"          "bolger"           
## [16603] "folco"             "boffin"            "course"           
## [16606] "special"           "friends"           "pippin"           
## [16609] "took"              "merry"             "brandybuck"       
## [16612] "turned"            "whole"             "place"            
## [16615] "upside"            "september"         "th"               
## [16618] "two"               "covered"           "carts"            
## [16621] "went"              "laden"             "buckland"         
## [16624] "conveying"         "furniture"         "goods"            
## [16627] "frodo"             "sold"              "new"              
## [16630] "home"              "way"               "brandywine"       
## [16633] "bridge"            "next"              "day"              
## [16636] "frodo"             "became"            "really"           
## [16639] "anxious"           "kept"              "constant"         
## [16642] "look"              "gandalf"           "thursday"         
## [16645] "birthday"          "morning"           "dawned"           
## [16648] "fair"              "clear"             "long"             
## [16651] "ago"               "bilbo"             ""                 
## [16654] "great"             "party"             "still"            
## [16657] "gandalf"           "appear"            "evening"          
## [16660] "frodo"             "gave"              "farewell"         
## [16663] "feast"             "quite"             "small"            
## [16666] "just"              "dinner"            "four"             
## [16669] "helpers"           "troubled"          "fell"             
## [16672] "mood"              "thought"           "soon"             
## [16675] "part"              "young"             "friends"          
## [16678] "weighed"           "heart"             "wondered"         
## [16681] "break"             "four"              "younger"          
## [16684] "hobbits"           "however"           "high"             
## [16687] "spirits"           "party"             "soon"             
## [16690] "became"            "cheerful"          "spite"            
## [16693] "gandalf"           ""                  "absence"          
## [16696] "dining"            "room"              "bare"             
## [16699] "except"            "table"             "chairs"           
## [16702] "food"              "good"              "good"             
## [16705] "wine"              "frodo"             ""                 
## [16708] "wine"              "included"          "sale"             
## [16711] "sackville"         "bagginses"         ""                 
## [16714] "whatever"          "happens"           "rest"             
## [16717] "stuff"             "bs"                "get"              
## [16720] "claws"             "rate"              "found"            
## [16723] "good"              "home"              ""                 
## [16726] ""                  "said"              "frodo"            
## [16729] "drained"           "glass"             "last"             
## [16732] "drop"              "old"               "winyards"         
## [16735] "sung"              "many"              "songs"            
## [16738] "talked"            "many"              "things"           
## [16741] "done"              "together"          "toasted"          
## [16744] "bilbo"             ""                  "birthday"         
## [16747] "drank"             "health"            "frodo"            
## [16750] ""                  "together"          "according"        
## [16753] "frodo"             ""                  "custom"           
## [16756] "went"              "sniff"             "air"              
## [16759] "glimpse"           "stars"             "went"             
## [16762] "bed"               "frodo"             ""                 
## [16765] "party"             "gandalf"           "come"             
## [16768] "next"              "morning"           "busy"             
## [16771] "packing"           "another"           "cart"             
## [16774] "remainder"         "luggage"           "merry"            
## [16777] "took"              "charge"            "drove"            
## [16780] "fatty"             "fredegar"          "bolger"           
## [16783] ""                  "someone"           "must"             
## [16786] "get"               "warm"              "house"            
## [16789] "arrive"            ""                  "said"             
## [16792] "merry"             ""                  "well"             
## [16795] "see"               "later"             "day"              
## [16798] "tomorrow"          "don"               ""                 
## [16801] "go"                "sleep"             "way"              
## [16804] ""                  "folco"             "went"             
## [16807] "home"              "lunch"             "pippin"           
## [16810] "remained"          "behind"            "frodo"            
## [16813] "restless"          "anxious"           "listening"        
## [16816] "vain"              "sound"             "gandalf"          
## [16819] "decided"           "wait"              "nightfall"        
## [16822] "gandalf"           "wanted"            "urgently"         
## [16825] "go"                "crickhollow"       "might"            
## [16828] "even"              "get"               "first"            
## [16831] "frodo"             "going"             "foot"             
## [16834] "plan"              "pleasure"          "last"             
## [16837] "look"              "shire"             "much"             
## [16840] "reason"            "walk"              "hobbiton"         
## [16843] "bucklebury"        "ferry"             "taking"           
## [16846] "fairly"            "easy"              ""                 
## [16849] ""                  "shall"             "get"              
## [16852] "bit"               "training"          ""                 
## [16855] ""                  "said"              "looking"          
## [16858] "dusty"             "mirror"            "half"             
## [16861] "empty"             "hall"              "done"             
## [16864] "strenuous"         "walking"           "long"             
## [16867] "time"              "reflection"        "looked"           
## [16870] "rather"            "flabby"            "thought"          
## [16873] "lunch"             "sackville"         "bagginses"        
## [16876] "lobelia"           "sandy"             "haired"           
## [16879] "son"               "lotho"             "turned"           
## [16882] "much"              "frodo"             ""                 
## [16885] "annoyance"         ""                  ""                 
## [16888] "last"              ""                  "said"             
## [16891] "lobelia"           "stepped"           "inside"           
## [16894] "polite"            "strictly"          "true"             
## [16897] "sale"              "bag"               "end"              
## [16900] "take"              "effect"            "midnight"         
## [16903] "lobelia"           "can"               "perhaps"          
## [16906] "forgiven"          "obliged"           "wait"             
## [16909] "seventy"           "seven"             "years"            
## [16912] "longer"            "bag"               "end"              
## [16915] "hoped"             "now"               "hundred"          
## [16918] "years"             "old"               "anyway"           
## [16921] "come"              "see"               "nothing"          
## [16924] "paid"              "carried"           "wanted"           
## [16927] "keys"              "took"              "long"             
## [16930] "satisfy"           "brought"           "complete"         
## [16933] "inventory"         "went"              "right"            
## [16936] "end"               "departed"          "lotho"            
## [16939] "spare"             "key"               "promise"          
## [16942] "key"               "left"              "gamgees"          
## [16945] ""                  "bagshot"           "row"              
## [16948] "snorted"           "showed"            "plainly"          
## [16951] "thought"           "gamgees"           "capable"          
## [16954] "plundering"        "hole"              "night"            
## [16957] "frodo"             "offer"             "tea"              
## [16960] "took"              "tea"               "pippin"           
## [16963] "sam"               "gamgee"            "kitchen"          
## [16966] "officially"        "announced"         "sam"              
## [16969] "coming"            "buckland"          ""                 
## [16972] ""                  "mr"                "frodo"            
## [16975] "look"              "bit"               "garden"           
## [16978] ""                  "arrangement"       "approved"         
## [16981] "gaffer"            "though"            "console"          
## [16984] "prospect"          "lobelia"           "neighbour"        
## [16987] ""                  ""                  "last"             
## [16990] "meal"              "bag"               "end"              
## [16993] ""                  "said"              "frodo"            
## [16996] "pushing"           "back"              "chair"            
## [16999] "left"              "washing"           "lobelia"          
## [17002] "pippin"            "sam"               "strapped"         
## [17005] "three"             "packs"             "piled"            
## [17008] "porch"             "pippin"            "went"             
## [17011] "last"              "stroll"            "garden"           
## [17014] "sam"               "disappeared"       "sun"              
## [17017] "went"              "bag"               "end"              
## [17020] "seemed"            "sad"               "gloomy"           
## [17023] "dishevelled"       "frodo"             "wandered"         
## [17026] "round"             "familiar"          "rooms"            
## [17029] "saw"               "light"             "sunset"           
## [17032] "fade"              "walls"             "shadows"          
## [17035] "creep"             "corners"           "grew"             
## [17038] "slowly"            "dark"              "indoors"          
## [17041] "went"              "walked"            "gate"             
## [17044] "bottom"            "path"              "short"            
## [17047] "way"               "hill"              "road"             
## [17050] "half"              "expected"          "see"              
## [17053] "gandalf"           "come"              "striding"         
## [17056] "dusk"              "sky"               "clear"            
## [17059] "stars"             "growing"           "bright"           
## [17062] ""                  ""                  ""                 
## [17065] "going"             "fine"              "night"            
## [17068] ""                  "said"              "aloud"            
## [17071] ""                  ""                  ""                 
## [17074] "good"              "beginning"         "feel"             
## [17077] "like"              "walking"           "can"              
## [17080] ""                  "bear"              "hanging"          
## [17083] "going"             "start"             "gandalf"          
## [17086] "must"              "follow"            ""                 
## [17089] ""                  "turned"            "go"               
## [17092] "back"              "slopped"           "heard"            
## [17095] "voices"            "just"              "round"            
## [17098] "corner"            "end"               "bagshot"          
## [17101] "row"               "one"               "voice"            
## [17104] "certainly"         "old"               "gaffer"           
## [17107] ""                  "strange"           "somehow"          
## [17110] "unpleasant"        "make"              "said"             
## [17113] "heard"             "gaffer"            ""                 
## [17116] "answers"           "rather"            "shrill"           
## [17119] "old"               "man"               "seemed"           
## [17122] "put"               ""                  ""                 
## [17125] "mr"                "baggins"           "gone"             
## [17128] "away"              "went"              "morning"          
## [17131] "sam"               "went"              "anyway"           
## [17134] "stuff"             "went"              "yes"              
## [17137] "sold"              "gone"              "tell"             
## [17140] "ee"                ""                  ""                 
## [17143] "none"              "business"          "ain"              
## [17146] ""                  "secret"            ""                 
## [17149] ""                  "moved"             "bucklebury"       
## [17152] "place"             "away"              "yonder"           
## [17155] "yes"               "tidy"              "way"              
## [17158] ""                  "ve"                "never"            
## [17161] "far"               ""                  "re"               
## [17164] "queer"             "folks"             "buckland"         
## [17167] "can"               ""                  "give"             
## [17170] "message"           "good"              "night"            
## [17173] ""                  ""                  "footsteps"        
## [17176] "went"              "away"              "hill"             
## [17179] "frodo"             "wondered"          "vaguely"          
## [17182] "fact"              "come"              "hill"             
## [17185] "seemed"            "great"             "relief"           
## [17188] ""                  ""                  "sick"             
## [17191] "questions"         "curiosity"         "doings"           
## [17194] "suppose"           ""                  "thought"          
## [17197] ""                  ""                  "inquisitive"      
## [17200] "lot"               ""                  ""                 
## [17203] "half"              "mind"              "go"               
## [17206] "ask"               "gaffer"            "inquirer"         
## [17209] "thought"           "better"            "worse"            
## [17212] "turned"            "walked"            "quickly"          
## [17215] "back"              "bag"               "end"              
## [17218] "pippin"            "sitting"           "pack"             
## [17221] "porch"             "sam"               "frodo"            
## [17224] "stepped"           "inside"            "dark"             
## [17227] "door"              ""                  "sam"              
## [17230] ""                  "called"            ""                 
## [17233] "sam"               "time"              ""                 
## [17236] ""                  "coming"            "sir"              
## [17239] ""                  "came"              "answer"           
## [17242] "far"               "within"            "followed"         
## [17245] "soon"              "sam"               "wiping"           
## [17248] "mouth"             "saying"            "farewell"         
## [17251] "beer"              "barrel"            "cellar"           
## [17254] ""                  ""                  "aboard"           
## [17257] "sam"               ""                  "said"             
## [17260] "frodo"             ""                  "yes"              
## [17263] "sir"               ""                  "ll"               
## [17266] "last"              "bit"               "now"              
## [17269] "sir"               ""                  "frodo"            
## [17272] "shut"              "locked"            "round"            
## [17275] "door"              "gave"              "key"              
## [17278] "sam"               ""                  "run"              
## [17281] "home"              "sam"               ""                 
## [17284] "said"              ""                  ""                 
## [17287] "cut"               "along"             "row"              
## [17290] "meet"              "us"                "quick"            
## [17293] "can"               "gate"              "lane"             
## [17296] "beyond"            "meadows"           "going"            
## [17299] "village"           "tonight"           "many"             
## [17302] "ears"              "pricking"          "eyes"             
## [17305] "prying"            ""                  "sam"              
## [17308] "ran"               "full"              "speed"            
## [17311] ""                  "well"              "now"              
## [17314] ""                  "re"                "last"             
## [17317] ""                  "said"              "frodo"            
## [17320] "shouldered"        "packs"             "took"             
## [17323] "sticks"            "walked"            "round"            
## [17326] "corner"            "west"              "side"             
## [17329] "bag"               "end"               ""                 
## [17332] "good"              "bye"               ""                 
## [17335] "said"              "frodo"             "looking"          
## [17338] "dark"              "blank"             "windows"          
## [17341] "waved"             "hand"              "turned"           
## [17344] "following"         "bilbo"             "known"            
## [17347] "hurried"           "peregrin"          "garden"           
## [17350] "path"              "jumped"            "low"              
## [17353] "place"             "hedge"             "bottom"           
## [17356] "took"              "fields"            "passing"          
## [17359] "darkness"          "like"              "rustle"           
## [17362] "grasses"           "bottom"            "hill"             
## [17365] "western"           "side"              "came"             
## [17368] "gate"              "opening"           "narrow"           
## [17371] "lane"              "halted"            "adjusted"         
## [17374] "straps"            "packs"             "presently"        
## [17377] "sam"               "appeared"          "trotting"         
## [17380] "quickly"           "breathing"         "hard"             
## [17383] "heavy"             "pack"              "hoisted"          
## [17386] "high"              "shoulders"         "put"              
## [17389] "head"              "tall"              "shapeless"        
## [17392] "fell"              "bag"               "called"           
## [17395] "hat"               "gloom"             "looked"           
## [17398] "much"              "like"              "dwarf"            
## [17401] ""                  ""                  "sure"             
## [17404] "given"             "heaviest"          "stuff"            
## [17407] ""                  "said"              "frodo"            
## [17410] ""                  ""                  "pity"             
## [17413] "snails"            "carry"             "homes"            
## [17416] "backs"             ""                  ""                 
## [17419] ""                  "take"              "lot"              
## [17422] "yet"               "sir"               "packet"           
## [17425] "quite"             "light"             ""                 
## [17428] "said"              "sam"               "stoutly"          
## [17431] "untruthfully"      ""                  ""                 
## [17434] "don"               ""                  "sam"              
## [17437] ""                  "said"              "pippin"           
## [17440] ""                  ""                  "good"             
## [17443] ""                  ""                  "got"              
## [17446] "nothing"           "except"            "ordered"          
## [17449] "us"                "pack"              ""                 
## [17452] ""                  "slack"             "lately"           
## [17455] ""                  "ll"                "feel"             
## [17458] "weight"            "less"              ""                 
## [17461] ""                  "walked"            ""                 
## [17464] ""                  ""                  ""                 
## [17467] "kind"              "poor"              "old"              
## [17470] "hobbit"            ""                  "laughed"          
## [17473] "frodo"             ""                  ""                 
## [17476] "shall"             "thin"              "willow"           
## [17479] "wand"              ""                  ""                 
## [17482] "sure"              "get"               "buckland"         
## [17485] "talking"           "nonsense"          "suspect"          
## [17488] "taken"             "share"             "sam"              
## [17491] "shall"             "look"              "next"             
## [17494] "packing"           ""                  "picked"           
## [17497] "stick"             ""                  "well"             
## [17500] "like"              "walking"           "dark"             
## [17503] ""                  "said"              ""                 
## [17506] ""                  "let"               ""                 
## [17509] "put"               "miles"             "behind"           
## [17512] "us"                "bed"               ""                 
## [17515] "short"             "way"               "followed"         
## [17518] "lane"              "westwards"         "leaving"          
## [17521] "turned"            "left"              "took"             
## [17524] "quietly"           "fields"            "went"             
## [17527] "single"            "file"              "along"            
## [17530] "hedgerows"         "borders"           "coppices"         
## [17533] "night"             "fell"              "dark"             
## [17536] "dark"              "cloaks"            "invisible"        
## [17539] "magic"             "rings"             "since"            
## [17542] "hobbits"           "trying"            "silent"           
## [17545] "made"              "noise"             "even"             
## [17548] "hobbits"           "hear"              "even"             
## [17551] "wild"              "things"            "fields"           
## [17554] "woods"             "hardly"            "noticed"          
## [17557] "passing"           "time"              "crossed"          
## [17560] "water"             "west"              "hobbiton"         
## [17563] "narrow"            "plank"             "bridge"           
## [17566] "stream"            "winding"           "black"            
## [17569] "ribbon"            "bordered"          "leaning"          
## [17572] "alder"             "trees"             "mile"             
## [17575] "two"               "south"             "hastily"          
## [17578] "crossed"           "great"             "road"             
## [17581] "brandywine"        "bridge"            "now"              
## [17584] "tookland"          "bending"           "south"            
## [17587] "eastwards"         "made"              "green"            
## [17590] "hill"              "country"           "began"            
## [17593] "climb"             "first"             "slopes"           
## [17596] "looked"            "back"              "saw"              
## [17599] "lamps"             "hobbiton"          "far"              
## [17602] "twinkling"         "gentle"            "valley"           
## [17605] "water"             "soon"              "disappeared"      
## [17608] "folds"             "darkened"          "land"             
## [17611] "followed"          "bywater"           "beside"           
## [17614] "grey"              "pool"              "light"            
## [17617] "last"              "farm"              "far"              
## [17620] "behind"            "peeping"           "among"            
## [17623] "trees"             "frodo"             "turned"           
## [17626] "waved"             "hand"              "farewell"         
## [17629] ""                  ""                  "wonder"           
## [17632] "shall"             "ever"              "look"             
## [17635] "valley"            ""                  ""                 
## [17638] "said"              "quietly"           "walked"           
## [17641] "three"             "hours"             "rested"           
## [17644] "night"             "clear"             "cool"             
## [17647] "starry"            "smoke"             "like"             
## [17650] "wisps"             "mist"              "creeping"         
## [17653] "hill"              "sides"             "streams"          
## [17656] "deep"              "meadows"           "thin"             
## [17659] "clad"              "birches"           "swaying"          
## [17662] "light"             "wind"              "heads"            
## [17665] "made"              "black"             "net"              
## [17668] "pale"              "sky"               "ate"              
## [17671] "frugal"            "supper"            "hobbits"          
## [17674] "went"              "soon"              "struck"           
## [17677] "narrow"            "road"              "went"             
## [17680] "rolling"           "fading"            "grey"             
## [17683] "darkness"          "ahead"             "road"             
## [17686] "woodhall"          "stock"             "bucklebury"       
## [17689] "ferry"             "climbed"           "away"             
## [17692] "main"              "road"              "water"            
## [17695] "valley"            "wound"             "skirts"           
## [17698] "green"             "hills"             "towards"          
## [17701] "woody"             "end"               "wild"             
## [17704] "corner"            "eastfarthing"      "plunged"          
## [17707] "deeply"            "cloven"            "track"            
## [17710] "tall"              "trees"             "rustled"          
## [17713] "dry"               "leaves"            "night"            
## [17716] "dark"              "first"             "talked"           
## [17719] "hummed"            "tune"              "softly"           
## [17722] "together"          "now"               "far"              
## [17725] "away"              "inquisitive"       "ears"             
## [17728] "marched"           "silence"           "pippin"           
## [17731] "began"             "lag"               "behind"           
## [17734] "last"              "began"             "climb"            
## [17737] "steep"             "slope"             "stopped"          
## [17740] "yawned"            ""                  ""                 
## [17743] "sleepy"            ""                  "said"             
## [17746] ""                  ""                  "soon"             
## [17749] "shall"             "fall"              "road"             
## [17752] "going"             "sleep"             "legs"             
## [17755] "nearly"            "midnight"          ""                 
## [17758] ""                  ""                  "thought"          
## [17761] "liked"             "walking"           "dark"             
## [17764] ""                  "said"              "frodo"            
## [17767] ""                  ""                  "great"            
## [17770] "hurry"             "merry"             "expects"          
## [17773] "us"                "time"              "day"              
## [17776] "tomorrow"          "leaves"            "us"               
## [17779] "nearly"            "two"               "days"             
## [17782] ""                  "ll"                "halt"             
## [17785] "first"             "likely"            "spot"             
## [17788] ""                  ""                  ""                 
## [17791] "wind"              ""                  "west"             
## [17794] ""                  "said"              "sam"              
## [17797] ""                  ""                  "get"              
## [17800] "side"              "hill"              "shall"            
## [17803] "find"              "spot"              "sheltered"        
## [17806] "snug"              "enough"            "sir"              
## [17809] "dry"               "fir"               "wood"             
## [17812] "just"              "ahead"             "remember"         
## [17815] "rightly"           ""                  "sam"              
## [17818] "knew"              "land"              "well"             
## [17821] "within"            "twenty"            "miles"            
## [17824] "hobbiton"          "limit"             "geography"        
## [17827] "just"              "top"               "hill"             
## [17830] "came"              "patch"             "fir"              
## [17833] "wood"              "leaving"           "road"             
## [17836] "went"              "deep"              "resin"            
## [17839] "scented"           "darkness"          "trees"            
## [17842] "gathered"          "dead"              "sticks"           
## [17845] "cones"             "make"              "fire"             
## [17848] "soon"              "merry"             "crackle"          
## [17851] "flame"             "foot"              "large"            
## [17854] "fir"               "tree"              "sat"              
## [17857] "round"             "began"             "nod"              
## [17860] "angle"             "great"             "tree"             
## [17863] ""                  "roots"             "curled"           
## [17866] "cloaks"            "blankets"          "soon"             
## [17869] "fast"              "asleep"            "set"              
## [17872] "watch"             "even"              "frodo"            
## [17875] "feared"            "danger"            "yet"              
## [17878] "still"             "heart"             "shire"            
## [17881] "creatures"         "came"              "looked"           
## [17884] "fire"              "died"              "away"             
## [17887] "fox"               "passing"           "wood"             
## [17890] "business"          "stopped"           "several"          
## [17893] "minutes"           "sniffed"           ""                 
## [17896] "hobbits"           ""                  "thought"          
## [17899] ""                  "well"              "next"             
## [17902] "heard"             "strange"           "doings"           
## [17905] "land"              "seldom"            "heard"            
## [17908] "hobbit"            "sleeping"          "doors"            
## [17911] "tree"              "three"             ""                 
## [17914] ""                  "something"         "mighty"           
## [17917] "queer"             "behind"            ""                 
## [17920] ""                  "quite"             "right"            
## [17923] "never"             "found"             "morning"          
## [17926] "came"              "pale"              "clammy"           
## [17929] "frodo"             "woke"              "first"            
## [17932] "found"             "tree"              "root"             
## [17935] "made"              "hole"              "back"             
## [17938] "neck"              "stiff"             ""                 
## [17941] "walking"           "pleasure"          "didn"             
## [17944] ""                  "drive"             ""                 
## [17947] "thought"           "usually"           "beginning"        
## [17950] "expedition"        ""                  ""                 
## [17953] "beautiful"         "feather"           "beds"             
## [17956] "sold"              "sackville"         "bagginses"        
## [17959] "tree"              "roots"             "good"             
## [17962] ""                  "stretched"         ""                 
## [17965] "wake"              "hobbits"           ""                 
## [17968] "cried"             ""                  ""                 
## [17971] "beautiful"         "morning"           ""                 
## [17974] ""                  ""                  ""                 
## [17977] "beautiful"         ""                  ""                 
## [17980] "said"              "pippin"            "peering"          
## [17983] "edge"              "blanket"           "one"              
## [17986] "eye"               ""                  "sam"              
## [17989] "gel"               "breakfast"         "ready"            
## [17992] "half"              "past"              "nine"             
## [17995] "got"               "bath"              "water"            
## [17998] "hot"               ""                  "sam"              
## [18001] "jumped"            "looking"           "rather"           
## [18004] "bleary"            ""                  ""                 
## [18007] "sir"               "haven"             ""                 
## [18010] "sir"               ""                  "said"             
## [18013] "frodo"             "stripped"          "blankets"         
## [18016] "pippin"            "rolled"            "walked"           
## [18019] "edge"              "wood"              "away"             
## [18022] "eastward"          "sun"               "rising"           
## [18025] "red"               "mists"             "lay"              
## [18028] "thick"             "world"             "touched"          
## [18031] "gold"              "red"               "autumn"           
## [18034] "trees"             "seemed"            "sailing"          
## [18037] "rootless"          "shadowy"           "sea"              
## [18040] "little"            "left"              "road"             
## [18043] "ran"               "steeply"           "hollow"           
## [18046] "disappeared"       "returned"          "sam"              
## [18049] "pippin"            "got"               "good"             
## [18052] "fire"              "going"             ""                 
## [18055] "water"             ""                  "shouted"          
## [18058] "pippin"            ""                  ""                 
## [18061] ""                  "water"             ""                 
## [18064] ""                  ""                  "don"              
## [18067] ""                  "keep"              "water"            
## [18070] "pockets"           ""                  "said"             
## [18073] "frodo"             ""                  ""                 
## [18076] "thought"           "gone"              "find"             
## [18079] ""                  ""                  "said"             
## [18082] "pippin"            "busy"              "setting"          
## [18085] "food"              "cups"              ""                 
## [18088] ""                  "better"            "go"               
## [18091] "now"               ""                  ""                 
## [18094] ""                  "can"               "come"             
## [18097] ""                  ""                  "said"             
## [18100] "frodo"             ""                  ""                 
## [18103] "bring"             "water"             "bottles"          
## [18106] ""                  "stream"            "foot"             
## [18109] "hill"              "filled"            "bottles"          
## [18112] "small"             "camping"           "kettle"           
## [18115] "little"            "fall"              "water"            
## [18118] "fell"              "feet"              "outcrop"          
## [18121] "grey"              "stone"             "icy"              
## [18124] "cold"              "spluttered"        "puffed"           
## [18127] "bathed"            "faces"             "hands"            
## [18130] "breakfast"         "packs"             "trussed"          
## [18133] "ten"               ""                  "clock"            
## [18136] "day"               "beginning"         "turn"             
## [18139] "fine"              "hot"               "went"             
## [18142] "slope"             "across"            "stream"           
## [18145] "dived"             "road"              "next"             
## [18148] "slope"             "another"           "shoulder"         
## [18151] "hills"             "time"              "cloaks"           
## [18154] "blankets"          "water"             "food"             
## [18157] "gear"              "already"           "seemed"           
## [18160] "heavy"             "burden"            "day"              
## [18163] ""                  "march"             "promised"         
## [18166] "warm"              "tiring"            "work"             
## [18169] "miles"             "however"           "road"             
## [18172] "ceased"            "roll"              "climbed"          
## [18175] "top"               "steep"             "bank"             
## [18178] "weary"             "zig"               "zagging"          
## [18181] "sort"              "way"               "prepared"         
## [18184] "go"                "last"              "time"             
## [18187] "front"             "saw"               "lower"            
## [18190] "lands"             "dotted"            "small"            
## [18193] "clumps"            "trees"             "melted"           
## [18196] "away"              "distance"          "brown"            
## [18199] "woodland"          "haze"              "looking"          
## [18202] "across"            "woody"             "end"              
## [18205] "towards"           "brandywine"        "river"            
## [18208] "road"              "wound"             "away"             
## [18211] "like"              "piece"             "string"           
## [18214] ""                  ""                  "road"             
## [18217] "goes"              "ever"              ""                 
## [18220] "said"              "pippin"            ""                 
## [18223] ""                  "can"               ""                 
## [18226] "without"           "rest"              "high"             
## [18229] "time"              "lunch"             ""                 
## [18232] "sat"               "bank"              "side"             
## [18235] "road"              "looked"            "away"             
## [18238] "east"              "haze"              "beyond"           
## [18241] "lay"               "river"             "end"              
## [18244] "shire"             "spent"             "life"             
## [18247] "sam"               "stood"             "round"            
## [18250] "eyes"              "wide"              "open"             
## [18253] "looking"           "across"            "lands"            
## [18256] "never"             "seen"              "new"              
## [18259] "horizon"           ""                  ""                 
## [18262] "elves"             "live"              "woods"            
## [18265] ""                  "asked"             ""                 
## [18268] ""                  "ever"              "heard"            
## [18271] ""                  "said"              "pippin"           
## [18274] "frodo"             "silent"            "gazing"           
## [18277] "eastward"          "along"             "road"             
## [18280] "never"             "seen"              "suddenly"         
## [18283] "spoke"             "aloud"             "saying"           
## [18286] "slowly"            "road"              "goes"             
## [18289] "ever"              "door"              "began"            
## [18292] "now"               "far"               "ahead"            
## [18295] "road"              "gone"              "must"             
## [18298] "follow"            "can"               "pursuing"         
## [18301] "weary"             "feet"              "joins"            
## [18304] "larger"            "way"               "many"             
## [18307] "paths"             "errands"           "meet"             
## [18310] "whither"           "say"               ""                 
## [18313] ""                  "sounds"            "like"             
## [18316] "bit"               "old"               "bilbo"            
## [18319] ""                  "rhyming"           ""                 
## [18322] "said"              "pippin"            ""                 
## [18325] ""                  "one"               "imitations"       
## [18328] "sound"             "altogether"        "encouraging"      
## [18331] ""                  ""                  ""                 
## [18334] "don"               ""                  "know"             
## [18337] ""                  "said"              "frodo"            
## [18340] "came"              "making"            "may"              
## [18343] "heard"             "long"              "ago"              
## [18346] "certainly"         "reminds"           "much"             
## [18349] "bilbo"             "last"              "years"            
## [18352] "went"              "away"              "used"             
## [18355] "often"             "say"               "one"              
## [18358] "road"              "like"              "great"            
## [18361] "river"             "springs"           "every"            
## [18364] "doorstep"          "every"             "path"             
## [18367] "tributary"         ""                  ""                 
## [18370] ""                  "dangerous"         "business"         
## [18373] "frodo"             "going"             "door"             
## [18376] ""                  "used"              "say"              
## [18379] ""                  ""                  "step"             
## [18382] "road"              "don"               ""                 
## [18385] "keep"              "feet"              "knowing"          
## [18388] "might"             "swept"             "realize"          
## [18391] "path"              "goes"              "mirkwood"         
## [18394] "let"               "might"             "take"             
## [18397] "lonely"            "mountain"          "even"             
## [18400] "worse"             "places"            ""                 
## [18403] "used"              "say"               "path"             
## [18406] "outside"           "front"             "door"             
## [18409] "bag"               "end"               "especially"       
## [18412] "long"              "walk"              ""                 
## [18415] ""                  "well"              "road"             
## [18418] "won"               ""                  "sweep"            
## [18421] "anywhere"          "hour"              "least"            
## [18424] ""                  "said"              "pippin"           
## [18427] "unslinging"        "pack"              "others"           
## [18430] "followed"          "example"           "putting"          
## [18433] "packs"             "bank"              "legs"             
## [18436] "road"              "rest"              "good"             
## [18439] "lunch"             "rest"              "sun"              
## [18442] "beginning"         "get"               "low"              
## [18445] "light"             "afternoon"         "land"             
## [18448] "went"              "hill"              "far"              
## [18451] "met"               "soul"              "road"             
## [18454] "way"               "much"              "used"             
## [18457] "hardly"            "fit"               "carts"            
## [18460] "little"            "traffic"           "woody"            
## [18463] "end"               "jogging"           "along"            
## [18466] "hour"              "sam"               "stopped"          
## [18469] "moment"            "listening"         "now"              
## [18472] "level"             "ground"            "road"             
## [18475] "much"              "winding"           "lay"              
## [18478] "straight"          "ahead"             "grass"            
## [18481] "land"              "sprinkled"         "tall"             
## [18484] "trees"             "outliers"          "approaching"      
## [18487] "woods"             ""                  ""                 
## [18490] "can"               "hear"              "pony"             
## [18493] "horse"             "coming"            "along"            
## [18496] "road"              "behind"            ""                 
## [18499] "said"              "sam"               "looked"           
## [18502] "back"              "turn"              "road"             
## [18505] "prevented"         "seeing"            "far"              
## [18508] ""                  ""                  "wonder"           
## [18511] "gandalf"           "coming"            "us"               
## [18514] ""                  "said"              "frodo"            
## [18517] "even"              "said"              "feeling"          
## [18520] "sudden"            "desire"            "hide"             
## [18523] "view"              "rider"             "came"             
## [18526] ""                  ""                  "may"              
## [18529] "matter"            "much"              ""                 
## [18532] "said"              "apologetically"    ""                 
## [18535] ""                  "rather"            "seen"             
## [18538] "road"              "anyone"            "sick"             
## [18541] "doings"            "noticed"           "discussed"        
## [18544] "gandalf"           ""                  "added"            
## [18547] "afterthought"      ""                  ""                 
## [18550] "can"               "give"              "little"           
## [18553] "surprise"          "pay"               "late"             
## [18556] "let"               ""                  "get"              
## [18559] "sight"             ""                  "two"              
## [18562] "ran"               "quickly"           "left"             
## [18565] "little"            "hollow"            "far"              
## [18568] "road"              "lay"               "flat"             
## [18571] "frodo"             "hesitated"         "second"           
## [18574] "curiosity"         "feeling"           "struggling"       
## [18577] "desire"            "hide"              "sound"            
## [18580] "hoofs"             "drew"              "nearer"           
## [18583] "just"              "time"              "threw"            
## [18586] "patch"             "long"              "grass"            
## [18589] "behind"            "tree"              "overshadowed"     
## [18592] "road"              "lifted"            "head"             
## [18595] "peered"            "cautiously"        "one"              
## [18598] "great"             "roots"             "round"            
## [18601] "corner"            "came"              "black"            
## [18604] "horse"             "hobbit"            "pony"             
## [18607] "full"              "sized"             "horse"            
## [18610] "sat"               "large"             "man"              
## [18613] "seemed"            "crouch"            "saddle"           
## [18616] "wrapped"           "great"             "black"            
## [18619] "cloak"             "hood"              "boots"            
## [18622] "high"              "stirrups"          "showed"           
## [18625] "face"              "shadowed"          "invisible"        
## [18628] "reached"           "tree"              "level"            
## [18631] "frodo"             "horse"             "stopped"          
## [18634] "riding"            "figure"            "sat"              
## [18637] "quite"             "still"             "head"             
## [18640] "bowed"             "listening"         "inside"           
## [18643] "hood"              "came"              "noise"            
## [18646] "someone"           "sniffing"          "catch"            
## [18649] "elusive"           "scent"             "head"             
## [18652] "turned"            "side"              "side"             
## [18655] "road"              "sudden"            "unreasoning"      
## [18658] "fear"              "discovery"         "laid"             
## [18661] "hold"              "frodo"             "thought"          
## [18664] "ring"              "hardly"            "dared"            
## [18667] "breathe"           "yet"               "desire"           
## [18670] "get"               "pocket"            "became"           
## [18673] "strong"            "began"             "slowly"           
## [18676] "move"              "hand"              "felt"             
## [18679] "slip"              "safe"              "advice"           
## [18682] "gandalf"           "seemed"            "absurd"           
## [18685] "bilbo"             "used"              "ring"             
## [18688] ""                  ""                  "still"            
## [18691] "shire"             ""                  "thought"          
## [18694] "hand"              "touched"           "chain"            
## [18697] "hung"              "moment"            "rider"            
## [18700] "sat"               "shook"             "reins"            
## [18703] "horse"             "stepped"           "forward"          
## [18706] "walking"           "slowly"            "first"            
## [18709] "breaking"          "quick"             "trot"             
## [18712] "frodo"             "crawled"           "edge"             
## [18715] "road"              "watched"           "rider"            
## [18718] "dwindled"          "distance"          "quite"            
## [18721] "sure"              "seemed"            "suddenly"         
## [18724] "passed"            "sight"             "horse"            
## [18727] "turned"            "aside"             "went"             
## [18730] "trees"             "right"             ""                 
## [18733] "well"              "call"              "queer"            
## [18736] "indeed"            "disturbing"        ""                 
## [18739] "said"              "frodo"             "walked"           
## [18742] "towards"           "companions"        "pippin"           
## [18745] "sam"               "remained"          "flat"             
## [18748] "grass"             "seen"              "nothing"          
## [18751] "frodo"             "described"         "rider"            
## [18754] "strange"           "behaviour"         ""                 
## [18757] ""                  "can"               ""                 
## [18760] "say"               "felt"              "certain"          
## [18763] "looking"           "smelling"          "also"             
## [18766] "felt"              "certain"           "want"             
## [18769] "discover"          ""                  "ve"               
## [18772] "never"             "seen"              "fell"             
## [18775] "anything"          "like"              "shire"            
## [18778] ""                  ""                  ""                 
## [18781] ""                  "one"               "big"              
## [18784] "people"            "got"               "us"               
## [18787] ""                  "said"              "pippin"           
## [18790] ""                  ""                  "part"             
## [18793] "world"             ""                  ""                 
## [18796] ""                  "men"               ""                 
## [18799] ""                  "said"              "frodo"            
## [18802] ""                  ""                  "southfarthing"    
## [18805] "trouble"           "big"               "people"           
## [18808] "believe"           "never"             "heard"            
## [18811] "anything"          "like"              "rider"            
## [18814] "wonder"            "comes"             ""                 
## [18817] ""                  ""                  "begging"          
## [18820] "pardon"            ""                  "put"              
## [18823] "sam"               "suddenly"          ""                 
## [18826] ""                  "know"              "comes"            
## [18829] ""                  ""                  "hobbiton"         
## [18832] "black"             "rider"             "comes"            
## [18835] "unless"            ""                  ""                 
## [18838] "one"               "know"              ""                 
## [18841] ""                  "going"             ""                 
## [18844] ""                  ""                  ""                 
## [18847] "mean"              ""                  "said"             
## [18850] "frodo"             "sharply"           "looking"          
## [18853] "astonishment"      ""                  ""                 
## [18856] "didn"              ""                  "speak"            
## [18859] ""                  ""                  ""                 
## [18862] ""                  "just"              "remembered"       
## [18865] "sir"               "like"              "got"              
## [18868] "back"              "hole"              "yesterday"        
## [18871] "evening"           "key"               "dad"              
## [18874] "says"              "hello"             "sam"              
## [18877] "says"              "thought"           "away"             
## [18880] "mr"                "frodo"             "morning"          
## [18883] ""                  ""                  "strange"          
## [18886] "customer"          "asking"            "mr"               
## [18889] "baggins"           "bag"               "end"              
## [18892] ""                  ""                  "just"             
## [18895] "gone"              ""                  "ve"               
## [18898] "sent"              "bucklebury"        "liked"            
## [18901] "sound"             "seemed"            "mighty"           
## [18904] "put"               "told"              "mr"               
## [18907] "baggins"           "left"              "old"              
## [18910] "home"              "good"              "hissed"           
## [18913] "gave"              "quite"             "shudder"          
## [18916] "sort"              "fellow"            "says"             
## [18919] "gaffer"            "don"               ""                 
## [18922] "know"              "says"              "wasn"             
## [18925] ""                  "hobbit"            "tall"             
## [18928] "black"             "like"              "stooped"          
## [18931] "aver"              "reckon"            "one"              
## [18934] "big"               "folk"              "foreign"          
## [18937] "parts"             "spoke"             "funny"            
## [18940] ""                  ""                  "couldn"           
## [18943] ""                  "stay"              "hear"             
## [18946] "sir"               "since"             "waiting"          
## [18949] "didn"              ""                  "give"             
## [18952] "much"              "heed"              "gaffer"           
## [18955] "getting"           "old"               "bit"              
## [18958] "blind"             "must"              "near"             
## [18961] "dark"              "fellow"            "come"             
## [18964] "hill"              "found"             "taking"           
## [18967] "air"               "end"               "row"              
## [18970] "hope"              "hasn"              ""                 
## [18973] "done"              "harm"              "sir"              
## [18976] ""                  ""                  ""                 
## [18979] ""                  "gaffer"            "can"              
## [18982] ""                  "blamed"            "anyway"           
## [18985] ""                  "said"              "frodo"            
## [18988] ""                  ""                  "matter"           
## [18991] "fact"              "heard"             "talking"          
## [18994] "stranger"          "seemed"            "inquiring"        
## [18997] "nearly"            "went"              "asked"            
## [19000] "wish"              "told"              "might"            
## [19003] "careful"           "road"              ""                 
## [19006] ""                  "still"             "may"              
## [19009] "connexion"         "rider"             "gaffer"           
## [19012] ""                  "stranger"          ""                 
## [19015] "said"              "pippin"            ""                 
## [19018] ""                  "left"              "hobbiton"         
## [19021] "secretly"          "enough"            "don"              
## [19024] ""                  "see"               "followed"         
## [19027] "us"                ""                  ""                 
## [19030] ""                  "smelling"          "sir"              
## [19033] ""                  "said"              "sam"              
## [19036] ""                  ""                  "gaffer"           
## [19039] "said"              "black"             "chap"             
## [19042] ""                  ""                  ""                 
## [19045] "wish"              "waited"            "gandalf"          
## [19048] ""                  "frodo"             "muttered"         
## [19051] ""                  ""                  "perhaps"          
## [19054] "made"              "matters"           "worse"            
## [19057] ""                  ""                  ""                 
## [19060] "know"              "guess"             "something"        
## [19063] "rider"             ""                  "said"             
## [19066] "pippin"            "caught"            "muttered"         
## [19069] "words"             ""                  ""                 
## [19072] "don"               ""                  "know"             
## [19075] "rather"            "guess"             ""                 
## [19078] "said"              "frodo"             ""                 
## [19081] ""                  "right"             "cousin"           
## [19084] "frodo"             "can"               "keep"             
## [19087] "secret"            "present"           "want"             
## [19090] "mysterious"        "meanwhile"         "like"             
## [19093] "bite"              "sup"               "somehow"          
## [19096] "think"             "better"            "move"             
## [19099] "talk"              "sniffing"          "riders"           
## [19102] "invisible"         "noses"             "unsettled"        
## [19105] ""                  ""                  ""                 
## [19108] "yes"               "think"             "will"             
## [19111] "move"              "now"               ""                 
## [19114] "said"              "frodo"             ""                 
## [19117] ""                  "road"              "case"             
## [19120] "rider"             "comes"             "back"             
## [19123] "another"           "follows"           "good"             
## [19126] "step"              "today"             "buckland"         
## [19129] "still"             "miles"             "away"             
## [19132] ""                  "shadows"           "trees"            
## [19135] "long"              "thin"              "grass"            
## [19138] "started"           "now"               "kept"             
## [19141] "stone"             ""                  "throw"            
## [19144] "left"              "road"              "kept"             
## [19147] "sight"             "much"              "hindered"         
## [19150] "grass"             "thick"             "tussocky"         
## [19153] "ground"            "uneven"            "trees"            
## [19156] "began"             "draw"              "together"         
## [19159] "thickets"          "sun"               "gone"             
## [19162] "red"               "behind"            "hills"            
## [19165] "backs"             "evening"           "coming"           
## [19168] "came"              "back"              "road"             
## [19171] "end"               "long"              "level"            
## [19174] "run"               "straight"          "miles"            
## [19177] "point"             "bent"              "left"             
## [19180] "went"              "lowlands"          "yale"             
## [19183] "making"            "stock"             "lane"             
## [19186] "branched"          "right"             "winding"          
## [19189] "wood"              "ancient"           "oak"              
## [19192] "trees"             "way"               "woodhall"         
## [19195] ""                  ""                  "way"              
## [19198] "us"                ""                  "said"             
## [19201] "frodo"             "far"               "road"             
## [19204] "meeting"           "came"              "huge"             
## [19207] "hulk"              "tree"              "still"            
## [19210] "alive"             "leaves"            "small"            
## [19213] "branches"          "put"               "round"            
## [19216] "broken"            "stumps"            "long"             
## [19219] "fallen"            "limbs"             "hollow"           
## [19222] "entered"           "great"             "crack"            
## [19225] "side"              "away"              "road"             
## [19228] "hobbits"           "crept"             "inside"           
## [19231] "sat"               "upon"              "floor"            
## [19234] "old"               "leaves"            "decayed"          
## [19237] "wood"              "rested"            "light"            
## [19240] "meal"              "talking"           "quietly"          
## [19243] "listening"         "time"              "time"             
## [19246] "twilight"          "crept"             "back"             
## [19249] "lane"              "west"              "wind"             
## [19252] "sighing"           "branches"          "leaves"           
## [19255] "whispering"        "soon"              "road"             
## [19258] "began"             "fall"              "gently"           
## [19261] "steadily"          "dusk"              "star"             
## [19264] "came"              "trees"             "darkening"        
## [19267] "east"              "went"              "abreast"          
## [19270] "step"              "keep"              "spirits"          
## [19273] "time"              "stars"             "grew"             
## [19276] "thicker"           "brighter"          "feeling"          
## [19279] "disquiet"          "left"              "longer"           
## [19282] "listened"          "sound"             "hoofs"            
## [19285] "began"             "hum"               "softly"           
## [19288] "hobbits"           "way"               "walk"             
## [19291] "along"             "especially"        "drawing"          
## [19294] "near"              "home"              "night"            
## [19297] "hobbits"           "supper"            "song"             
## [19300] "bed"               "song"              "hobbits"          
## [19303] "hummed"            "walking"           "song"             
## [19306] "though"            "course"            "without"          
## [19309] "mention"           "supper"            "bed"              
## [19312] "bilbo"             "baggins"           "made"             
## [19315] "words"             "tune"              "old"              
## [19318] "hills"             "taught"            "frodo"            
## [19321] "walked"            "lanes"             "water"            
## [19324] "valley"            "talked"            "adventure"        
## [19327] "upon"              "hearth"            "fire"             
## [19330] "red"               "beneath"           "roof"             
## [19333] "bed"               "yet"               "weary"            
## [19336] "feet"              "still"             "round"            
## [19339] "corner"            "may"               "meet"             
## [19342] "sudden"            "tree"              "standing"         
## [19345] "stone"             "none"              "seen"             
## [19348] "alone"             "tree"              "flower"           
## [19351] "leaf"              "grass"             "let"              
## [19354] "pass"              "let"               "pass"             
## [19357] "hill"              "water"             "sky"              
## [19360] "pass"              "pass"              "still"            
## [19363] "round"             "corner"            "may"              
## [19366] "wait"              "new"               "road"             
## [19369] "secret"            "gate"              "though"           
## [19372] "pass"              "today"             "tomorrow"         
## [19375] "may"               "come"              "way"              
## [19378] "take"              "hidden"            "paths"            
## [19381] "run"               "towards"           "moon"             
## [19384] "sun"               "apple"             "thorn"            
## [19387] "nut"               "sloe"              "let"              
## [19390] "go"                "let"               "go"               
## [19393] "sand"              "stone"             "pool"             
## [19396] "dell"              "fare"              "well"             
## [19399] "fare"              "well"              "home"             
## [19402] "behind"            "world"             "ahead"            
## [19405] "many"              "paths"             "tread"            
## [19408] "shadows"           "edge"              "night"            
## [19411] "stars"             "alight"            "world"            
## [19414] "behind"            "home"              "ahead"            
## [19417] ""                  "ll"                "wander"           
## [19420] "back"              "home"              "bed"              
## [19423] "mist"              "twilight"          "cloud"            
## [19426] "shade"             "away"              "shall"            
## [19429] "fade"              "away"              "shall"            
## [19432] "fade"              "fire"              "lamp"             
## [19435] "meat"              "bread"             "bed"              
## [19438] "bed"               "song"              "ended"            
## [19441] ""                  ""                  "now"              
## [19444] "bed"               "now"               "bed"              
## [19447] ""                  "sang"              "pippin"           
## [19450] "high"              "voice"             ""                 
## [19453] "hush"              ""                  "said"             
## [19456] "frodo"             ""                  ""                 
## [19459] "think"             "hear"              "hoofs"            
## [19462] ""                  ""                  "slopped"          
## [19465] "suddenly"          "stood"             "silent"           
## [19468] "tree"              "shadows"           "listening"        
## [19471] "sound"             "hoofs"             "lane"             
## [19474] "way"               "behind"            "coming"           
## [19477] "slow"              "clear"             "wind"             
## [19480] "quickly"           "quietly"           "slipped"          
## [19483] "path"              "ran"               "deeper"           
## [19486] "shade"             "oak"               "trees"            
## [19489] ""                  "don"               ""                 
## [19492] "let"               "us"                "go"               
## [19495] "far"               ""                  "said"             
## [19498] "frodo"             ""                  ""                 
## [19501] "don"               ""                  "want"             
## [19504] "seen"              "want"              "see"              
## [19507] "another"           "black"             "rider"            
## [19510] ""                  ""                  ""                 
## [19513] "well"              ""                  "said"             
## [19516] "pippin"            ""                  ""                 
## [19519] "don"               ""                  "forget"           
## [19522] "sniffing"          ""                  "hoofs"            
## [19525] "drew"              "nearer"            "time"             
## [19528] "find"              "hiding"            "place"            
## [19531] "better"            "general"           "darkness"         
## [19534] "trees"             "sam"               "pippin"           
## [19537] "crouched"          "behind"            "large"            
## [19540] "tree"              "bole"              "frodo"            
## [19543] "crept"             "back"              "yards"            
## [19546] "towards"           "lane"              "showed"           
## [19549] "grey"              "pale"              "line"             
## [19552] "fading"            "light"             "wood"             
## [19555] "stars"             "thick"             "dim"              
## [19558] "sky"               "moon"              "sound"            
## [19561] "hoofs"             "stopped"           "frodo"            
## [19564] "watched"           "saw"               "something"        
## [19567] "dark"              "pass"              "across"           
## [19570] "lighter"           "space"             "two"              
## [19573] "trees"             "halt"              "looked"           
## [19576] "like"              "black"             "shade"            
## [19579] "horse"             "led"               "smaller"          
## [19582] "black"             "shadow"            "black"            
## [19585] "shadow"            "stood"             "close"            
## [19588] "point"             "left"              "path"             
## [19591] "swayed"            "side"              "side"             
## [19594] "frodo"             "thought"           "heard"            
## [19597] "sound"             "snuffling"         "shadow"           
## [19600] "bent"              "ground"            "began"            
## [19603] "crawl"             "towards"           "desire"           
## [19606] "slip"              "ring"              "came"             
## [19609] "frodo"             "time"              "stronger"         
## [19612] "strong"            "almost"            "realized"         
## [19615] "hand"              "groping"           "pocket"           
## [19618] "moment"            "came"              "sound"            
## [19621] "like"              "mingled"           "song"             
## [19624] "laughter"          "clear"             "voices"           
## [19627] "rose"              "fell"              "starlit"          
## [19630] "air"               "black"             "shadow"           
## [19633] "straightened"      "retreated"         "climbed"          
## [19636] "shadowy"           "horse"             "seemed"           
## [19639] "vanish"            "across"            "lane"             
## [19642] "darkness"          "side"              "frodo"            
## [19645] "breathed"          ""                  "elves"            
## [19648] ""                  "exclaimed"         "sam"              
## [19651] "hoarse"            "whisper"           ""                 
## [19654] "elves"             "sir"               ""                 
## [19657] "burst"             "trees"             "dashed"           
## [19660] "towards"           "voices"            "pulled"           
## [19663] "back"              ""                  "yes"              
## [19666] "elves"             ""                  "said"             
## [19669] "frodo"             ""                  "one"              
## [19672] "can"               "meet"              "sometimes"        
## [19675] "woody"             "end"               "don"              
## [19678] ""                  "live"              "shire"            
## [19681] "wander"            "spring"            "autumn"           
## [19684] "lands"             "away"              "beyond"           
## [19687] "tower"             "hills"             "thankful"         
## [19690] "see"               "black"             "rider"            
## [19693] "stopped"           "just"              "actually"         
## [19696] "crawling"          "towards"           "us"               
## [19699] "song"              "began"             "soon"             
## [19702] "heard"             "voices"            "slipped"          
## [19705] "away"              ""                  ""                 
## [19708] ""                  "elves"             ""                 
## [19711] "said"              "sam"               "excited"          
## [19714] "trouble"           "rider"             ""                 
## [19717] "can"               ""                  "go"               
## [19720] "see"               ""                  ""                 
## [19723] ""                  "listen"            "coming"           
## [19726] "way"               ""                  "said"             
## [19729] "frodo"             ""                  ""                 
## [19732] "wait"              ""                  "singing"          
## [19735] "drew"              "nearer"            "one"              
## [19738] "clear"             "voice"             "rose"             
## [19741] "now"               "others"            "singing"          
## [19744] "fair"              "elven"             "tongue"           
## [19747] "frodo"             "knew"              "little"           
## [19750] "others"            "knew"              "nothing"          
## [19753] "yet"               "sound"             "blending"         
## [19756] "melody"            "seemed"            "shape"            
## [19759] "thought"           "words"             "partly"           
## [19762] "understood"        "song"              "frodo"            
## [19765] "heard"             "snow"              "white"            
## [19768] "snow"              "white"             "lady"             
## [19771] "clear"             "queen"             "beyond"           
## [19774] "western"           "seas"              "light"            
## [19777] "us"                "wander"            "amid"             
## [19780] "world"             "woven"             "trees"            
## [19783] "gilthoniel"        "elbereth"          "clear"            
## [19786] "thy"               "eyes"              "bright"           
## [19789] "thy"               "breath"            "snow"             
## [19792] "white"             "snow"              "white"            
## [19795] "sing"              "thee"              "far"              
## [19798] "land"              "beyond"            "sea"              
## [19801] "stars"             "sunless"           "year"             
## [19804] "shining"           "hand"              "sawn"             
## [19807] "windy"             "fields"            "now"              
## [19810] "bright"            "clear"             "see"              
## [19813] "silver"            "blossom"           "blown"            
## [19816] "elbereth"          "gilthoniel"        "still"            
## [19819] "remember"          "dwell"             "far"              
## [19822] "land"              "beneath"           "trees"            
## [19825] "thy"               "starlight"         "western"          
## [19828] "seas"              "song"              "ended"            
## [19831] ""                  ""                  "high"             
## [19834] "elves"             "spoke"             "name"             
## [19837] "elbereth"          ""                  "said"             
## [19840] "frodo"             "amazement"         ""                 
## [19843] ""                  "fairest"           "folk"             
## [19846] "ever"              "seen"              "shire"            
## [19849] "many"              "now"               "remain"           
## [19852] "middle"            "earth"             "east"             
## [19855] "great"             "sea"               "indeed"           
## [19858] "strange"           "chance"            ""                 
## [19861] "hobbits"           "sat"               "shadow"           
## [19864] "wayside"           "long"              "elves"            
## [19867] "came"              "lane"              "towards"          
## [19870] "valley"            "passed"            "slowly"           
## [19873] "hobbits"           "see"               "starlight"        
## [19876] "glimmering"        "hair"              "eyes"             
## [19879] "bore"              "lights"            "yet"              
## [19882] "walked"            "shimmer"           "like"             
## [19885] "light"             "moon"              "rim"              
## [19888] "hills"             "rises"             "seemed"           
## [19891] "fall"              "feet"              "now"              
## [19894] "silent"            "last"              "elf"              
## [19897] "passed"            "turned"            "looked"           
## [19900] "towards"           "hobbits"           "laughed"          
## [19903] ""                  "hail"              "frodo"            
## [19906] ""                  "cried"             ""                 
## [19909] ""                  "abroad"            "late"             
## [19912] "perhaps"           "lost"              ""                 
## [19915] "called"            "aloud"             "others"           
## [19918] "company"           "stopped"           "gathered"         
## [19921] "round"             ""                  ""                 
## [19924] "indeed"            "wonderful"         ""                 
## [19927] "said"              ""                  "three"            
## [19930] "hobbits"           "wood"              "night"            
## [19933] "seen"              "thing"             "since"            
## [19936] "bilbo"             "went"              "away"             
## [19939] "meaning"           ""                  ""                 
## [19942] ""                  ""                  "meaning"          
## [19945] "fair"              "people"            ""                 
## [19948] "said"              "frodo"             ""                 
## [19951] ""                  "simply"            "seem"             
## [19954] "going"             "way"               "like"             
## [19957] "walking"           "stars"             "welcome"          
## [19960] "company"           ""                  ""                 
## [19963] ""                  "need"              "company"          
## [19966] "hobbits"           "dull"              ""                 
## [19969] "laughed"           ""                  ""                 
## [19972] "know"              "go"                "way"              
## [19975] "know"              "whither"           "going"            
## [19978] ""                  ""                  ""                 
## [19981] "know"              "name"              ""                 
## [19984] "asked"             "frodo"             "return"           
## [19987] ""                  ""                  "know"             
## [19990] "many"              "things"            ""                 
## [19993] "said"              ""                  ""                 
## [19996] "seen"              "often"             "bilbo"            
## [19999] "though"            "may"               "seen"             
## [20002] "us"                ""                  ""                 
## [20005] ""                  "lord"              ""                 
## [20008] "asked"             "frodo"             ""                 
## [20011] ""                  "gildor"            ""                 
## [20014] "answered"          "leader"            "elf"              
## [20017] "first"             "hailed"            ""                 
## [20020] "gildor"            "inglorion"         "house"            
## [20023] "finrod"            "exiles"            "kindred"          
## [20026] "long"              "ago"               "departed"         
## [20029] "now"               "tarrying"          "ere"              
## [20032] "return"            "great"             "sea"              
## [20035] "kinsfolk"          "dwell"             "still"            
## [20038] "peace"             "rivendell"         "come"             
## [20041] "now"               "frodo"             "tell"             
## [20044] "us"                "see"               "shadow"           
## [20047] "fear"              "upon"              ""                 
## [20050] ""                  ""                  ""                 
## [20053] "wise"              "people"            ""                 
## [20056] "interrupted"       "pippin"            "eagerly"          
## [20059] ""                  "tell"              "us"               
## [20062] "black"             "riders"            ""                 
## [20065] ""                  "black"             "riders"           
## [20068] ""                  "said"              "low"              
## [20071] "voices"            ""                  ""                 
## [20074] "ask"               "black"             "riders"           
## [20077] ""                  ""                  ""                 
## [20080] "two"               "black"             "riders"           
## [20083] "overtaken"         "us"                "today"            
## [20086] "one"               "done"              "twice"            
## [20089] ""                  "said"              "pippin"           
## [20092] ""                  ""                  "little"           
## [20095] "ago"               "slipped"           "away"             
## [20098] "drew"              "near"              ""                 
## [20101] "elves"             "answer"            "spoke"            
## [20104] "together"          "softly"            "tongue"           
## [20107] "length"            "gildor"            "turned"           
## [20110] "hobbits"           ""                  ""                 
## [20113] "will"              "speak"             ""                 
## [20116] ""                  "said"              ""                 
## [20119] ""                  "think"             "best"             
## [20122] "come"              "now"               "us"               
## [20125] "custom"            "time"              "will"             
## [20128] "lake"              "road"              "shall"            
## [20131] "lodge"             "us"                "tonight"          
## [20134] "will"              ""                  ""                 
## [20137] ""                  "fair"              "folk"             
## [20140] "good"              "fortune"           "beyond"           
## [20143] "hope"              ""                  "said"             
## [20146] "pippin"            "sam"               "speechless"       
## [20149] ""                  ""                  "thank"            
## [20152] "indeed"            "gildor"            "inglorion"        
## [20155] ""                  "said"              "frodo"            
## [20158] "bowing"            ""                  "elen"             
## [20161] "síla"              "lúmenn"            ""                 
## [20164] "omentielvo"        "star"              "shines"           
## [20167] "hour"              "meeting"           ""                 
## [20170] "added"             "high"              "elven"            
## [20173] "speech"            ""                  ""                 
## [20176] "careful"           "friends"           ""                 
## [20179] "cried"             "gildor"            "laughing"         
## [20182] ""                  "speak"             "secrets"          
## [20185] "scholar"           "ancient"           "tongue"           
## [20188] "bilbo"             "good"              "master"           
## [20191] "hail"              "elf"               "friend"           
## [20194] ""                  "said"              "bowing"           
## [20197] "frodo"             ""                  "come"             
## [20200] "now"               "friends"           "join"             
## [20203] "company"           "best"              "walk"             
## [20206] "middle"            "may"               "stray"            
## [20209] "may"               "weary"             "halt"             
## [20212] ""                  ""                  ""                 
## [20215] "going"             ""                  "asked"            
## [20218] "frodo"             ""                  ""                 
## [20221] "tonight"           "go"                "woods"            
## [20224] "hills"             "woodhall"          "miles"            
## [20227] "shall"             "rest"              "end"              
## [20230] "will"              "shorten"           "journey"          
## [20233] "tomorrow"          ""                  "now"              
## [20236] "marched"           "silence"           "passed"           
## [20239] "like"              "shadows"           "faint"            
## [20242] "lights"            "elves"             "even"             
## [20245] "hobbits"           "walk"              "wished"           
## [20248] "without"           "sound"             "footfall"         
## [20251] "pippin"            "soon"              "began"            
## [20254] "feel"              "sleepy"            "staggered"        
## [20257] "twice"             "time"              "tall"             
## [20260] "elf"               "side"              "put"              
## [20263] "arm"               "saved"             "fall"             
## [20266] "sam"               "walked"            "along"            
## [20269] "frodo"             ""                  "side"             
## [20272] "dream"             "expression"        "face"             
## [20275] "half"              "fear"              "half"             
## [20278] "astonished"        "joy"               "woods"            
## [20281] "either"            "side"              "became"           
## [20284] "denser"            "trees"             "now"              
## [20287] "younger"           "thicker"           "lane"             
## [20290] "went"              "lower"             "running"          
## [20293] "fold"              "hills"             "many"             
## [20296] "deep"              "brakes"            "hazel"            
## [20299] "rising"            "slopes"            "either"           
## [20302] "hand"              "last"              "elves"            
## [20305] "turned"            "aside"             "path"             
## [20308] "green"             "ride"              "lay"              
## [20311] "almost"            "unseen"            "thickets"         
## [20314] "right"             "followed"          "wound"            
## [20317] "away"              "back"              "wooded"           
## [20320] "slopes"            "top"               "shoulder"         
## [20323] "hills"             "stood"             "lower"            
## [20326] "land"              "river"             "valley"           
## [20329] "suddenly"          "came"              "shadow"           
## [20332] "trees"             "lay"               "wide"             
## [20335] "space"             "grass"             "grey"             
## [20338] "night"             "three"             "sides"            
## [20341] "woods"             "pressed"           "upon"             
## [20344] "eastward"          "ground"            "fell"             
## [20347] "steeply"           "tops"              "dark"             
## [20350] "trees"             "growing"           "bottom"           
## [20353] "slope"             "feet"              "beyond"           
## [20356] "low"               "lands"             "lay"              
## [20359] "dim"               "flat"              "stars"            
## [20362] "nearer"            "hand"              "lights"           
## [20365] "twinkled"          "village"           "woodhall"         
## [20368] "elves"             "sat"               "grass"            
## [20371] "spoke"             "together"          "soft"             
## [20374] "voices"            "seemed"            "take"             
## [20377] "notice"            "hobbits"           "frodo"            
## [20380] "companions"        "wrapped"           "cloaks"           
## [20383] "blankets"          "drowsiness"        "stole"            
## [20386] "night"             "grew"              "lights"           
## [20389] "valley"            "went"              "pippin"           
## [20392] "fell"              "asleep"            "pillowed"         
## [20395] "green"             "hillock"           "away"             
## [20398] "high"              "east"              "swung"            
## [20401] "remmirath"         "netted"            "stars"            
## [20404] "slowly"            "mists"             "red"              
## [20407] "borgil"            "rose"              "glowing"          
## [20410] "like"              "jewel"             "fire"             
## [20413] "shift"             "airs"              "mist"             
## [20416] "drawn"             "away"              "like"             
## [20419] "veil"              "leaned"            "climbed"          
## [20422] "rim"               "world"             "swordsman"        
## [20425] "sky"               "menelvagor"        "shining"          
## [20428] "belt"              "elves"             "burst"            
## [20431] "song"              "suddenly"          "trees"            
## [20434] "fire"              "sprang"            "red"              
## [20437] "light"             ""                  "come"             
## [20440] ""                  "elves"             "called"           
## [20443] "hobbits"           ""                  "come"             
## [20446] "now"               "time"              "speech"           
## [20449] "merriment"         ""                  "pippin"           
## [20452] "sat"               "rubbed"            "eyes"             
## [20455] "shivered"          ""                  ""                 
## [20458] "fire"              "hall"              "food"             
## [20461] "hungry"            "guests"            ""                 
## [20464] "said"              "elf"               "standing"         
## [20467] "south"             "end"               "greensward"       
## [20470] "opening"           "green"             "floor"            
## [20473] "ran"               "wood"              "formed"           
## [20476] "wide"              "space"             "like"             
## [20479] "hall"              "roofed"            "boughs"           
## [20482] "trees"             "great"             "trunks"           
## [20485] "ran"               "like"              "pillars"          
## [20488] "side"              "middle"            "wood"             
## [20491] "fire"              "blazing"           "upon"             
## [20494] "tree"              "pillars"           "torches"          
## [20497] "lights"            "gold"              "silver"           
## [20500] "burning"           "steadily"          "elves"            
## [20503] "sat"               "round"             "fire"             
## [20506] "upon"              "grass"             "upon"             
## [20509] "sawn"              "rings"             "old"              
## [20512] "trunks"            "went"              "fro"              
## [20515] "bearing"           "cups"              "pouring"          
## [20518] "drink"             "others"            "brought"          
## [20521] "food"              "heaped"            "plates"           
## [20524] "dishes"            ""                  ""                 
## [20527] "poor"              "fare"              ""                 
## [20530] "said"              "hobbits"           ""                 
## [20533] ""                  "lodging"           "greenwood"        
## [20536] "far"               "halls"             "ever"             
## [20539] "guests"            "home"              "will"             
## [20542] "treat"             "better"            ""                 
## [20545] ""                  ""                  "seems"            
## [20548] "good"              "enough"            "birthday"         
## [20551] "party"             ""                  "said"             
## [20554] "frodo"             "pippin"            "afterwards"       
## [20557] "recalled"          "little"            "either"           
## [20560] "food"              "drink"             "mind"             
## [20563] "filled"            "light"             "upon"             
## [20566] "elf"               "faces"             "sound"            
## [20569] "voices"            "various"           "beautiful"        
## [20572] "felt"              "waking"            "dream"            
## [20575] "remembered"        "bread"             "surpassing"       
## [20578] "savour"            "fair"              "white"            
## [20581] "loaf"              "one"               "starving"         
## [20584] "fruits"            "sweet"             "wildberries"      
## [20587] "richer"            "tended"            "fruits"           
## [20590] "gardens"           "drained"           "cup"              
## [20593] "filled"            "fragrant"          "draught"          
## [20596] "cool"              "clear"             "fountain"         
## [20599] "golden"            "summer"            "afternoon"        
## [20602] "sam"               "never"             "describe"         
## [20605] "words"             "picture"           "clearly"          
## [20608] "felt"              "thought"           "night"            
## [20611] "though"            "remained"          "memory"           
## [20614] "one"               "chief"             "events"           
## [20617] "life"              "nearest"           "ever"             
## [20620] "got"               "say"               ""                 
## [20623] "well"              "sir"               "grow"             
## [20626] "apples"            "like"              "call"             
## [20629] "gardener"          "singing"           "went"             
## [20632] "heart"             "know"              "mean"             
## [20635] ""                  "frodo"             "sat"              
## [20638] "eating"            "drinking"          "talking"          
## [20641] "delight"           "mind"              "chiefly"          
## [20644] "words"             "spoken"            "knew"             
## [20647] "little"            "elf"               "speech"           
## [20650] "listened"          "eagerly"           "now"              
## [20653] "spoke"             "served"            "thanked"          
## [20656] "language"          "smiled"            "said"             
## [20659] "laughing"          ""                  ""                 
## [20662] "jewel"             "among"             "hobbits"          
## [20665] ""                  "pippin"            "fell"             
## [20668] "fast"              "asleep"            "lifted"           
## [20671] "borne"             "away"              "bower"            
## [20674] "trees"             "laid"              "upon"             
## [20677] "soft"              "bed"               "slept"            
## [20680] "rest"              "night"             "away"             
## [20683] "sam"               "refused"           "leave"            
## [20686] "master"            "pippin"            "gone"             
## [20689] "came"              "sat"               "curled"           
## [20692] "frodo"             ""                  "feet"             
## [20695] "last"              "nodded"            "closed"           
## [20698] "eyes"              "frodo"             "remained"         
## [20701] "long"              "awake"             "talking"          
## [20704] "gildor"            "spoke"             "many"             
## [20707] "things"            "old"               "new"              
## [20710] "frodo"             "questioned"        "gildor"           
## [20713] "much"              "happenings"        "wide"             
## [20716] "world"             "outside"           "shire"            
## [20719] "tidings"           "mostly"            "sad"              
## [20722] "ominous"           "gathering"         "darkness"         
## [20725] "wars"              "men"               "flight"           
## [20728] "elves"             "last"              "frodo"            
## [20731] "asked"             "question"          "nearest"          
## [20734] "heart"             ""                  "tell"             
## [20737] "gildor"            "ever"              "seen"             
## [20740] "bilbo"             "since"             "left"             
## [20743] "us"                ""                  "gildor"           
## [20746] "smiled"            ""                  "yes"              
## [20749] ""                  "answered"          ""                 
## [20752] "twice"             "said"              "farewell"         
## [20755] "us"                "spot"              "saw"              
## [20758] "far"               ""                  ""                 
## [20761] "say"               "bilbo"             "frodo"            
## [20764] "fell"              "silent"            ""                 
## [20767] ""                  "ask"               "tell"             
## [20770] "much"              "concerns"          "frodo"            
## [20773] ""                  "said"              "gildor"           
## [20776] ""                  ""                  "already"          
## [20779] "know"              "little"            "can"              
## [20782] "read"              "face"              "thought"          
## [20785] "behind"            "questions"         "leaving"          
## [20788] "shire"             "yet"               "doubt"            
## [20791] "will"              "find"              "seek"             
## [20794] "accomplish"        "intend"            "will"             
## [20797] "ever"              "return"            ""                 
## [20800] ""                  ""                  ""                 
## [20803] ""                  ""                  "said"             
## [20806] "frodo"             ""                  ""                 
## [20809] "thought"           "going"             "secret"           
## [20812] "known"             "gandalf"           "faithful"         
## [20815] "sam"               ""                  "looked"           
## [20818] "sam"               "snoring"           "gently"           
## [20821] ""                  ""                  "secret"           
## [20824] "will"              "reach"             "enemy"            
## [20827] "us"                ""                  "said"             
## [20830] "gildor"            ""                  ""                 
## [20833] "enemy"             ""                  "said"             
## [20836] "frodo"             ""                  ""                 
## [20839] "know"              "leaving"           "shire"            
## [20842] ""                  ""                  ""                 
## [20845] "know"              "reason"            "enemy"            
## [20848] "pursuing"          ""                  ""                 
## [20851] "answered"          "gildor"            ""                 
## [20854] ""                  "perceive"          "strange"          
## [20857] "indeed"            "though"            "seems"            
## [20860] "warn"              "peril"             "now"              
## [20863] "behind"            "upon"              "either"           
## [20866] "side"              ""                  ""                 
## [20869] ""                  "mean"              "riders"           
## [20872] "feared"            "servants"          "enemy"            
## [20875] "black"             "riders"            ""                 
## [20878] ""                  ""                  "gandalf"          
## [20881] "told"              "nothing"           ""                 
## [20884] ""                  "nothing"           "creatures"        
## [20887] ""                  ""                  ""                 
## [20890] "think"             "say"               "lest"             
## [20893] "terror"            "keep"              "journey"          
## [20896] "seems"             "set"               "just"             
## [20899] "time"              "indeed"            "time"             
## [20902] "must"              "now"               "make"             
## [20905] "haste"             "neither"           "stay"             
## [20908] "turn"              "back"              "shire"            
## [20911] "longer"            "protection"        ""                 
## [20914] ""                  ""                  ""                 
## [20917] "imagine"           "information"       "terrifying"       
## [20920] "hints"             "warnings"          ""                 
## [20923] "exclaimed"         "frodo"             ""                 
## [20926] ""                  "knew"              "danger"           
## [20929] "lay"               "ahead"             "course"           
## [20932] "expect"            "meet"              "shire"            
## [20935] "can"               ""                  "hobbit"           
## [20938] "walk"              "water"             "river"            
## [20941] "peace"             ""                  ""                 
## [20944] ""                  "shire"             ""                 
## [20947] "said"              "gildor"            ""                 
## [20950] "others"            "dwelt"             "hobbits"          
## [20953] "others"            "will"              "dwell"            
## [20956] "hobbits"           "wide"              "world"            
## [20959] "can"               "fence"             "ever"             
## [20962] "fence"             ""                  ""                 
## [20965] ""                  ""                  "know"             
## [20968] "yet"               "always"            "seemed"           
## [20971] "safe"              "familiar"          "can"              
## [20974] "now"               "plan"              "leave"            
## [20977] "shire"             "secretly"          "make"             
## [20980] "way"               "rivendell"         "now"              
## [20983] "footsteps"         "dogged"            "ever"             
## [20986] "get"               "buckland"          ""                 
## [20989] ""                  ""                  "think"            
## [20992] "still"             "follow"            "plan"             
## [20995] ""                  "said"              "gildor"           
## [20998] ""                  ""                  "think"            
## [21001] "road"              "will"              "prove"            
## [21004] "hard"              "courage"           "desire"           
## [21007] "clearer"           "counsel"           "ask"              
## [21010] "gandalf"           "know"              "reason"           
## [21013] "flight"            "therefore"         "know"             
## [21016] "means"             "pursuers"          "will"             
## [21019] "assail"            "things"            "gandalf"          
## [21022] "must"              "know"              "suppose"          
## [21025] "will"              "see"               "leave"            
## [21028] "shire"             ""                  ""                 
## [21031] ""                  "hope"              "another"          
## [21034] "thing"             "makes"             "anxious"          
## [21037] "expecting"         "gandalf"           "many"             
## [21040] "days"              "come"              "hobbiton"         
## [21043] "latest"            "two"               "nights"           
## [21046] "ago"               "never"             "appeared"         
## [21049] "now"               "wondering"         "can"              
## [21052] "happened"          "wait"              ""                 
## [21055] ""                  "gildor"            "silent"           
## [21058] "moment"            ""                  ""                 
## [21061] "like"              "news"              ""                 
## [21064] "said"              "last"              ""                 
## [21067] ""                  "gandalf"           "late"             
## [21070] "bode"              "well"              "said"             
## [21073] "meddle"            "affairs"           "wizards"          
## [21076] "subtle"            "quick"             "anger"            
## [21079] "choice"            "go"                "wait"             
## [21082] ""                  ""                  ""                 
## [21085] "also"              "said"              ""                 
## [21088] "answered"          "frodo"             ""                 
## [21091] "go"                "elves"             "counsel"          
## [21094] "will"              "say"               "yes"              
## [21097] ""                  ""                  ""                 
## [21100] "indeed"            ""                  "laughed"          
## [21103] "gildor"            ""                  "elves"            
## [21106] "seldom"            "give"              "unguarded"        
## [21109] "advice"            "advice"            "dangerous"        
## [21112] "gift"              "even"              "wise"             
## [21115] "wise"              "courses"           "may"              
## [21118] "run"               "ill"               "told"             
## [21121] "concerning"        "shall"             "choose"           
## [21124] "better"            "demand"            "advice"           
## [21127] "will"              "friendship"        ""                 
## [21130] "sake"              "give"              "think"            
## [21133] "now"               "go"                "without"          
## [21136] "delay"             "gandalf"           "come"             
## [21139] "set"               "also"              "advise"           
## [21142] "go"                "alone"             "take"             
## [21145] "friends"           "trusty"            "willing"          
## [21148] "now"               "grateful"          "give"             
## [21151] "counsel"           "gladly"            "elves"            
## [21154] "labours"           "sorrows"           "little"           
## [21157] "concerned"         "ways"              "hobbits"          
## [21160] "creatures"         "upon"              "earth"            
## [21163] "paths"             "cross"             "seldom"           
## [21166] "chance"            "purpose"           "meeting"          
## [21169] "may"               "chance"            "purpose"          
## [21172] "clear"             "fear"              "say"              
## [21175] "much"              ""                  ""                 
## [21178] ""                  "deeply"            "grateful"         
## [21181] ""                  "said"              "frodo"            
## [21184] ""                  ""                  "wish"             
## [21187] "tell"              "plainly"           "black"            
## [21190] "riders"            "take"              "advice"           
## [21193] "may"               "see"               "gandalf"          
## [21196] "long"              "know"              "danger"           
## [21199] "pursues"           ""                  ""                 
## [21202] ""                  ""                  "enough"           
## [21205] "know"              "servants"          "enemy"            
## [21208] ""                  "answered"          "gildor"           
## [21211] ""                  "flee"              "speak"            
## [21214] "words"             "deadly"            "ask"              
## [21217] "heart"             "forbodes"          "ere"              
## [21220] "ended"             "frodo"             "son"              
## [21223] "drogo"             "will"              "know"             
## [21226] "fell"              "things"            "gildor"           
## [21229] "inglorion"         "may"               "elbereth"         
## [21232] "protect"           ""                  ""                 
## [21235] ""                  ""                  "shall"            
## [21238] "find"              "courage"           ""                 
## [21241] "asked"             "frodo"             ""                 
## [21244] ""                  "chiefly"           "need"             
## [21247] ""                  ""                  "courage"          
## [21250] "found"             "unlikely"          "places"           
## [21253] ""                  "said"              "gildor"           
## [21256] ""                  ""                  "good"             
## [21259] "hope"              "sleep"             "now"              
## [21262] "morning"           "shall"             "gone"             
## [21265] "will"              "send"              "messages"         
## [21268] "lands"             "wandering"         "companies"        
## [21271] "shall"             "know"              "journey"          
## [21274] "power"             "good"              "shall"            
## [21277] "watch"             "name"              "elf"              
## [21280] "friend"            "may"               "stars"            
## [21283] "shine"             "upon"              "end"              
## [21286] "road"              "seldom"            "delight"          
## [21289] "strangers"         "fair"              "hear"             
## [21292] "words"             "ancient"           "speech"           
## [21295] "lips"              "wanderers"         "world"            
## [21298] ""                  "frodo"             "felt"             
## [21301] "sleep"             "coming"            "upon"             
## [21304] "even"              "gildor"            "finished"         
## [21307] "speaking"          ""                  ""                 
## [21310] "will"              "sleep"             "now"              
## [21313] ""                  "said"              "elf"              
## [21316] "led"               "bower"             "beside"           
## [21319] "pippin"            "threw"             "upon"             
## [21322] "bed"               "fell"              "dreamless"        
## [21325] "slumber"           "chapter"           "short"            
## [21328] "cut"               "mushrooms"         "morning"          
## [21331] "frodo"             "woke"              "refreshed"        
## [21334] "lying"             "bower"             "made"             
## [21337] "living"            "tree"              "branches"         
## [21340] "laced"             "drooping"          "ground"           
## [21343] "bed"               "fern"              "grass"            
## [21346] "deep"              "soft"              "strangely"        
## [21349] "fragrant"          "sun"               "shining"          
## [21352] "fluttering"        "leaves"            "still"            
## [21355] "green"             "upon"              "tree"             
## [21358] "jumped"            "went"              "sam"              
## [21361] "sitting"           "grass"             "near"             
## [21364] "edge"              "wood"              "pippin"           
## [21367] "standing"          "studying"          "sky"              
## [21370] "weather"           "sign"              "elves"            
## [21373] ""                  ""                  "left"             
## [21376] "us"                "fruit"             "drink"            
## [21379] "bread"             ""                  "said"             
## [21382] "pippin"            ""                  "come"             
## [21385] "breakfast"         "bread"             "tastes"           
## [21388] "almost"            "good"              "last"             
## [21391] "night"             "want"              "leave"            
## [21394] "sam"               "insisted"          ""                 
## [21397] "frodo"             "sat"               "beside"           
## [21400] "sam"               "began"             "eat"              
## [21403] ""                  ""                  "plan"             
## [21406] "today"             ""                  "asked"            
## [21409] "pippin"            ""                  ""                 
## [21412] "walk"              "bucklebury"        "quickly"          
## [21415] "possible"          ""                  "answered"         
## [21418] "frodo"             "gave"              "attention"        
## [21421] "food"              ""                  ""                 
## [21424] "think"             "shall"             "see"              
## [21427] "anything"          "riders"            ""                 
## [21430] "asked"             "pippin"            "cheerfully"       
## [21433] "morning"           "sun"               "prospect"         
## [21436] "seeing"            "whole"             "troop"            
## [21439] "seem"              "alarming"          ""                 
## [21442] "yes"               "probably"          ""                 
## [21445] "said"              "frodo"             "liking"           
## [21448] "reminder"          ""                  ""                 
## [21451] "hope"              "get"               "across"           
## [21454] "river"             "without"           "seeing"           
## [21457] "us"                ""                  ""                 
## [21460] ""                  "find"              "anything"         
## [21463] "gildor"            ""                  ""                 
## [21466] ""                  "much"              "hints"            
## [21469] "riddles"           ""                  "said"             
## [21472] "frodo"             "evasively"         ""                 
## [21475] ""                  "ask"               "sniffing"         
## [21478] ""                  ""                  ""                 
## [21481] "didn"              ""                  "discuss"          
## [21484] ""                  ""                  "said"             
## [21487] "frodo"             "mouth"             "full"             
## [21490] ""                  ""                  "sure"             
## [21493] "important"         ""                  ""                 
## [21496] ""                  "case"              "sure"             
## [21499] "gildor"            "refused"           "explain"          
## [21502] ""                  ""                  "said"             
## [21505] "frodo"             "sharply"           ""                 
## [21508] ""                  "now"               "leave"            
## [21511] "peace"             "bit"               "don"              
## [21514] ""                  "want"              "answer"           
## [21517] "string"            "questions"         "eating"           
## [21520] "want"              "think"             ""                 
## [21523] ""                  "good"              "heavens"          
## [21526] ""                  "said"              "pippin"           
## [21529] ""                  ""                  "breakfast"        
## [21532] ""                  "walked"            "away"             
## [21535] "towards"           "edge"              "green"            
## [21538] "frodo"             ""                  "mind"             
## [21541] "bright"            "morning"           "treacherously"    
## [21544] "bright"            "thought"           "banished"         
## [21547] "fear"              "pursuit"           "pondered"         
## [21550] "words"             "gildor"            "merry"            
## [21553] "voice"             "pippin"            "came"             
## [21556] "running"           "green"             "turf"             
## [21559] "singing"           ""                  ""                 
## [21562] ""                  ""                  "said"             
## [21565] ""                  ""                  "one"              
## [21568] "thing"             "take"              "young"            
## [21571] "friends"           "walking"           "shire"            
## [21574] "hungry"            "weary"             "food"             
## [21577] "bed"               "sweet"             "take"             
## [21580] "exile"             "hunger"            "weariness"        
## [21583] "may"               "cure"              "quite"            
## [21586] "another"           "even"              "willing"          
## [21589] "come"              "inheritance"       "mine"             
## [21592] "alone"             "don"               ""                 
## [21595] "think"             "even"              "take"             
## [21598] "sam"               ""                  "looked"           
## [21601] "sam"               "gamgee"            "discovered"       
## [21604] "sam"               "watching"          ""                 
## [21607] "well"              "sam"               ""                 
## [21610] "said"              ""                  ""                 
## [21613] "leaving"           "shire"             "soon"             
## [21616] "ever"              "can"               "fact"             
## [21619] "made"              "mind"              "now"              
## [21622] "even"              "wait"              "day"              
## [21625] "crickhollow"       "can"               "helped"           
## [21628] ""                  ""                  ""                 
## [21631] "good"              "sir"               ""                 
## [21634] ""                  ""                  "still"            
## [21637] "mean"              "come"              ""                 
## [21640] ""                  ""                  ""                 
## [21643] ""                  ""                  ""                 
## [21646] ""                  "going"             "dangerous"        
## [21649] "sam"               ""                  ""                 
## [21652] "already"           "dangerous"         "likely"           
## [21655] "neither"           "us"                "will"             
## [21658] "come"              "back"              ""                 
## [21661] ""                  ""                  "don"              
## [21664] ""                  "come"              "back"             
## [21667] "sir"               "shan"              ""                 
## [21670] ""                  ""                  "certain"          
## [21673] ""                  "said"              "sam"              
## [21676] ""                  "don"               ""                 
## [21679] "leave"             "said"              "leave"            
## [21682] "said"              "never"             "mean"             
## [21685] "going"             "climbs"            "moon"             
## [21688] "black"             "rulers"            "try"              
## [21691] "stop"              ""                  "ll"               
## [21694] "sam"               "gamgee"            "reckon"           
## [21697] "said"              "laughed"           ""                 
## [21700] ""                  ""                  "talking"          
## [21703] ""                  ""                  ""                 
## [21706] ""                  "elves"             "sir"              
## [21709] "talk"              "last"              "night"            
## [21712] "seemed"            "know"              "going"            
## [21715] "away"              "didn"              ""                 
## [21718] "see"               "use"               "denying"          
## [21721] "wonderful"         "folk"              "elves"            
## [21724] "sir"               "wonderful"         ""                 
## [21727] ""                  ""                  ""                 
## [21730] ""                  "said"              "frodo"            
## [21733] ""                  ""                  "like"             
## [21736] "still"             "now"               "closer"           
## [21739] "view"              ""                  ""                 
## [21742] ""                  "seem"              "bit"              
## [21745] "likes"             "dislikes"          "speak"            
## [21748] ""                  "answered"          "sam"              
## [21751] "slowly"            ""                  ""                 
## [21754] "don"               ""                  "seem"             
## [21757] "matter"            "think"             "quite"            
## [21760] "different"         "expected"          "old"              
## [21763] "young"             "gay"               "sad"              
## [21766] ""                  ""                  "frodo"            
## [21769] "looked"            "sam"               "rather"           
## [21772] "startled"          "half"              "expecting"        
## [21775] "see"               "outward"           "sign"             
## [21778] "odd"               "change"            "seemed"           
## [21781] "come"              "sound"             "like"             
## [21784] "voice"             "old"               "sam"              
## [21787] "gamgee"            "thought"           "knew"             
## [21790] "looked"            "like"              "old"              
## [21793] "sam"               "gamgee"            "sitting"          
## [21796] "except"            "face"              "unusually"        
## [21799] "thoughtful"        ""                  ""                 
## [21802] "feel"              "need"              "leave"            
## [21805] "shire"             "now"               "now"              
## [21808] "wish"              "see"               "come"             
## [21811] "true"              "already"           ""                 
## [21814] "asked"             ""                  "yes"              
## [21817] "sir"               "don"               ""                 
## [21820] "know"              "say"               "last"             
## [21823] "night"             "feel"              "different"        
## [21826] "seem"              "see"               "ahead"            
## [21829] "kind"              "way"               "know"             
## [21832] "going"             "take"              "long"             
## [21835] "road"              "darkness"          "know"             
## [21838] "can"               ""                  "turn"             
## [21841] "back"              "isn"               ""                 
## [21844] "see"               "elves"             "now"              
## [21847] "dragons"           "mountains"         "want"             
## [21850] "don"               ""                  "rightly"          
## [21853] "know"              "want"              "something"        
## [21856] "end"               "lies"              "ahead"            
## [21859] "shire"             "must"              "see"              
## [21862] "sir"               "understand"        ""                 
## [21865] ""                  ""                  ""                 
## [21868] "don"               ""                  "altogether"       
## [21871] "understand"        "gandalf"           "chose"            
## [21874] "good"              "companion"         "content"          
## [21877] "will"              "go"                "together"         
## [21880] ""                  "frodo"             "finished"         
## [21883] "breakfast"         "silence"           "standing"         
## [21886] "looked"            "land"              "ahead"            
## [21889] "called"            "pippin"            ""                 
## [21892] ""                  "ready"             "start"            
## [21895] ""                  "said"              "pippin"           
## [21898] "ran"               ""                  ""                 
## [21901] "must"              "getting"           "slept"            
## [21904] "late"              "good"              "many"             
## [21907] "miles"             "go"                ""                 
## [21910] ""                  ""                  "slept"            
## [21913] "late"              "mean"              ""                 
## [21916] "said"              "pippin"            ""                 
## [21919] ""                  "long"              "waiting"          
## [21922] "finish"            "eating"            "thinking"         
## [21925] ""                  ""                  ""                 
## [21928] "finished"          "now"               "going"            
## [21931] "make"              "bucklebury"        "ferry"            
## [21934] "quickly"           "possible"          "going"            
## [21937] "way"               "back"              "road"             
## [21940] "left"              "last"              "night"            
## [21943] "going"             "cut"               "straight"         
## [21946] "across"            "country"           ""                 
## [21949] ""                  ""                  ""                 
## [21952] "going"             "fly"               ""                 
## [21955] "said"              "pippin"            ""                 
## [21958] ""                  "won"               ""                 
## [21961] "cut"               "straight"          "foot"             
## [21964] "anywhere"          "country"           ""                 
## [21967] ""                  ""                  "can"              
## [21970] "cut"               "straighter"        "road"             
## [21973] "anyway"            ""                  "answered"         
## [21976] "frodo"             ""                  ""                 
## [21979] "ferry"             "east"              "woodhall"         
## [21982] "hard"              "road"              "curves"           
## [21985] "away"              "left"              "can"              
## [21988] "see"               "bend"              "away"             
## [21991] "north"             "goes"              "round"            
## [21994] "north"             "end"               "marish"           
## [21997] "strike"            "causeway"          "bridge"           
## [22000] "stock"             "miles"             "way"              
## [22003] "save"              "quarter"           "distance"         
## [22006] "made"              "line"              "ferry"            
## [22009] "stand"             ""                  ""                 
## [22012] "short"             "cuts"              "make"             
## [22015] "long"              "delays"            ""                 
## [22018] "argued"            "pippin"            ""                 
## [22021] ""                  "country"           "rough"            
## [22024] "round"             "bogs"              "kinds"            
## [22027] "difficulties"      "marish"            "know"             
## [22030] "land"              "parts"             "worrying"         
## [22033] "black"             "riders"            "can"              
## [22036] ""                  "see"               "worse"            
## [22039] "meeting"           "road"              "wood"             
## [22042] "field"             ""                  ""                 
## [22045] ""                  "less"              "easy"             
## [22048] "find"              "people"            "woods"            
## [22051] "fields"            ""                  "answered"         
## [22054] "frodo"             ""                  ""                 
## [22057] "supposed"          "road"              "chance"           
## [22060] "will"              "looked"            "road"             
## [22063] ""                  ""                  ""                 
## [22066] ""                  "right"             ""                 
## [22069] "said"              "pippin"            ""                 
## [22072] ""                  "will"              "follow"           
## [22075] "every"             "bog"               "ditch"            
## [22078] "hard"              "counted"           "passing"          
## [22081] "golden"            "perch"             "stock"            
## [22084] "sundown"           "best"              "beer"             
## [22087] "eastfarthing"      "used"              "long"             
## [22090] "time"              "since"             "tasted"           
## [22093] ""                  ""                  ""                 
## [22096] ""                  "settles"           ""                 
## [22099] ""                  "said"              "frodo"            
## [22102] ""                  "short"             "cuts"             
## [22105] "make"              "delays"            "inns"             
## [22108] "make"              "longer"            "ones"             
## [22111] "costs"             "must"              "keep"             
## [22114] "away"              "golden"            "perch"            
## [22117] "want"              "get"               "bucklebury"       
## [22120] "dark"              "say"               "sam"              
## [22123] ""                  ""                  ""                 
## [22126] "will"              "go"                "along"            
## [22129] "mr"                "frodo"             ""                 
## [22132] "said"              "sam"               "spite"            
## [22135] "private"           "misgiving"         "deep"             
## [22138] "regret"            "best"              "beer"             
## [22141] "eastfarthing"      ""                  ""                 
## [22144] "going"             "toil"              "bog"              
## [22147] "briar"             "let"               ""                 
## [22150] "go"                "now"               ""                 
## [22153] "said"              "pippin"            "already"          
## [22156] "nearly"            "hot"               "day"              
## [22159] "clouds"            "beginning"         "come"             
## [22162] "west"              "looked"            "likely"           
## [22165] "turn"              "rain"              "hobbits"          
## [22168] "scrambled"         "steep"             "green"            
## [22171] "bank"              "plunged"           "thick"            
## [22174] "trees"             "course"            "chosen"           
## [22177] "leave"             "woodhall"          "left"             
## [22180] "cut"               "slanting"          "woods"            
## [22183] "clustered"         "along"             "eastern"          
## [22186] "side"              "hills"             "reached"          
## [22189] "flats"             "beyond"            "make"             
## [22192] "straight"          "ferry"             "country"          
## [22195] "open"              "except"            "ditches"          
## [22198] "fences"            "frodo"             "reckoned"         
## [22201] "eighteen"          "miles"             "go"               
## [22204] "straight"          "line"              "soon"             
## [22207] "found"             "thicket"           "closer"           
## [22210] "tangled"           "appeared"          "paths"            
## [22213] "undergrowth"       "get"               "fast"             
## [22216] "struggled"         "bottom"            "bank"             
## [22219] "found"             "stream"            "running"          
## [22222] "hills"             "behind"            "deeply"           
## [22225] "dug"               "bed"               "steep"            
## [22228] "slippery"          "sides"             "overhung"         
## [22231] "brambles"          "inconveniently"    "cut"              
## [22234] "across"            "line"              "chosen"           
## [22237] "jump"              "indeed"            "get"              
## [22240] "across"            "without"           "getting"          
## [22243] "wet"               "scratched"         "muddy"            
## [22246] "halted"            "wondering"         ""                 
## [22249] "first"             "check"             ""                 
## [22252] "said"              "pippin"            "smiling"          
## [22255] "grimly"            "sam"               "gamgee"           
## [22258] "looked"            "back"              "opening"          
## [22261] "trees"             "caught"            "glimpse"          
## [22264] "top"               "green"             "bank"             
## [22267] "climbed"           ""                  "look"             
## [22270] ""                  "said"              "clutching"        
## [22273] "frodo"             "arm"               "looked"           
## [22276] "edge"              "high"              "saw"              
## [22279] "sky"               "horse"             "standing"         
## [22282] "beside"            "stooped"           "black"            
## [22285] "figure"            "gave"              "idea"             
## [22288] "going"             "back"              "frodo"            
## [22291] "led"               "way"               "plunged"          
## [22294] "quickly"           "thick"             "bushes"           
## [22297] "beside"            "stream"            ""                 
## [22300] "whew"              ""                  "said"             
## [22303] "pippin"            ""                  ""                 
## [22306] "right"             "short"             "cut"              
## [22309] "gone"              "crooked"           "already"          
## [22312] "got"               "cover"             "just"             
## [22315] "time"              ""                  "ve"               
## [22318] "got"               "sharp"             "ears"             
## [22321] "sam"               "can"               "hear"             
## [22324] "anything"          "coming"            ""                 
## [22327] "stood"             "still"             "almost"           
## [22330] "holding"           "breath"            "listened"         
## [22333] "sound"             "pursuit"           ""                 
## [22336] ""                  "don"               ""                 
## [22339] "fancy"             "try"               "bringing"         
## [22342] "horse"             "bank"              ""                 
## [22345] "said"              "sam"               ""                 
## [22348] ""                  "guess"             "knows"            
## [22351] "came"              "better"            "going"            
## [22354] ""                  ""                  "going"            
## [22357] "altogether"        "easy"              "packs"            
## [22360] "carry"             "bushes"            "brambles"         
## [22363] "reluctant"         "let"               "cut"              
## [22366] "wind"              "ridge"             "behind"           
## [22369] "air"               "still"             "stuffy"           
## [22372] "forced"            "way"               "last"             
## [22375] "open"              "ground"            "hot"              
## [22378] "tired"             "scratched"         "also"             
## [22381] "longer"            "certain"           "direction"        
## [22384] "going"             "banks"             "stream"           
## [22387] "sank"              "reached"           "levels"           
## [22390] "became"            "broader"           "shallower"        
## [22393] "wandering"         "towards"           "marish"           
## [22396] "river"             ""                  ""                 
## [22399] "stock"             "brook"             ""                 
## [22402] "said"              "pippin"            ""                 
## [22405] ""                  "going"             "try"              
## [22408] "get"               "back"              "course"           
## [22411] "must"              "cross"             "bear"             
## [22414] "right"             ""                  "waded"            
## [22417] "stream"            "hurried"           "wide"             
## [22420] "open"              "space"             "rush"             
## [22423] "grown"             "treeless"          "side"             
## [22426] "beyond"            "came"              "belt"             
## [22429] "trees"             "tall"              "oaks"             
## [22432] "part"              "elm"               "tree"             
## [22435] "ash"               "ground"            "fairly"           
## [22438] "level"             "little"            "undergrowth"      
## [22441] "trees"             "loo"               "close"            
## [22444] "see"               "far"               "ahead"            
## [22447] "leaves"            "blew"              "upwards"          
## [22450] "sudden"            "gusts"             "wind"             
## [22453] "spots"             "rain"              "began"            
## [22456] "fall"              "overcast"          "sky"              
## [22459] "wind"              "died"              "away"             
## [22462] "rain"              "came"              "streaming"        
## [22465] "trudged"           "along"             "fast"             
## [22468] "patches"           "grass"             "thick"            
## [22471] "drifts"            "old"               "leaves"           
## [22474] "rain"              "pattered"          "trickled"         
## [22477] "talk"              "kept"              "glancing"         
## [22480] "back"              "side"              "side"             
## [22483] "half"              "hour"              "pippin"           
## [22486] "said"              ""                  ""                 
## [22489] "hope"              "turned"            "much"             
## [22492] "towards"           "south"             "walking"          
## [22495] "longwise"          "wood"              "broad"            
## [22498] "belt"              "said"              "mile"             
## [22501] "widest"            "now"               ""                 
## [22504] ""                  ""                  "good"             
## [22507] "starting"          "go"                "zig"              
## [22510] "zags"              ""                  "said"             
## [22513] "frodo"             ""                  ""                 
## [22516] "won"               ""                  "mend"             
## [22519] "matters"           "let"               "us"               
## [22522] "keep"              "going"             "sure"             
## [22525] "want"              "come"              "open"             
## [22528] "yet"               ""                  "went"             
## [22531] "perhaps"           "another"           "couple"           
## [22534] "miles"             "sun"               "gleamed"          
## [22537] "ragged"            "clouds"            "rain"             
## [22540] "lessened"          "now"               "past"             
## [22543] "mid"               "day"               "felt"             
## [22546] "high"              "time"              "lunch"            
## [22549] "halted"            "elm"               "tree"             
## [22552] "leaves"            "though"            "fast"             
## [22555] "turning"           "yellow"            "still"            
## [22558] "thick"             "ground"            "feel"             
## [22561] "fairly"            "dry"               "sheltered"        
## [22564] "came"              "make"              "meal"             
## [22567] "found"             "elves"             "filled"           
## [22570] "bottles"           "clear"             "drink"            
## [22573] "pale"              "golden"            "colour"           
## [22576] "scent"             "honey"             "made"             
## [22579] "many"              "flowers"           "wonderfully"      
## [22582] "refreshing"        "soon"              "laughing"         
## [22585] "snapping"          "fingers"           "rain"             
## [22588] "black"             "riders"            "last"             
## [22591] "miles"             "felt"              "soon"             
## [22594] "behind"            "frodo"             "propped"          
## [22597] "back"              "tree"              "trunk"            
## [22600] "closed"            "eyes"              "sam"              
## [22603] "pippin"            "sat"               "near"             
## [22606] "began"             "hum"               "sing"             
## [22609] "softly"            "ho"                "ho"               
## [22612] "ho"                "bottle"            "go"               
## [22615] "heal"              "heart"             "drown"            
## [22618] "woe"               "rain"              "may"              
## [22621] "fall"              "wind"              "may"              
## [22624] "blow"              "many"              "miles"            
## [22627] "still"             "go"                "tall"             
## [22630] "tree"              "will"              "lie"              
## [22633] "let"               "clouds"            "go"               
## [22636] "sailing"           "ho"                "ho"               
## [22639] "ho"                "began"             "louder"           
## [22642] "stopped"           "short"             "suddenly"         
## [22645] "frodo"             "sprang"            "feet"             
## [22648] "long"              "drawn"             "wail"             
## [22651] "came"              "wind"              "like"             
## [22654] "cry"               "evil"              "lonely"           
## [22657] "creature"          "rose"              "fell"             
## [22660] "ended"             "high"              "piercing"         
## [22663] "note"              "even"              "sat"              
## [22666] "stood"             "suddenly"          "frozen"           
## [22669] "answered"          "another"           "cry"              
## [22672] "fainter"           "less"              "chilling"         
## [22675] "blood"             "silence"           "broken"           
## [22678] "sound"             "wind"              "leaves"           
## [22681] ""                  ""                  "think"            
## [22684] ""                  ""                  "pippin"           
## [22687] "asked"             "last"              "trying"           
## [22690] "speak"             "lightly"           "quavering"        
## [22693] "little"            ""                  ""                 
## [22696] "bird"              "one"               "never"            
## [22699] "heard"             "shire"             ""                 
## [22702] ""                  ""                  ""                 
## [22705] "bird"              "beast"             ""                 
## [22708] "said"              "frodo"             ""                 
## [22711] ""                  "call"              "signal"           
## [22714] "words"             "cry"               "though"           
## [22717] "catch"             "hobbit"            "voice"            
## [22720] ""                  "said"              "thinking"         
## [22723] "riders"            "one"               "spoke"            
## [22726] "now"               "reluctant"         "either"           
## [22729] "stay"              "go"                "sooner"           
## [22732] "later"             "got"               "get"              
## [22735] "across"            "open"              "country"          
## [22738] "ferry"             "best"              "go"               
## [22741] "sooner"            "daylight"          "moments"          
## [22744] "shouldered"        "packs"             "long"             
## [22747] "wood"              "came"              "sudden"           
## [22750] "end"               "wide"              "grass"            
## [22753] "lands"             "stretched"         "now"              
## [22756] "saw"               "fact"              "turned"           
## [22759] "much"              "south"             "away"             
## [22762] "flats"             "glimpse"           "low"              
## [22765] "hill"              "bucklebury"        "across"           
## [22768] "river"             "now"               "left"             
## [22771] "creeping"          "cautiously"        "edge"             
## [22774] "trees"             "set"               "across"           
## [22777] "open"              "quickly"           "first"            
## [22780] "felt"              "afraid"            "away"             
## [22783] "shelter"           "wood"              "far"              
## [22786] "back"              "behind"            "stood"            
## [22789] "high"              "place"             "breakfasted"      
## [22792] "frodo"             "half"              "expected"         
## [22795] "see"               "small"             "distant"          
## [22798] "figure"            "horseman"          "ridge"            
## [22801] "dark"              "sky"               "sign"             
## [22804] "one"               "sun"               "escaping"         
## [22807] "breaking"          "clouds"            "sank"             
## [22810] "towards"           "hills"             "left"             
## [22813] "now"               "shining"           "brightly"         
## [22816] "fear"              "left"              "though"           
## [22819] "still"             "felt"              "uneasy"           
## [22822] "land"              "became"            "steadily"         
## [22825] "tame"              "well"              "ordered"          
## [22828] "soon"              "came"              "well"             
## [22831] "tended"            "fields"            "meadows"          
## [22834] "hedges"            "gates"             "dikes"            
## [22837] "drainage"          "everything"        "seemed"           
## [22840] "quiet"             "peaceful"          "just"             
## [22843] "ordinary"          "corner"            "shire"            
## [22846] "spirits"           "rose"              "every"            
## [22849] "step"              "line"              "river"            
## [22852] "grew"              "nearer"            "black"            
## [22855] "riders"            "began"             "seem"             
## [22858] "like"              "phantoms"          "woods"            
## [22861] "now"               "left"              "far"              
## [22864] "behind"            "passed"            "along"            
## [22867] "edge"              "huge"              "turnip"           
## [22870] "field"             "came"              "stout"            
## [22873] "gate"              "beyond"            "rutted"           
## [22876] "lane"              "ran"               "low"              
## [22879] "well"              "laid"              "hedges"           
## [22882] "towards"           "distant"           "clump"            
## [22885] "trees"             "pippin"            "stopped"          
## [22888] ""                  ""                  "know"             
## [22891] "fields"            "gate"              ""                 
## [22894] "said"              ""                  ""                 
## [22897] "bamfurlong"        "old"               "farmer"           
## [22900] "maggot"            ""                  "land"             
## [22903] ""                  ""                  "farm"             
## [22906] "away"              "trees"             ""                 
## [22909] ""                  "one"               "trouble"          
## [22912] "another"           ""                  "said"             
## [22915] "frodo"             "looking"           "nearly"           
## [22918] "much"              "alarmed"           "pippin"           
## [22921] "declared"          "lane"              "slot"             
## [22924] "leading"           "dragon"            ""                 
## [22927] "den"               "others"            "looked"           
## [22930] "surprise"          ""                  ""                 
## [22933] ""                  "wrong"             "old"              
## [22936] "maggot"            ""                  "asked"            
## [22939] "pippin"            ""                  ""                 
## [22942] ""                  "good"              "friend"           
## [22945] "brandy"            "bucks"             "course"           
## [22948] ""                  ""                  "terror"           
## [22951] "trespassers"       "keeps"             "ferocious"        
## [22954] "dogs"              "folk"              "near"             
## [22957] "border"            "guard"             ""                 
## [22960] ""                  ""                  "know"             
## [22963] ""                  "said"              "frodo"            
## [22966] ""                  ""                  ""                 
## [22969] ""                  "added"             "shamefaced"       
## [22972] "laugh"             ""                  ""                 
## [22975] "terrified"         "dogs"              "avoided"          
## [22978] "farm"              "years"             "years"            
## [22981] "caught"            "several"           "times"            
## [22984] "trespassing"       "mushrooms"         "youngster"        
## [22987] "brandy"            "hall"              "last"             
## [22990] "occasion"          "beat"              "took"             
## [22993] "showed"            "dogs"              ""                 
## [22996] "see"               "lads"              ""                 
## [22999] "said"              ""                  "next"             
## [23002] "time"              "young"             "varmint"          
## [23005] "sets"              "foot"              "land"             
## [23008] "can"               "eat"               "now"              
## [23011] "see"               ""                  ""                 
## [23014] "chased"            "way"               "ferry"            
## [23017] "never"             "got"               "fright"           
## [23020] "though"            "daresay"           "beasts"           
## [23023] "knew"              "business"          "really"           
## [23026] "touched"           ""                  ""                 
## [23029] "pippin"            "laughed"           ""                 
## [23032] "well"              ""                  ""                 
## [23035] "time"              "made"              "especially"       
## [23038] "coming"            "back"              "live"             
## [23041] "buckland"          "old"               "maggot"           
## [23044] "really"            "stout"             "fellow"           
## [23047] "leave"             "mushrooms"         "alone"            
## [23050] "let"               ""                  "get"              
## [23053] "lane"              "shan"              ""                 
## [23056] "trespassing"       "meet"              ""                 
## [23059] "ll"                "talking"           "friend"           
## [23062] "merry"             ""                  "used"             
## [23065] "come"              "good"              "deal"             
## [23068] "one"               "time"              ""                 
## [23071] "went"              "along"             "lane"             
## [23074] "saw"               "thatched"          "roofs"            
## [23077] "large"             "house"             "farm"             
## [23080] "buildings"         "peeping"           "among"            
## [23083] "trees"             "ahead"             "maggots"          
## [23086] "puddifoots"        "stock"             "inhabitants"      
## [23089] "marish"            "house"             "dwellers"         
## [23092] "farm"              "stoutly"           "built"            
## [23095] "brick"             "high"              "wall"             
## [23098] "round"             "wide"              "wooden"           
## [23101] "gate"              "opening"           "wall"             
## [23104] "lane"              "suddenly"          "drew"             
## [23107] "nearer"            "terrific"          "baying"           
## [23110] "barking"           "broke"             "loud"             
## [23113] "voice"             "heard"             "shouting"         
## [23116] ""                  "grip"              "fang"             
## [23119] "wolf"              "come"              "lads"             
## [23122] ""                  "frodo"             "sam"              
## [23125] "stopped"           "dead"              "pippin"           
## [23128] "walked"            "paces"             "gate"             
## [23131] "opened"            "three"             "huge"             
## [23134] "dogs"              "came"              "pelting"          
## [23137] "lane"              "dashed"            "towards"          
## [23140] "travellers"        "barking"           "fiercely"         
## [23143] "took"              "notice"            "pippin"           
## [23146] "sam"               "shrank"            "wall"             
## [23149] "two"               "wolvish"           "looking"          
## [23152] "dogs"              "sniffed"           "suspiciously"     
## [23155] "snarled"           "moved"             "largest"          
## [23158] "ferocious"         "three"             "halted"           
## [23161] "front"             "frodo"             "bristling"        
## [23164] "growling"          "gate"              "now"              
## [23167] "appeared"          "broad"             "thick"            
## [23170] "set"               "hobbit"            "round"            
## [23173] "red"               "face"              ""                 
## [23176] "hallo"             "hallo"             "may"              
## [23179] "may"               "wanting"           ""                 
## [23182] "asked"             ""                  "good"             
## [23185] "afternoon"         "mr"                "maggot"           
## [23188] ""                  "said"              "pippin"           
## [23191] "farmer"            "looked"            "closely"          
## [23194] ""                  "well"              "isn"              
## [23197] ""                  "master"            "pippin"           
## [23200] "mr"                "peregrin"          "took"             
## [23203] "say"               ""                  "cried"            
## [23206] "changing"          "scowl"             "grin"             
## [23209] ""                  ""                  ""                 
## [23212] "long"              "time"              "since"            
## [23215] "saw"               "round"             ""                 
## [23218] ""                  "lucky"             "know"             
## [23221] "just"              "going"             "set"              
## [23224] "dogs"              "strangers"         "funny"            
## [23227] "things"            "going"             "today"            
## [23230] "course"            "get"               "queer"            
## [23233] "folk"              "wandering"         "parts"            
## [23236] "times"             "near"              "river"            
## [23239] ""                  "said"              "shaking"          
## [23242] "head"              ""                  ""                 
## [23245] "fellow"            "outlandish"        "ever"             
## [23248] "set"               "eyes"              "won"              
## [23251] ""                  "cross"             "land"             
## [23254] "without"           "leave"             "second"           
## [23257] "time"              "can"               "stop"             
## [23260] ""                  ""                  ""                 
## [23263] ""                  "fellow"            "mean"             
## [23266] ""                  "asked"             "pippin"           
## [23269] ""                  ""                  "haven"            
## [23272] ""                  "seen"              ""                 
## [23275] ""                  "said"              "farmer"           
## [23278] ""                  ""                  "went"             
## [23281] "lane"              "towards"           "causeway"         
## [23284] "long"              "back"              "funny"            
## [23287] "customer"          "asking"            "funny"            
## [23290] "questions"         "perhaps"           ""                 
## [23293] "ll"                "come"              "along"            
## [23296] "inside"            ""                  "ll"               
## [23299] "pass"              "news"              "comfortable"      
## [23302] ""                  "ve"                "drop"             
## [23305] "good"              "ale"               "tap"              
## [23308] "friends"           "willing"           "mr"               
## [23311] "took"              ""                  "seemed"           
## [23314] "plain"             "farmer"            "tell"             
## [23317] "allowed"           "time"              "fashion"          
## [23320] "accepted"          "invitation"        ""                 
## [23323] ""                  "dogs"              ""                 
## [23326] "asked"             "frodo"             "anxiously"        
## [23329] "farmer"            "laughed"           ""                 
## [23332] ""                  "won"               ""                 
## [23335] "harm"              "unless"            "tell"             
## [23338] ""                  "em"                "grip"             
## [23341] "fang"              "heel"              ""                 
## [23344] "cried"             ""                  "heel"             
## [23347] "wolf"              ""                  "relief"           
## [23350] "frodo"             "sam"               "dogs"             
## [23353] "walked"            "away"              "let"              
## [23356] "go"                "free"              "pippin"           
## [23359] "introduced"        "two"               "farmer"           
## [23362] ""                  "mr"                "frodo"            
## [23365] "baggins"           ""                  "said"             
## [23368] ""                  ""                  "may"              
## [23371] "remember"          "used"              "live"             
## [23374] "brandy"            "hall"              ""                 
## [23377] "name"              "baggins"           "farmer"           
## [23380] "started"           "gave"              "frodo"            
## [23383] "sharp"             "glance"            "moment"           
## [23386] "frodo"             "thought"           "memory"           
## [23389] "stolen"            "mushrooms"         "aroused"          
## [23392] "dogs"              "told"              "see"              
## [23395] "farmer"            "maggot"            "took"             
## [23398] "arm"               ""                  "well"             
## [23401] "isn"               ""                  "queerer"          
## [23404] "ever"              ""                  "exclaimed"        
## [23407] ""                  "mr"                "baggins"          
## [23410] "come"              "inside"            "must"             
## [23413] "talk"              ""                  "went"             
## [23416] "farmer"            ""                  "kitchen"          
## [23419] "sat"               "wide"              "fire"             
## [23422] "place"             "mrs"               "maggot"           
## [23425] "brought"           "beer"              "huge"             
## [23428] "jug"               "filled"            "four"             
## [23431] "large"             "mugs"              "good"             
## [23434] "brew"              "pippin"            "found"            
## [23437] "compensated"       "missing"           "golden"           
## [23440] "perch"             "sam"               "sipped"           
## [23443] "beer"              "suspiciously"      "natural"          
## [23446] "mistrust"          "inhabitants"       "parts"            
## [23449] "shire"             "also"              "disposed"         
## [23452] "quick"             "friends"           "anyone"           
## [23455] "beaten"            "master"            "however"          
## [23458] "long"              "ago"               "remarks"          
## [23461] "weather"           "agricultural"      "prospects"        
## [23464] "worse"             "usual"             "farmer"           
## [23467] "maggot"            "put"               "mug"              
## [23470] "looked"            "turn"              ""                 
## [23473] "now"               "mr"                "peregrin"         
## [23476] ""                  "said"              ""                 
## [23479] ""                  "might"             "coming"           
## [23482] "might"             "going"             "coming"           
## [23485] "visit"             ""                  "gone"             
## [23488] "past"              "gate"              "without"          
## [23491] "seeing"            ""                  ""                 
## [23494] ""                  "well"              ""                 
## [23497] ""                  "answered"          "pippin"           
## [23500] ""                  ""                  "tell"             
## [23503] "truth"             "since"             "guessed"          
## [23506] "got"               "lane"              "end"              
## [23509] "come"              "fields"            "quite"            
## [23512] "accident"          "lost"              "way"              
## [23515] "woods"             "back"              "near"             
## [23518] "woodhall"          "trying"            "take"             
## [23521] "short"             "cut"               "ferry"            
## [23524] ""                  ""                  ""                 
## [23527] "hurry"             "road"              "served"           
## [23530] "better"            ""                  "said"             
## [23533] "farmer"            ""                  ""                 
## [23536] "wasn"              ""                  "worrying"         
## [23539] "leave"             "walk"              "land"             
## [23542] "mind"              "mr"                "peregrin"         
## [23545] "mr"                "baggins"           "though"           
## [23548] "daresay"           "still"             "like"             
## [23551] "mushrooms"         ""                  "laughed"          
## [23554] ""                  "ah"                "yes"              
## [23557] "recognized"        "name"              "recollect"        
## [23560] "time"              "young"             "frodo"            
## [23563] "baggins"           "one"               "worst"            
## [23566] "young"             "rascals"           "buckland"         
## [23569] "wasn"              ""                  "mushrooms"        
## [23572] "thinking"          "just"              "heard"            
## [23575] "name"              "baggins"           "turned"           
## [23578] "think"             "funny"             "customer"         
## [23581] "asked"             ""                  ""                 
## [23584] "waited"            "anxiously"         "go"               
## [23587] ""                  "well"              ""                 
## [23590] "farmer"            "continued"         "approaching"      
## [23593] "point"             "slow"              "relish"           
## [23596] ""                  ""                  "came"             
## [23599] "riding"            "big"               "black"            
## [23602] "horse"             "gate"              "happened"         
## [23605] "open"              "right"             "door"             
## [23608] "black"             "cloaked"           "hooded"           
## [23611] "want"              "known"             ""                 
## [23614] "now"               "shire"             "can"              
## [23617] "want"              ""                  "thought"          
## [23620] "don"               ""                  "see"              
## [23623] "many"              "big"               "folk"             
## [23626] "border"            "anyway"            "never"            
## [23629] "heard"             "like"              "black"            
## [23632] "fellow"            ""                  ""                 
## [23635] ""                  "good"              "day"              
## [23638] ""                  ""                  "says"             
## [23641] "going"             ""                  ""                 
## [23644] "lane"              "don"               ""                 
## [23647] "lead"              "anywhere"          "wherever"         
## [23650] "may"               "going"             "quickest"         
## [23653] "way"               "will"              "back"             
## [23656] "road"              ""                  "didn"             
## [23659] ""                  "like"              "looks"            
## [23662] "grip"              "came"              "took"             
## [23665] "one"               "sniff"             "let"              
## [23668] "yelp"              "slung"             "put"              
## [23671] "tail"              "bolted"            "howling"          
## [23674] "black"             "fellow"            "sat"              
## [23677] "quite"             "still"             ""                 
## [23680] ""                  ""                  ""                 
## [23683] "come"              "yonder"            ""                 
## [23686] "said"              "slow"              "stiff"            
## [23689] "like"              "pointing"          "back"             
## [23692] "west"              "fields"            "please"           
## [23695] ""                  ""                  "seen"             
## [23698] "baggins"           ""                  "asked"            
## [23701] "queer"             "voice"             "bent"             
## [23704] "towards"           "see"               "face"             
## [23707] "hood"              "fell"              "low"              
## [23710] "felt"              "sort"              "shiver"           
## [23713] "back"              "see"               "come"             
## [23716] "riding"            "land"              "bold"             
## [23719] ""                  ""                  ""                 
## [23722] ""                  ""                  ""                 
## [23725] "said"              ""                  ""                 
## [23728] "bagginses"         ""                  "re"               
## [23731] "wrong"             "part"              "shire"            
## [23734] "better"            "go"                "back"             
## [23737] "west"              "hobbiton"          "can"              
## [23740] "go"                "road"              "time"             
## [23743] ""                  ""                  ""                 
## [23746] ""                  "baggins"           "left"             
## [23749] ""                  "answered"          "whisper"          
## [23752] ""                  ""                  "coming"           
## [23755] "far"               "away"              "wish"             
## [23758] "find"              "passes"            "will"             
## [23761] "tell"              "will"              "come"             
## [23764] "back"              "gold"              ""                 
## [23767] ""                  ""                  ""                 
## [23770] ""                  "won"               ""                 
## [23773] ""                  ""                  "said"             
## [23776] ""                  ""                  "ll"               
## [23779] "go"                "back"              "belong"           
## [23782] "double"            "quick"             "give"             
## [23785] "one"               "minute"            "call"             
## [23788] "dogs"              ""                  ""                 
## [23791] ""                  "gave"              "sort"             
## [23794] "hiss"              "might"             "laughing"         
## [23797] "might"             "spurred"           "great"            
## [23800] "horse"             "right"             "jumped"           
## [23803] "way"               "just"              "time"             
## [23806] "called"            "dogs"              "swung"            
## [23809] "rode"              "gate"              "lane"             
## [23812] "towards"           "causeway"          "like"             
## [23815] "bolt"              "thunder"           "think"            
## [23818] ""                  ""                  "frodo"            
## [23821] "sat"               "moment"            "looking"          
## [23824] "fire"              "thought"           "earth"            
## [23827] "reach"             "ferry"             ""                 
## [23830] ""                  "don"               ""                 
## [23833] "know"              "think"             ""                 
## [23836] "said"              "last"              ""                 
## [23839] ""                  ""                  "ll"               
## [23842] "tell"              "think"             ""                 
## [23845] "said"              "maggot"            ""                 
## [23848] ""                  "never"             "gone"             
## [23851] "mixing"            "hobbiton"          "folk"             
## [23854] "mr"                "frodo"             "folk"             
## [23857] "queer"             ""                  ""                 
## [23860] "sam"               "stirred"           "chair"            
## [23863] "looked"            "farmer"            "unfriendly"       
## [23866] "eye"               ""                  ""                 
## [23869] "always"            "reckless"          "lad"              
## [23872] "heard"             "left"              "brandybucks"      
## [23875] "gone"              "old"               "mr"               
## [23878] "bilbo"             "said"              "going"            
## [23881] "find"              "trouble"           "mark"             
## [23884] "words"             "comes"             "strange"          
## [23887] "doings"            "mr"                "bilbo"            
## [23890] ""                  "money"             "got"              
## [23893] "strange"           "fashion"           "foreign"          
## [23896] "parts"             "say"               "maybe"            
## [23899] "want"              "know"              "become"           
## [23902] "gold"              "jewels"            "buried"           
## [23905] "hill"              "hobbiton"          "hear"             
## [23908] ""                  "frodo"             "said"             
## [23911] "nothing"           "shrewd"            "guesses"          
## [23914] "farmer"            "rather"            "disconcerting"    
## [23917] ""                  "well"              "mr"               
## [23920] "frodo"             ""                  "maggot"           
## [23923] "went"              ""                  ""                 
## [23926] ""                  "glad"              ""                 
## [23929] "ve"                "sense"             "come"             
## [23932] "back"              "buckland"          "advice"           
## [23935] "stay"              "don"               ""                 
## [23938] "get"               "mixed"             "outlandish"       
## [23941] "folk"              ""                  "ll"               
## [23944] "friends"           "parts"             "black"            
## [23947] "fellows"           "come"              ""                 
## [23950] "ll"                "deal"              ""                 
## [23953] "ll"                "say"               ""                 
## [23956] "re"                "dead"              "left"             
## [23959] "shire"             "anything"          "like"             
## [23962] "might"             "true"              "enough"           
## [23965] "like"              "old"               "mr"               
## [23968] "bilbo"             "want"              "news"             
## [23971] ""                  ""                  ""                 
## [23974] "maybe"             ""                  "re"               
## [23977] "right"             ""                  "said"             
## [23980] "frodo"             "avoiding"          "farmer"           
## [23983] ""                  "eye"               "staring"          
## [23986] "fire"              "maggot"            "looked"           
## [23989] "thoughtfully"      ""                  "well"             
## [23992] "see"               "ideas"             ""                 
## [23995] ""                  "said"              ""                 
## [23998] ""                  "plain"             "nose"             
## [24001] "accident"          "brought"           "rider"            
## [24004] "afternoon"         "maybe"             "news"             
## [24007] "great"             "news"              "asking"           
## [24010] "tell"              "anything"          "mind"             
## [24013] "keep"              "see"               "kind"             
## [24016] "trouble"           "perhaps"           "thinking"         
## [24019] "won"               ""                  "easy"             
## [24022] "get"               "ferry"             "without"          
## [24025] "caught"            ""                  ""                 
## [24028] ""                  "thinking"          ""                 
## [24031] ""                  "said"              "frodo"            
## [24034] ""                  ""                  "got"              
## [24037] "try"               "get"               "won"              
## [24040] ""                  "done"              "sitting"          
## [24043] "thinking"          "afraid"            "must"             
## [24046] "going"             "thank"             "much"             
## [24049] "indeed"            "kindness"          ""                 
## [24052] "ve"                "terror"            "dogs"             
## [24055] "thirty"            "years"             "farmer"           
## [24058] "maggot"            "though"            "may"              
## [24061] "laugh"             "hear"              ""                 
## [24064] ""                  "pity"              ""                 
## [24067] "ve"                "missed"            "good"             
## [24070] "friend"            "now"               ""                 
## [24073] ""                  "sorry"             "leave"            
## [24076] "soon"              ""                  "ll"               
## [24079] "come"              "back"              "perhaps"          
## [24082] "one"               "day"               "get"              
## [24085] "chance"            ""                  ""                 
## [24088] ""                  "ll"                "welcome"          
## [24091] "come"              ""                  "said"             
## [24094] "maggot"            ""                  ""                 
## [24097] "now"               ""                  "ve"               
## [24100] "notion"            ""                  ""                 
## [24103] "near"              "sundown"           "already"          
## [24106] "going"             "supper"            "mostly"           
## [24109] "go"                "bed"               "soon"             
## [24112] "sun"               "mr"                "peregrin"         
## [24115] "stay"              "bite"              "us"               
## [24118] "pleased"           ""                  ""                 
## [24121] ""                  ""                  ""                 
## [24124] "said"              "frodo"             ""                 
## [24127] ""                  "must"              "going"            
## [24130] ""                  ""                  "afraid"           
## [24133] "even"              "now"               "will"             
## [24136] "dark"              "can"               "reach"            
## [24139] "ferry"             ""                  ""                 
## [24142] "ah"                "wait"              "minute"           
## [24145] "going"             "say"               "bit"              
## [24148] "supper"            ""                  "ll"               
## [24151] "gel"               "small"             "waggon"           
## [24154] ""                  "ll"                "drive"            
## [24157] "ferry"             "will"              "save"             
## [24160] "good"              "step"              "might"            
## [24163] "also"              "save"              "trouble"          
## [24166] "another"           "sort"              ""                 
## [24169] "frodo"             "now"               "accepted"         
## [24172] "invitation"        "gratefully"        "relief"           
## [24175] "pippin"            "sam"               "sun"              
## [24178] "already"           "behind"            "western"          
## [24181] "hills"             "light"             "failing"          
## [24184] "two"               "maggot"            ""                 
## [24187] "sons"              "three"             "daughters"        
## [24190] "came"              "generous"          "supper"           
## [24193] "laid"              "large"             "table"            
## [24196] "kitchen"           "lit"               "candles"          
## [24199] "fire"              "mended"            "mrs"              
## [24202] "maggot"            "hustled"           "one"              
## [24205] "two"               "hobbits"           "belonging"        
## [24208] "farm"              "household"         "came"             
## [24211] "short"             "fourteen"          "sat"              
## [24214] "eat"               "beer"              "plenty"           
## [24217] "mighty"            "dish"              "mushrooms"        
## [24220] "bacon"             "besides"           "much"             
## [24223] "solid"             "farmhouse"         "fare"             
## [24226] "dogs"              "lay"               "fire"             
## [24229] "gnawed"            "rinds"             "cracked"          
## [24232] "bones"             "finished"          "farmer"           
## [24235] "sons"              "went"              "lantern"          
## [24238] "got"               "waggon"            "ready"            
## [24241] "dark"              "yard"              "guests"           
## [24244] "came"              "threw"             "packs"            
## [24247] "board"             "climbed"           "farmer"           
## [24250] "sat"               "driving"           "seat"             
## [24253] "whipped"           "two"               "stout"            
## [24256] "ponies"            "wife"              "stood"            
## [24259] "light"             "open"              "door"             
## [24262] ""                  ""                  "careful"          
## [24265] "maggot"            ""                  "called"           
## [24268] ""                  "don"               ""                 
## [24271] "go"                "arguing"           "foreigners"       
## [24274] "come"              "straight"          "back"             
## [24277] ""                  ""                  ""                 
## [24280] "will"              ""                  "said"             
## [24283] "drove"             "gate"              "now"              
## [24286] "breath"            "wind"              "stirring"         
## [24289] "night"             "still"             "quiet"            
## [24292] "chill"             "air"               "went"             
## [24295] "without"           "lights"            "took"             
## [24298] "slowly"            "mile"              "two"              
## [24301] "lane"              "came"              "end"              
## [24304] "crossing"          "deep"              "dike"             
## [24307] "climbing"          "short"             "slope"            
## [24310] "high"              "banked"            "causeway"         
## [24313] "maggot"            "got"               "took"             
## [24316] "good"              "look"              "either"           
## [24319] "way"               "north"             "south"            
## [24322] "nothing"           "seen"              "darkness"         
## [24325] "sound"             "still"             "air"              
## [24328] "thin"              "strands"           "river"            
## [24331] "mist"              "hanging"           "dikes"            
## [24334] "crawling"          "fields"            ""                 
## [24337] ""                  ""                  "going"            
## [24340] "thick"             ""                  "said"             
## [24343] "maggot"            ""                  ""                 
## [24346] ""                  "ll"                "light"            
## [24349] "lantern"           "till"              "turn"             
## [24352] "home"              ""                  "ll"               
## [24355] "hear"              "anything"          "road"             
## [24358] "long"              "meet"              "tonight"          
## [24361] ""                  "five"              "miles"            
## [24364] "maggot"            ""                  "lane"             
## [24367] "ferry"             "hobbits"           "wrapped"          
## [24370] "ears"              "strained"          "sound"            
## [24373] "creak"             "wheels"            "slow"             
## [24376] "clop"              "ponies"            ""                 
## [24379] "hoofs"             "waggon"            "seemed"           
## [24382] "slower"            "snail"             "frodo"            
## [24385] "beside"            "pippin"            "nodding"          
## [24388] "towards"           "sleep"             "sam"              
## [24391] "staring"           "forwards"          "rising"           
## [24394] "fog"               "reached"           "entrance"         
## [24397] "ferry"             "lane"              "last"             
## [24400] "marked"            "two"               "tall"             
## [24403] "white"             "posts"             "suddenly"         
## [24406] "loomed"            "right"             "farmer"           
## [24409] "maggot"            "drew"              "ponies"           
## [24412] "waggon"            "creaked"           "halt"             
## [24415] "just"              "beginning"         "lo"               
## [24418] "scramble"          "suddenly"          "heard"            
## [24421] "dreading"          "hoofs"             "road"             
## [24424] "ahead"             "sound"             "coming"           
## [24427] "towards"           "maggot"            "jumped"           
## [24430] "stood"             "holding"           "ponies"           
## [24433] ""                  "heads"             "peering"          
## [24436] "forward"           "gloom"             "clip"             
## [24439] "clop"              "clip"              "clop"             
## [24442] "came"              "approaching"       "rider"            
## [24445] "fall"              "hoofs"             "sounded"          
## [24448] "loud"              "still"             "foggy"            
## [24451] "air"               ""                  ""                 
## [24454] ""                  "better"            "hidden"           
## [24457] "mr"                "frodo"             ""                 
## [24460] "said"              "sam"               "anxiously"        
## [24463] ""                  ""                  "get"              
## [24466] "waggon"            "cover"             "blankets"         
## [24469] ""                  "ll"                "send"             
## [24472] "rider"             "rightabouts"       ""                 
## [24475] "climbed"           "went"              "farmer"           
## [24478] ""                  "side"              "black"            
## [24481] "riders"            "ride"              "get"              
## [24484] "near"              "waggon"            "clop"             
## [24487] "clop"              "clop"              "clop"             
## [24490] "rider"             "nearly"            ""                 
## [24493] "hallo"             ""                  ""                 
## [24496] "called"            "farmer"            "maggot"           
## [24499] "advancing"         "hoofs"             "stopped"          
## [24502] "short"             "thought"           "dimly"            
## [24505] "guess"             "dark"              "cloaked"          
## [24508] "shape"             "mist"              "yard"             
## [24511] "two"               "ahead"             ""                 
## [24514] "now"               ""                  ""                 
## [24517] "said"              "farmer"            "throwing"         
## [24520] "reins"             "sam"               "striding"         
## [24523] "forward"           ""                  "don"              
## [24526] ""                  "come"              "step"             
## [24529] "nearer"            "want"              "going"            
## [24532] ""                  ""                  ""                 
## [24535] "want"              "mr"                "baggins"          
## [24538] "seen"              ""                  ""                 
## [24541] "said"              "muffled"           "voice"            
## [24544] "voice"             "voice"             "merry"            
## [24547] "brandybuck"        "dark"              "lantern"          
## [24550] "uncovered"         "light"             "fell"             
## [24553] "astonished"        "face"              "farmer"           
## [24556] ""                  "mr"                "merry"            
## [24559] ""                  "cried"             ""                 
## [24562] "yes"               "course"            "think"            
## [24565] ""                  ""                  "said"             
## [24568] "merry"             "coming"            "forward"          
## [24571] "came"              "mist"              "fears"            
## [24574] "subsided"          "seemed"            "suddenly"         
## [24577] "diminish"          "ordinary"          "hobbit"           
## [24580] "size"              "riding"            "pony"             
## [24583] "scarf"             "swathed"           "round"            
## [24586] "neck"              "chin"              "keep"             
## [24589] "fog"               "frodo"             "sprang"           
## [24592] "waggon"            "greet"             ""                 
## [24595] ""                  "last"              ""                 
## [24598] "said"              "merry"             ""                 
## [24601] ""                  "beginning"         "wonder"           
## [24604] "turn"              "today"             "just"             
## [24607] "going"             "back"              "supper"           
## [24610] "grew"              "foggy"             "came"             
## [24613] "across"            "rode"              "towards"          
## [24616] "stock"             "see"               "fallen"           
## [24619] "ditches"           ""                  ""                 
## [24622] "blest"             "know"              "way"              
## [24625] "come"              "find"              "mr"               
## [24628] "maggot"            "duck"              "pond"             
## [24631] ""                  ""                  ""                 
## [24634] "caught"            ""                  "em"               
## [24637] "trespassing"       ""                  "said"             
## [24640] "farmer"            ""                  ""                 
## [24643] "nearly"            "set"               "dogs"             
## [24646] ""                  "em"                ""                 
## [24649] "ll"                "tell"              "story"            
## [24652] ""                  "ve"                "doubt"            
## [24655] "now"               ""                  "ll"               
## [24658] "excuse"            "mr"                "merry"            
## [24661] "mr"                "frodo"             ""                 
## [24664] ""                  "best"              "turning"          
## [24667] "home"              "mrs"               "maggot"           
## [24670] "will"              "worriting"         "night"            
## [24673] "getting"           "thick"             ""                 
## [24676] "backed"            "waggon"            "lane"             
## [24679] "turned"            ""                  "well"             
## [24682] "good"              "night"             ""                 
## [24685] ""                  "said"              ""                 
## [24688] ""                  ""                  "queer"            
## [24691] "day"               "mistake"           ""                 
## [24694] ""                  "well"              "ends"             
## [24697] "well"              "though"            "perhaps"          
## [24700] "say"               "reach"             "doors"            
## [24703] ""                  "ll"                "deny"             
## [24706] ""                  "ll"                "glad"             
## [24709] "now"               ""                  ""                 
## [24712] "lit"               "lanterns"          "got"              
## [24715] "suddenly"          "produced"          "large"            
## [24718] "basket"            "seat"              ""                 
## [24721] ""                  "nearly"            "forgetting"       
## [24724] ""                  "said"              ""                 
## [24727] "mrs"               "maggot"            "put"              
## [24730] "mr"                "baggins"           "compliments"      
## [24733] ""                  "handed"            "moved"            
## [24736] "followed"          "chorus"            "thanks"           
## [24739] "good"              "nights"            "watched"          
## [24742] "pale"              "rings"             "light"            
## [24745] "round"             "lanterns"          "dwindled"         
## [24748] "foggy"             "night"             "suddenly"         
## [24751] "frodo"             "laughed"           "covered"          
## [24754] "basket"            "held"              "scent"            
## [24757] "mushrooms"         "rising"            "chapter"          
## [24760] "conspiracy"        "unmasked"          ""                 
## [24763] "now"               "better"            "get"              
## [24766] "home"              ""                  ""                 
## [24769] "said"              "merry"             ""                 
## [24772] ""                  "something"         "funny"            
## [24775] "see"               "must"              "wait"             
## [24778] "till"              "get"               ""                 
## [24781] ""                  "turned"            "ferry"            
## [24784] "lane"              "straight"          "well"             
## [24787] "kept"              "edged"             "large"            
## [24790] "white"             "washed"            "stones"           
## [24793] "hundred"           "yards"             "brought"          
## [24796] "river"             "bank"              "broad"            
## [24799] "wooden"            "landing"           "stage"            
## [24802] "large"             "flat"              "ferry"            
## [24805] "boat"              "moored"            "beside"           
## [24808] "white"             "bollards"          "near"             
## [24811] "water"             ""                  "edge"             
## [24814] "glimmered"         "light"             "two"              
## [24817] "lamps"             "high"              "posts"            
## [24820] "behind"            "mists"             "flat"             
## [24823] "fields"            "now"               "hedges"           
## [24826] "water"             "dark"              "curling"          
## [24829] "wisps"             "like"              "steam"            
## [24832] "among"             "reeds"             "bank"             
## [24835] "seemed"            "less"              "fog"              
## [24838] "side"              "merry"             "led"              
## [24841] "pony"              "gangway"           "ferry"            
## [24844] "others"            "followed"          "merry"            
## [24847] "pushed"            "slowly"            "long"             
## [24850] "pole"              "brandywine"        "flowed"           
## [24853] "slow"              "broad"             "side"             
## [24856] "bank"              "steep"             "winding"          
## [24859] "path"              "climbed"           "landing"          
## [24862] "lamps"             "twinkling"         "behind"           
## [24865] "loomed"            "buck"              "hill"             
## [24868] "stray"             "shrouds"           "mist"             
## [24871] "shone"             "many"              "round"            
## [24874] "windows"           "yellow"            "red"              
## [24877] "windows"           "brandy"            "hall"             
## [24880] "ancient"           "home"              "brandybucks"      
## [24883] "long"              "ago"               "gorhendad"        
## [24886] "oldbuck"           "head"              "oldbuck"          
## [24889] "family"            "one"               "oldest"           
## [24892] "marish"            "indeed"            "shire"            
## [24895] "crossed"           "river"             "original"         
## [24898] "boundary"          "land"              "eastwards"        
## [24901] "built"             "excavated"         "brandy"           
## [24904] "hall"              "changed"           "name"             
## [24907] "brandybuck"        "settled"           "become"           
## [24910] "master"            "virtually"         "small"            
## [24913] "independent"       "country"           "family"           
## [24916] "grew"              "grew"              "days"             
## [24919] "continued"         "grow"              "brandy"           
## [24922] "hall"              "occupied"          "whole"            
## [24925] "low"               "hill"              "three"            
## [24928] "large"             "front"             "doors"            
## [24931] "many"              "side"              "doors"            
## [24934] "hundred"           "windows"           "brandybucks"      
## [24937] "numerous"          "dependants"        "began"            
## [24940] "burrow"            "later"             "build"            
## [24943] "round"             "origin"            "buckland"         
## [24946] "thickly"           "inhabited"         "strip"            
## [24949] "river"             "old"               "forest"           
## [24952] "sort"              "colony"            "shire"            
## [24955] "chief"             "village"           "bucklebury"       
## [24958] "clustering"        "banks"             "slopes"           
## [24961] "behind"            "brandy"            "hall"             
## [24964] "people"            "marish"            "friendly"         
## [24967] "bucklanders"       "authority"         "master"           
## [24970] "hall"              "head"              "brandybuck"       
## [24973] "family"            "called"            "still"            
## [24976] "acknowledged"      "farmers"           "stock"            
## [24979] "rushey"            "folk"              "old"              
## [24982] "shire"             "regarded"          "bucklanders"      
## [24985] "peculiar"          "half"              "foreigners"       
## [24988] "though"            "matter"            "fact"             
## [24991] "different"         "hobbits"           "four"             
## [24994] "farthings"         "except"            "one"              
## [24997] "point"             "fond"              "boats"            
## [25000] "swim"              "land"              "originally"       
## [25003] "unprotected"       "east"              "side"             
## [25006] "built"             "hedge"             "high"             
## [25009] "hay"               "planted"           "many"             
## [25012] "generations"       "ago"               "now"              
## [25015] "thick"             "tail"              "constantly"       
## [25018] "tended"            "ran"               "way"              
## [25021] "brandywine"        "bridge"            "big"              
## [25024] "loop"              "curving"           "away"             
## [25027] "river"             "haysend"           "withywindle"      
## [25030] "flowed"            "forest"            "brandywine"       
## [25033] "well"              "twenty"            "miles"            
## [25036] "end"               "end"               "course"           
## [25039] "complete"          "protection"        "forest"           
## [25042] "drew"              "close"             "hedge"            
## [25045] "many"              "places"            "bucklanders"      
## [25048] "kept"              "doors"             "locked"           
## [25051] "dark"              "also"              "usual"            
## [25054] "shire"             "ferry"             "boat"             
## [25057] "moved"             "slowly"            "across"           
## [25060] "water"             "buckland"          "shore"            
## [25063] "drew"              "nearer"            "sam"              
## [25066] "member"            "party"             "river"            
## [25069] "strange"           "feeling"           "slow"             
## [25072] "gurgling"          "stream"            "slipped"          
## [25075] "old"               "life"              "lay"              
## [25078] "behind"            "mists"             "dark"             
## [25081] "adventure"         "lay"               "front"            
## [25084] "scratched"         "head"              "moment"           
## [25087] "passing"           "wish"              "mr"               
## [25090] "frodo"             "gone"              "living"           
## [25093] "quietly"           "bag"               "end"              
## [25096] "four"              "hobbits"           "stepped"          
## [25099] "ferry"             "merry"             "tying"            
## [25102] "pippin"            "already"           "leading"          
## [25105] "pony"              "path"              "sam"              
## [25108] "looking"           "back"              "take"             
## [25111] "farewell"          "shire"             "said"             
## [25114] "hoarse"            "whisper"           ""                 
## [25117] "look"              "back"              "mr"               
## [25120] "frodo"             "see"               "anything"         
## [25123] ""                  "far"               "stage"            
## [25126] "distant"           "lamps"             "just"             
## [25129] "make"              "figure"            "looked"           
## [25132] "like"              "dark"              "black"            
## [25135] "bundle"            "left"              "behind"           
## [25138] "looked"            "seemed"            "move"             
## [25141] "sway"              "way"               "searching"        
## [25144] "ground"            "crawled"           "went"             
## [25147] "crouching"         "back"              "gloom"            
## [25150] "beyond"            "lamps"             ""                 
## [25153] ""                  "shire"             ""                 
## [25156] ""                  "exclaimed"         "merry"            
## [25159] ""                  "something"         "following"        
## [25162] "us"                ""                  "said"             
## [25165] "frodo"             ""                  ""                 
## [25168] "don"               ""                  "ask"              
## [25171] "now"               "let"               ""                 
## [25174] "get"               "away"              ""                 
## [25177] ""                  "hurried"           "path"             
## [25180] "top"               "bank"              "looked"           
## [25183] "back"              "far"               "shore"            
## [25186] "shrouded"          "mist"              "nothing"          
## [25189] "seen"              ""                  "thank"            
## [25192] "goodness"          "don"               ""                 
## [25195] "keep"              "boats"             "west"             
## [25198] "bank"              ""                  "said"             
## [25201] "frodo"             ""                  "can"              
## [25204] "horses"            "cross"             "river"            
## [25207] ""                  ""                  ""                 
## [25210] "can"               "go"                "twenty"           
## [25213] "miles"             "north"             "brandywine"       
## [25216] "bridge"            "might"             "swim"             
## [25219] ""                  "answered"          "merry"            
## [25222] ""                  "though"            "never"            
## [25225] "heard"             "horse"             "swimming"         
## [25228] "brandywine"        "horses"            ""                 
## [25231] ""                  ""                  "ll"               
## [25234] "tell"              "later"             "let"              
## [25237] ""                  "get"               "indoors"          
## [25240] "can"               "talk"              ""                 
## [25243] ""                  ""                  "right"            
## [25246] "pippin"            "know"              "way"              
## [25249] ""                  "ll"                "just"             
## [25252] "ride"              "tell"              "fatty"            
## [25255] "bolger"            "coming"            ""                 
## [25258] "ll"                "see"               "supper"           
## [25261] "things"            ""                  ""                 
## [25264] ""                  "supper"            "early"            
## [25267] "farmer"            "maggot"            ""                 
## [25270] "said"              "frodo"             ""                 
## [25273] ""                  "another"           ""                 
## [25276] ""                  ""                  "shall"            
## [25279] "give"              "basket"            ""                 
## [25282] "said"              "merry"             "rode"             
## [25285] "ahead"             "darkness"          "distance"         
## [25288] "brandywine"        "frodo"             ""                 
## [25291] "new"               "house"             "crickhollow"      
## [25294] "passed"            "buck"              "hill"             
## [25297] "brandy"            "hall"              "left"             
## [25300] "outskirts"         "bucklebury"        "struck"           
## [25303] "main"              "road"              "buckland"         
## [25306] "ran"               "south"             "bridge"           
## [25309] "half"              "mile"              "northward"        
## [25312] "along"             "came"              "lane"             
## [25315] "opening"           "right"             "followed"         
## [25318] "couple"            "miles"             "climbed"          
## [25321] "country"           "last"              "came"             
## [25324] "narrow"            "gate"              "thick"            
## [25327] "hedge"             "nothing"           "seen"             
## [25330] "house"             "dark"              "stood"            
## [25333] "back"              "lane"              "middle"           
## [25336] "wide"              "circle"            "lawn"             
## [25339] "surrounded"        "belt"              "low"              
## [25342] "trees"             "inside"            "outer"            
## [25345] "hedge"             "frodo"             "chosen"           
## [25348] "stood"             "way"               "corner"           
## [25351] "country"           "dwellings"         "close"            
## [25354] "get"               "without"           "noticed"          
## [25357] "built"             "long"              "brandybucks"      
## [25360] "use"               "guests"            "members"          
## [25363] "family"            "wished"            "escape"           
## [25366] "crowded"           "life"              "brandy"           
## [25369] "hall"              "time"              "old"              
## [25372] "fashioned"         "countrified"       "house"            
## [25375] "much"              "like"              "hobbit"           
## [25378] "hole"              "possible"          "long"             
## [25381] "low"               "upper"             "storey"           
## [25384] "roof"              "turf"              "round"            
## [25387] "windows"           "large"             "round"            
## [25390] "door"              "walked"            "lip"              
## [25393] "green"             "path"              "gate"             
## [25396] "light"             "visible"           "windows"          
## [25399] "dark"              "shuttered"         "frodo"            
## [25402] "knocked"           "door"              "fatty"            
## [25405] "bolger"            "opened"            "friendly"         
## [25408] "light"             "streamed"          "slipped"          
## [25411] "quickly"           "shut"              "light"            
## [25414] "inside"            "wide"              "hall"             
## [25417] "doors"             "either"            "side"             
## [25420] "front"             "passage"           "ran"              
## [25423] "back"              "middle"            "house"            
## [25426] ""                  "well"              "think"            
## [25429] ""                  ""                  "asked"            
## [25432] "merry"             "coming"            "passage"          
## [25435] ""                  ""                  "done"             
## [25438] "best"              "short"             "time"             
## [25441] "make"              "look"              "like"             
## [25444] "home"              "fatty"             "got"              
## [25447] "last"              "cart"              "load"             
## [25450] "yesterday"         ""                  "frodo"            
## [25453] "looked"            "round"             "look"             
## [25456] "like"              "home"              "many"             
## [25459] "favourite"         "things"            "bilbo"            
## [25462] ""                  "things"            "reminded"         
## [25465] "sharply"           "new"               "selling"          
## [25468] "arranged"          "nearly"            "possible"         
## [25471] "bag"               "end"               "pleasant"         
## [25474] "comfortable"       "welcoming"         "place"            
## [25477] "found"             "wishing"           "really"           
## [25480] "coming"            "settle"            "quiet"            
## [25483] "retirement"        "seemed"            "unfair"           
## [25486] "put"               "friends"           "trouble"          
## [25489] "wondered"          "going"             "break"            
## [25492] "news"              "must"              "leave"            
## [25495] "soon"              "indeed"            "yet"              
## [25498] "done"              "night"             "went"             
## [25501] "bed"               ""                  ""                 
## [25504] ""                  "delightful"        ""                 
## [25507] "said"              "effort"            ""                 
## [25510] ""                  "hardly"            "feel"             
## [25513] "moved"             ""                  ""                 
## [25516] "travellers"        "hung"              "cloaks"           
## [25519] "piled"             "packs"             "floor"            
## [25522] "merry"             "led"               "passage"          
## [25525] "threw"             "open"              "door"             
## [25528] "far"               "end"               "firelight"        
## [25531] "came"              "puff"              "steam"            
## [25534] ""                  ""                  "bath"             
## [25537] ""                  "cried"             "pippin"           
## [25540] ""                  ""                  "blessed"          
## [25543] "meriadoc"          ""                  ""                 
## [25546] ""                  "order"             "shall"            
## [25549] "go"                ""                  ""                 
## [25552] "said"              "frodo"             ""                 
## [25555] "eldest"            "first"             "quickest"         
## [25558] "first"             ""                  "ll"               
## [25561] "last"              "either"            "way"              
## [25564] "master"            "peregrin"          ""                 
## [25567] ""                  "trust"             "arrange"          
## [25570] "things"            "better"            ""                 
## [25573] ""                  "said"              "merry"            
## [25576] ""                  ""                  "can"              
## [25579] ""                  "begin"             "life"             
## [25582] "crickhollow"       "quarrel"           "baths"            
## [25585] "room"              "three"             "tubs"             
## [25588] "copper"            "full"              "boiling"          
## [25591] "water"             "also"              "towels"           
## [25594] "mats"              "soap"              "get"              
## [25597] "inside"            "quick"             ""                 
## [25600] "merry"             "fatty"             "went"             
## [25603] "kitchen"           "side"              "passage"          
## [25606] "busied"            "final"             "preparations"     
## [25609] "late"              "supper"            "snatches"         
## [25612] "competing"         "songs"             "came"             
## [25615] "bathroom"          "mixed"             "sound"            
## [25618] "splashing"         "wallowing"         "voice"            
## [25621] "pippin"            "suddenly"          "lifted"           
## [25624] "others"            "one"               "bilbo"            
## [25627] ""                  "favourite"         "bath"             
## [25630] "songs"             "sing"              "hey"              
## [25633] "bath"              "close"             "day"              
## [25636] "washes"            "weary"             "mud"              
## [25639] "away"              "loon"              "will"             
## [25642] "sing"              "water"             "hot"              
## [25645] "noble"             "thing"             "sweet"            
## [25648] "sound"             "falling"           "rain"             
## [25651] "brook"             "leaps"             "hill"             
## [25654] "plain"             "better"            "rain"             
## [25657] "rippling"          "streams"           "water"            
## [25660] "hot"               "smokes"            "steams"           
## [25663] "water"             "cold"              "may"              
## [25666] "pour"              "need"              "thirsty"          
## [25669] "throat"            "glad"              "indeed"           
## [25672] "better"            "beer"              "drink"            
## [25675] "lack"              "water"             "hot"              
## [25678] "poured"            "back"              "water"            
## [25681] "fair"              "leaps"             "high"             
## [25684] "fountain"          "white"             "beneath"          
## [25687] "sky"               "never"             "fountain"         
## [25690] "sound"             "sweet"             "splashing"        
## [25693] "hot"               "water"             "feet"             
## [25696] "terrific"          "splash"            "shout"            
## [25699] "whoa"              "frodo"             "appeared"         
## [25702] "lot"               "pippin"            ""                 
## [25705] "bath"              "imitated"          "fountain"         
## [25708] "leaped"            "high"              "merry"            
## [25711] "went"              "door"              ""                 
## [25714] ""                  "supper"            "beer"             
## [25717] "throat"            ""                  "called"           
## [25720] "frodo"             "came"              "drying"           
## [25723] "hair"              ""                  ""                 
## [25726] ""                  "much"              "water"            
## [25729] "air"               ""                  ""                 
## [25732] "coming"            "kitchen"           "finish"           
## [25735] ""                  "said"              ""                 
## [25738] "lawks"             ""                  "said"             
## [25741] "merry"             "looking"           "stone"            
## [25744] "floor"             "swimming"          ""                 
## [25747] ""                  "mop"               "get"              
## [25750] "anything"          "eat"               "peregrin"         
## [25753] ""                  "said"              ""                 
## [25756] "hurry"             "shan"              ""                 
## [25759] "wait"              ""                  ""                 
## [25762] "supper"            "kitchen"           "table"            
## [25765] "near"              "fire"              ""                 
## [25768] ""                  "suppose"           "three"            
## [25771] "won"               ""                  "want"             
## [25774] "mushrooms"         ""                  ""                 
## [25777] "said"              "fredegar"          "without"          
## [25780] "much"              "hope"              ""                 
## [25783] "yes"               "shall"             ""                 
## [25786] "cried"             "pippin"            ""                 
## [25789] ""                  "re"                "mine"             
## [25792] ""                  "said"              "frodo"            
## [25795] ""                  "given"             "mrs"              
## [25798] "maggot"            "queen"             "among"            
## [25801] "farmers"           ""                  "wives"            
## [25804] "take"              "greedy"            "hands"            
## [25807] "away"              ""                  "ll"               
## [25810] "serve"             ""                  ""                 
## [25813] "hobbits"           "passion"           "mushrooms"        
## [25816] "surpassing"        "even"              "greediest"        
## [25819] "likings"           "big"               "people"           
## [25822] "fact"              "partly"            "explains"         
## [25825] "young"             "frodo"             ""                 
## [25828] "long"              "expeditions"       "renowned"         
## [25831] "fields"            "marish"            "wrath"            
## [25834] "injured"           "maggot"            "occasion"         
## [25837] "plenty"            "even"              "according"        
## [25840] "hobbit"            "standards"         "also"             
## [25843] "many"              "things"            "follow"           
## [25846] "finished"          "even"              "fatty"            
## [25849] "bolger"            "heaved"            "sigh"             
## [25852] "content"           "pushed"            "back"             
## [25855] "table"             "drew"              "chairs"           
## [25858] "round"             "fire"              ""                 
## [25861] ""                  "ll"                "clear"            
## [25864] "later"             ""                  "said"             
## [25867] "merry"             ""                  "now"              
## [25870] "tell"              "guess"             "adventures"       
## [25873] "quite"             "fair"              "without"          
## [25876] "want"              "full"              "account"          
## [25879] "want"              "know"              "matter"           
## [25882] "old"               "maggot"            "spoke"            
## [25885] "like"              "sounded"           "almost"           
## [25888] "scared"            "possible"          ""                 
## [25891] ""                  ""                  "scared"           
## [25894] ""                  "said"              "pippin"           
## [25897] "pause"             "frodo"             "stared"           
## [25900] "fire"              "speak"             ""                 
## [25903] ""                  "chased"            "two"              
## [25906] "days"              "black"             "riders"           
## [25909] ""                  ""                  ""                 
## [25912] ""                  ""                  ""                 
## [25915] "black"             "figures"           "riding"           
## [25918] "black"             "horses"            ""                 
## [25921] "answered"          "pippin"            ""                 
## [25924] ""                  "frodo"             "won"              
## [25927] ""                  "talk"              "will"             
## [25930] "tell"              "whole"             "tale"             
## [25933] "beginning"         ""                  "gave"             
## [25936] "full"              "account"           "journey"          
## [25939] "time"              "left"              "hobbiton"         
## [25942] "sam"               "gave"              "various"          
## [25945] "supporting"        "nods"              "exclamations"     
## [25948] "frodo"             "remained"          "silent"           
## [25951] ""                  ""                  "think"            
## [25954] "making"            ""                  ""                 
## [25957] "said"              "merry"             ""                 
## [25960] ""                  "seen"              "black"            
## [25963] "shape"             "landing"           "stage"            
## [25966] "heard"             "queer"             "sound"            
## [25969] "maggot"            ""                  "voice"            
## [25972] "make"              "frodo"             ""                 
## [25975] ""                  "cousin"            "frodo"            
## [25978] "close"             ""                  "said"             
## [25981] "pippin"            ""                  ""                 
## [25984] "time"              "come"              "open"             
## [25987] "far"               "given"             "nothing"          
## [25990] "go"                "farmer"            "maggot"           
## [25993] ""                  "guess"             "something"        
## [25996] "old"               "bilbo"             ""                 
## [25999] "treasure"          ""                  ""                 
## [26002] ""                  "guess"             ""                 
## [26005] "said"              "frodo"             "hastily"          
## [26008] ""                  "maggot"            "know"             
## [26011] "anything"          ""                  ""                 
## [26014] "old"               "maggot"            "shrewd"           
## [26017] "fellow"            ""                  "said"             
## [26020] "merry"             ""                  ""                 
## [26023] "lot"               "goes"              "behind"           
## [26026] "round"             "face"              "come"             
## [26029] "talk"              ""                  "ve"               
## [26032] "heard"             "used"              "go"               
## [26035] "old"               "forest"            "one"              
## [26038] "time"              "reputation"        "knowing"          
## [26041] "good"              "many"              "strange"          
## [26044] "things"            "can"               "least"            
## [26047] "tell"              "us"                "frodo"            
## [26050] "whether"           "think"             "guess"            
## [26053] "good"              "bad"               ""                 
## [26056] ""                  ""                  "think"            
## [26059] ""                  "answered"          "frodo"            
## [26062] "slowly"            ""                  ""                 
## [26065] "good"              "guess"             "far"              
## [26068] "goes"              "connexion"         "bilbo"            
## [26071] ""                  "old"               "adventures"       
## [26074] "riders"            "looking"           "perhaps"          
## [26077] "one"               "say"               "searchingfor"     
## [26080] "also"              "fear"              "want"             
## [26083] "know"              "joke"              "safe"             
## [26086] "anywhere"          "else"              ""                 
## [26089] "looked"            "round"             "windows"          
## [26092] "walls"             "afraid"            "suddenly"         
## [26095] "give"              "way"               "others"           
## [26098] "looked"            "silence"           "exchanged"        
## [26101] "meaning"           "glances"           "among"            
## [26104] ""                  ""                  ""                 
## [26107] "coming"            "minute"            ""                 
## [26110] "whispered"         "pippin"            "merry"            
## [26113] "merry"             "nodded"            ""                 
## [26116] "well"              ""                  "said"             
## [26119] "frodo"             "last"              "sitting"          
## [26122] "straightening"     "back"              "made"             
## [26125] "decision"          ""                  ""                 
## [26128] "can"               ""                  "keep"             
## [26131] "dark"              "longer"            "got"              
## [26134] "something"         "tell"              "don"              
## [26137] ""                  "know"              "quite"            
## [26140] "begin"             ""                  ""                 
## [26143] ""                  "think"             "help"             
## [26146] ""                  ""                  "said"             
## [26149] "merry"             "quietly"           ""                 
## [26152] ""                  "telling"           ""                 
## [26155] ""                  ""                  ""                 
## [26158] "mean"              ""                  "said"             
## [26161] "frodo"             "looking"           "anxiously"        
## [26164] ""                  "just"              "dear"             
## [26167] "old"               "frodo"             "miserable"        
## [26170] "don"               ""                  "know"             
## [26173] "say"               "good"              "bye"              
## [26176] "meant"             "leave"             "shire"            
## [26179] "course"            "danger"            "come"             
## [26182] "sooner"            "expected"          "now"              
## [26185] "making"            "mind"              "go"               
## [26188] "don"               ""                  "want"             
## [26191] "sorry"             ""                  ""                 
## [26194] "frodo"             "opened"            "mouth"            
## [26197] "shut"              "look"              "surprise"         
## [26200] "comical"           "laughed"           ""                 
## [26203] "dear"              "old"               "frodo"            
## [26206] ""                  "said"              "pippin"           
## [26209] ""                  ""                  "really"           
## [26212] "think"             "thrown"            "dust"             
## [26215] "eyes"              "nearly"            "careful"          
## [26218] "clever"            "enough"            "obviously"        
## [26221] "planning"          "go"                "saying"           
## [26224] "farewell"          "haunts"            "year"             
## [26227] "since"             "april"             "constantly"       
## [26230] "heard"             "muttering"         ""                 
## [26233] "shall"             "ever"              "look"             
## [26236] "valley"            "wonder"            ""                 
## [26239] "things"            "like"              "pretending"       
## [26242] "come"              "end"               "money"            
## [26245] "actually"          "selling"           "beloved"          
## [26248] "bag"               "end"               "sackville"        
## [26251] "bagginses"         "close"             "talks"            
## [26254] "gandalf"           ""                  ""                 
## [26257] "good"              "heavens"           ""                 
## [26260] "said"              "frodo"             ""                 
## [26263] ""                  "thought"           "careful"          
## [26266] "clever"            "don"               ""                 
## [26269] "know"              "gandalf"           "say"              
## [26272] "shire"             "discussing"        "departure"        
## [26275] ""                  ""                  ""                 
## [26278] "oh"                ""                  ""                 
## [26281] "said"              "merry"             ""                 
## [26284] "don"               ""                  "worry"            
## [26287] "secret"            "won"               ""                 
## [26290] "keep"              "long"              "course"           
## [26293] "present"           "think"             "known"            
## [26296] "us"                "conspirators"      "must"             
## [26299] "remember"          "know"              "well"             
## [26302] "often"             "can"               "usually"          
## [26305] "guess"             "thinking"          "knew"             
## [26308] "bilbo"             "tell"              "truth"            
## [26311] "watching"          "rather"            "closely"          
## [26314] "ever"              "since"             "left"             
## [26317] "thought"           "go"                "sooner"           
## [26320] "later"             "indeed"            "expected"         
## [26323] "go"                "sooner"            "lately"           
## [26326] "anxious"           "terrified"         "might"            
## [26329] "give"              "us"                "slip"             
## [26332] "go"                "suddenly"          "like"             
## [26335] "ever"              "since"             "spring"           
## [26338] "kept"              "eyes"              "open"             
## [26341] "done"              "good"              "deal"             
## [26344] "planning"          "account"           "going"            
## [26347] "escape"            "easily"            ""                 
## [26350] ""                  ""                  "must"             
## [26353] "go"                ""                  "said"             
## [26356] "frodo"             ""                  ""                 
## [26359] "helped"            "dear"              "friends"          
## [26362] "wretched"          "us"                "use"              
## [26365] "trying"            "keep"              "since"            
## [26368] "guessed"           "much"              "please"           
## [26371] "help"              "hinder"            ""                 
## [26374] ""                  ""                  ""                 
## [26377] "understand"        ""                  "said"             
## [26380] "pippin"            ""                  ""                 
## [26383] "must"              "go"                "therefore"        
## [26386] "must"              "merry"             "coming"           
## [26389] "sam"               "excellent"         "fellow"           
## [26392] "jump"              "dragon"            ""                 
## [26395] "throat"            "save"              "trip"             
## [26398] "feet"              "will"              "need"             
## [26401] "one"               "companion"         "dangerous"        
## [26404] "adventure"         ""                  ""                 
## [26407] ""                  "dear"              "beloved"          
## [26410] "hobbits"           ""                  "said"             
## [26413] "frodo"             "deeply"            "moved"            
## [26416] ""                  ""                  "allow"            
## [26419] "decided"           "long"              "ago"              
## [26422] "speak"             "danger"            "understand"       
## [26425] "treasure"          "hunt"              "back"             
## [26428] "journey"           "flying"            "deadly"           
## [26431] "peril"             "deadly"            "peril"            
## [26434] ""                  ""                  ""                 
## [26437] "course"            "understand"        ""                 
## [26440] "said"              "merry"             "firmly"           
## [26443] ""                  ""                  "decided"          
## [26446] "come"              "know"              "ring"             
## [26449] "laughing"          "matter"            "going"            
## [26452] "best"              "help"              "enemy"            
## [26455] ""                  ""                  ""                 
## [26458] "ring"              ""                  "said"             
## [26461] "frodo"             "now"               "completely"       
## [26464] "amazed"            ""                  "yes"              
## [26467] "ring"              ""                  "said"             
## [26470] "merry"             ""                  ""                 
## [26473] "dear"              "old"               "hobbit"           
## [26476] "don"               ""                  "allow"            
## [26479] "inquisitiveness"   "friends"           "known"            
## [26482] "existence"         "ring"              "years"            
## [26485] "bilbo"             "went"              "away"             
## [26488] "fact"              "since"             "obviously"        
## [26491] "regarded"          "secret"            "kept"             
## [26494] "knowledge"         "head"              "formed"           
## [26497] "conspiracy"        "know"              "bilbo"            
## [26500] "course"            "well"              "know"             
## [26503] "young"             "also"              "careful"          
## [26506] "careful"           "enough"            "want"             
## [26509] "know"              "first"             "found"            
## [26512] "will"              "tell"              ""                 
## [26515] ""                  ""                  "go"               
## [26518] ""                  ""                  "said"             
## [26521] "frodo"             "faintly"           "sackville"        
## [26524] "bagginses"         "downfall"          "might"            
## [26527] "expect"            "one"               "day"              
## [26530] "year"              "party"             "happened"         
## [26533] "walking"           "along"             "road"             
## [26536] "saw"               "bilbo"             "ahead"            
## [26539] "suddenly"          "distance"          "bs"               
## [26542] "appeared"          "coming"            "towards"          
## [26545] "us"                "bilbo"             "slowed"           
## [26548] "hey"               "presto"            "vanished"         
## [26551] "startled"          "hardly"            "wits"             
## [26554] "hide"              "ordinary"          "fashion"          
## [26557] "got"               "hedge"             "walked"           
## [26560] "along"             "field"             "inside"           
## [26563] "peeping"           "road"              "bs"               
## [26566] "passed"            "looking"           "straight"         
## [26569] "bilbo"             "suddenly"          "reappeared"       
## [26572] "caught"            "glint"             "gold"             
## [26575] "put"               "something"         "back"             
## [26578] "trouser"           "pocket"            ""                 
## [26581] ""                  "kept"              "eyes"             
## [26584] "open"              "fact"              "confess"          
## [26587] "spied"             "must"              "admit"            
## [26590] "intriguing"        "teens"             "must"             
## [26593] "one"               "shire"             "besides"          
## [26596] "frodo"             "ever"              "seen"             
## [26599] "old"               "fellow"            ""                 
## [26602] "secret"            "book"              ""                 
## [26605] ""                  ""                  "read"             
## [26608] "book"              ""                  "cried"            
## [26611] "frodo"             ""                  "good"             
## [26614] "heavens"           "nothing"           "safe"             
## [26617] ""                  ""                  ""                 
## [26620] "safe"              "say"               ""                 
## [26623] "said"              "merry"             ""                 
## [26626] ""                  "one"               "rapid"            
## [26629] "glance"            "difficult"         "get"              
## [26632] "never"             "left"              "book"             
## [26635] "wonder"            "became"            "like"             
## [26638] "another"           "look"              "got"              
## [26641] "frodo"             ""                  ""                 
## [26644] ""                  "bag"               "end"              
## [26647] "must"              "taken"             "away"             
## [26650] ""                  ""                  "well"             
## [26653] "saying"            ""                  "merry"            
## [26656] "proceeded"         ""                  ""                 
## [26659] "kept"              "knowledge"         "till"             
## [26662] "spring"            "things"            "got"              
## [26665] "serious"           "formed"            "conspiracy"       
## [26668] "serious"           "meant"             "business"         
## [26671] "scrupulous"        "easy"              "nut"              
## [26674] "crack"             "gandalf"           "worse"            
## [26677] "want"              "introduced"        "chief"            
## [26680] "investigator"      "can"               "produce"          
## [26683] ""                  ""                  ""                 
## [26686] ""                  ""                  ""                 
## [26689] "said"              "frodo"             "looking"          
## [26692] "round"             "expected"          "masked"           
## [26695] "sinister"          "figure"            "come"             
## [26698] "cupboard"          ""                  "step"             
## [26701] "forward"           "sam"               ""                 
## [26704] "said"              "merry"             "sam"              
## [26707] "stood"             "face"              "scarlet"          
## [26710] "ears"              ""                  ""                 
## [26713] ""                  "collector"         "information"      
## [26716] "collected"         "lot"               "can"              
## [26719] "tell"              "finally"           "caught"           
## [26722] "may"               "say"               "seemed"           
## [26725] "regard"            "parole"            "dried"            
## [26728] ""                  ""                  ""                 
## [26731] "sam"               ""                  "cried"            
## [26734] "frodo"             "feeling"           "amazement"        
## [26737] "go"                "quite"             "unable"           
## [26740] "decide"            "whether"           "felt"             
## [26743] "angry"             "amused"            "relieved"         
## [26746] "merely"            "foolish"           ""                 
## [26749] "yes"               "sir"               ""                 
## [26752] "said"              "sam"               ""                 
## [26755] "begging"           "pardon"            "sir"              
## [26758] "meant"             "wrong"             "mr"               
## [26761] "frodo"             "mr"                "gandalf"          
## [26764] "matter"            "sense"             "mind"             
## [26767] "said"              "go"                "alone"            
## [26770] "said"              "take"              "someone"          
## [26773] "can"               "trust"             ""                 
## [26776] ""                  ""                  "seem"             
## [26779] "can"               "trust"             "anyone"           
## [26782] ""                  "said"              "frodo"            
## [26785] "sam"               "looked"            "unhappily"        
## [26788] ""                  ""                  "depends"          
## [26791] "want"              ""                  "put"              
## [26794] "merry"             ""                  ""                 
## [26797] "can"               "trust"             "us"               
## [26800] "stick"             "thick"             "thin"             
## [26803] "bitter"            "end"               "can"              
## [26806] "trust"             "us"                "keep"             
## [26809] "secret"            "closer"            "keep"             
## [26812] "trust"             "us"                "let"              
## [26815] "face"              "trouble"           "alone"            
## [26818] "go"                "without"           "word"             
## [26821] "friends"           "frodo"             "anyway"           
## [26824] "know"              "gandalf"           "told"             
## [26827] "know"              "good"              "deal"             
## [26830] "ring"              "horribly"          "afraid"           
## [26833] "coming"            "following"         "like"             
## [26836] "hounds"            ""                  ""                 
## [26839] ""                  "sir"               ""                 
## [26842] "added"             "sam"               ""                 
## [26845] ""                  "take"              "elves"            
## [26848] ""                  "advice"            "gildor"           
## [26851] "said"              "take"              "willing"          
## [26854] "can"               ""                  "deny"             
## [26857] ""                  ""                  ""                 
## [26860] ""                  "don"               ""                 
## [26863] "deny"              ""                  ""                 
## [26866] "said"              "frodo"             "looking"          
## [26869] "sam"               "now"               "grinning"         
## [26872] ""                  ""                  "don"              
## [26875] ""                  "deny"              ""                 
## [26878] "ll"                "never"             "believe"          
## [26881] "sleeping"          "whether"           "snore"            
## [26884] "shall"             "kick"              "hard"             
## [26887] "make"              "sure"              ""                 
## [26890] ""                  "set"               "deceitful"        
## [26893] "scoundrels"        ""                  "said"             
## [26896] "turning"           "others"            ""                 
## [26899] ""                  "bless"             ""                 
## [26902] ""                  "laughed"           "getting"          
## [26905] "waving"            "arms"              ""                 
## [26908] ""                  "give"              "will"             
## [26911] "take"              "gildor"            ""                 
## [26914] "advice"            "danger"            "dark"             
## [26917] "dance"             "joy"               "even"             
## [26920] "help"              "feeling"           "happy"            
## [26923] "happier"           "felt"              "long"             
## [26926] "time"              "dreaded"           "evening"          
## [26929] ""                  ""                  "good"             
## [26932] ""                  ""                  "settled"          
## [26935] "three"             "cheers"            "captain"          
## [26938] "frodo"             "company"           ""                 
## [26941] "shouted"           "danced"            "round"            
## [26944] "merry"             "pippin"            "began"            
## [26947] "song"              "apparently"        "got"              
## [26950] "ready"             "occasion"          "made"             
## [26953] "model"             "dwarf"             "song"             
## [26956] "started"           "bilbo"             "adventure"        
## [26959] "long"              "ago"               "went"             
## [26962] "tune"              "farewell"          "call"             
## [26965] "hearth"            "hall"              "though"           
## [26968] "wind"              "may"               "blow"             
## [26971] "rain"              "may"               "fall"             
## [26974] "must"              "away"              "ere"              
## [26977] "break"             "day"               "far"              
## [26980] "wood"              "mountain"          "tall"             
## [26983] "rivendell"         "elves"             "yet"              
## [26986] "dwell"             "glades"            "beneath"          
## [26989] "misty"             "fell"              "moor"             
## [26992] "waste"             "ride"              "haste"            
## [26995] "whither"           "tell"              "foes"             
## [26998] "ahead"             "behind"            "us"               
## [27001] "dread"             "beneath"           "sky"              
## [27004] "shall"             "bed"               "last"             
## [27007] "toil"              "passed"            "journey"          
## [27010] "done"              "errand"            "sped"             
## [27013] "must"              "away"              "must"             
## [27016] "away"              "ride"              "break"            
## [27019] "day"               ""                  ""                 
## [27022] "good"              ""                  "said"             
## [27025] "frodo"             ""                  ""                 
## [27028] "case"              "lot"               "things"           
## [27031] "go"                "bed"               "roof"             
## [27034] "tonight"           "rate"              ""                 
## [27037] ""                  "oh"                "poetry"           
## [27040] ""                  "said"              "pippin"           
## [27043] ""                  ""                  "really"           
## [27046] "mean"              "start"             "break"            
## [27049] "day"               ""                  ""                 
## [27052] ""                  "don"               ""                 
## [27055] "know"              ""                  "answered"         
## [27058] "frodo"             ""                  ""                 
## [27061] "fear"              "black"             "riders"           
## [27064] "sure"              "unsafe"            "stay"             
## [27067] "one"               "place"             "long"             
## [27070] "especially"        "place"             "known"            
## [27073] "going"             "also"              "gildor"           
## [27076] "advised"           "wait"              "much"             
## [27079] "like"              "see"               "gandalf"          
## [27082] "see"               "even"              "gildor"           
## [27085] "disturbed"         "heard"             "gandalf"          
## [27088] "never"             "appeared"          "really"           
## [27091] "depends"           "two"               "things"           
## [27094] "soon"              "riders"            "get"              
## [27097] "bucklebury"        "soon"              "get"              
## [27100] "will"              "take"              "good"             
## [27103] "deal"              "preparation"       ""                 
## [27106] ""                  ""                  "answer"           
## [27109] "second"            "question"          ""                 
## [27112] "said"              "merry"             ""                 
## [27115] ""                  "get"               "hour"             
## [27118] "prepared"          "practically"       "everything"       
## [27121] "six"               "ponies"            "stable"           
## [27124] "across"            "fields"            "stores"           
## [27127] "tackle"            "packed"            "except"           
## [27130] "extra"             "clothes"           "perishable"       
## [27133] "food"              ""                  ""                 
## [27136] ""                  "seems"             "efficient"        
## [27139] "conspiracy"        ""                  "said"             
## [27142] "frodo"             ""                  ""                 
## [27145] "black"             "riders"            "safe"             
## [27148] "wait"              "one"               "day"              
## [27151] "gandalf"           ""                  ""                 
## [27154] ""                  "depends"           "think"            
## [27157] "riders"            "found"             ""                 
## [27160] ""                  "answered"          "merry"            
## [27163] ""                  ""                  "reached"          
## [27166] "now"               "course"            "stopped"          
## [27169] "north"             "gate"              "hedge"            
## [27172] "runs"              "river"             "bank"             
## [27175] "just"              "side"              "bridge"           
## [27178] "gate"              "guards"            "let"              
## [27181] "night"             "though"            "might"            
## [27184] "break"             "even"              "daylight"         
## [27187] "try"               "keep"              "think"            
## [27190] "rate"              "got"               "message"          
## [27193] "master"            "hall"              "like"             
## [27196] "look"              "riders"            "certainly"        
## [27199] "frightened"        "course"            "buckland"         
## [27202] "resist"            "determined"        "attack"           
## [27205] "long"              "possible"          "morning"          
## [27208] "even"              "black"             "rider"            
## [27211] "rode"              "asked"             "mr"               
## [27214] "baggins"           "let"               "pretty"           
## [27217] "generally"         "known"             "coming"           
## [27220] "back"              "live"              "crickhollow"      
## [27223] ""                  "frodo"             "sat"              
## [27226] "thought"           ""                  ""                 
## [27229] "made"              "mind"              ""                 
## [27232] "said"              "finally"           ""                 
## [27235] ""                  "starting"          "tomorrow"         
## [27238] "soon"              "light"             "going"            
## [27241] "road"              "safer"             "wait"             
## [27244] "go"                "north"             "gate"             
## [27247] "departure"         "buckland"          "will"             
## [27250] "known"             "instead"           "secret"           
## [27253] "several"           "days"              "least"            
## [27256] "might"             "bridge"            "east"             
## [27259] "road"              "near"              "borders"          
## [27262] "will"              "certainly"         "watched"          
## [27265] "whether"           "rider"             "gets"             
## [27268] "buckland"          "don"               ""                 
## [27271] "know"              "many"              "least"            
## [27274] "two"               "possibly"          "thing"            
## [27277] "go"                "quite"             "unexpected"       
## [27280] "direction"         ""                  ""                 
## [27283] ""                  "can"               "mean"             
## [27286] "going"             "old"               "forest"           
## [27289] ""                  "said"              "fredegar"         
## [27292] "horrified"         ""                  ""                 
## [27295] "can"               ""                  "thinking"         
## [27298] "quite"             "dangerous"         "black"            
## [27301] "riders"            ""                  ""                 
## [27304] ""                  "quite"             ""                 
## [27307] "said"              "merry"             "sounds"           
## [27310] "desperate"         "believe"           "frodo"            
## [27313] "right"             "way"               "getting"          
## [27316] "without"           "followed"          "luck"             
## [27319] "might"             "gel"               "considerable"     
## [27322] "start"             ""                  ""                 
## [27325] ""                  "won"               ""                 
## [27328] "luck"              "old"               "forest"           
## [27331] ""                  "objected"          "fredegar"         
## [27334] ""                  ""                  "one"              
## [27337] "ever"              "luck"              ""                 
## [27340] "ll"                "gel"               "lost"             
## [27343] "people"            "don"               ""                 
## [27346] "go"                ""                  ""                 
## [27349] ""                  "oh"                "yes"              
## [27352] ""                  ""                  "said"             
## [27355] "merry"             ""                  ""                 
## [27358] "brandybucks"       "go"                "occasionally"     
## [27361] "fit"               "takes"             "private"          
## [27364] "entrance"          "frodo"             "went"             
## [27367] "long"              "ago"               "several"          
## [27370] "times"             "usually"           "daylight"         
## [27373] "course"            "trees"             "sleepy"           
## [27376] "fairly"            "quiet"             ""                 
## [27379] ""                  "well"              "think"            
## [27382] "best"              ""                  "said"             
## [27385] "fredegar"          ""                  ""                 
## [27388] "afraid"            "old"               "forest"           
## [27391] "anything"          "know"              "stories"          
## [27394] "nightmare"         "vote"              "hardly"           
## [27397] "counts"            "going"             "journey"          
## [27400] "still"             "glad"              "someone"          
## [27403] "stopping"          "behind"            "can"              
## [27406] "tell"              "gandalf"           "done"             
## [27409] "turns"             "sure"              "will"             
## [27412] "long"              ""                  "fond"             
## [27415] "frodo"             "fatty"             "bolger"           
## [27418] "desire"            "leave"             "shire"            
## [27421] "see"               "lay"               "outside"          
## [27424] "family"            "came"              "eastfarthing"     
## [27427] "budgeford"         "bridgefields"      "fact"             
## [27430] "never"             "brandywine"        "bridge"           
## [27433] "task"              "according"         "original"         
## [27436] "plans"             "conspirators"      "stay"             
## [27439] "behind"            "deal"              "inquisitive"      
## [27442] "folk"              "keep"              "long"             
## [27445] "possible"          "pretence"          "mr"               
## [27448] "baggins"           "still"             "living"           
## [27451] "crickhollow"       "even"              "brought"          
## [27454] "along"             "old"               "clothes"          
## [27457] "frodo"             ""                  "help"             
## [27460] "playing"           "part"              "little"           
## [27463] "thought"           "dangerous"         "part"             
## [27466] "might"             "prove"             ""                 
## [27469] "excellent"         ""                  "said"             
## [27472] "frodo"             "understood"        "plan"             
## [27475] ""                  ""                  "left"             
## [27478] "message"           "behind"            "gandalf"          
## [27481] "otherwise"         "don"               ""                 
## [27484] "know"              "whether"           "riders"           
## [27487] "can"               "read"              "course"           
## [27490] "dared"             "risk"              "written"          
## [27493] "message"           "case"              "got"              
## [27496] "searched"          "house"             "fatty"            
## [27499] "willing"           "hold"              "fort"             
## [27502] "can"               "sure"              "gandalf"          
## [27505] "knowing"           "way"               "gone"             
## [27508] "decides"           "going"             "old"              
## [27511] "forest"            "first"             "thing"            
## [27514] "tomorrow"          ""                  ""                 
## [27517] "well"              ""                  ""                 
## [27520] ""                  ""                  "said"             
## [27523] "pippin"            ""                  ""                 
## [27526] "whole"             "rather"            "job"              
## [27529] "fatty"             ""                  "waiting"          
## [27532] "till"              "black"             "riders"           
## [27535] "come"              ""                  ""                 
## [27538] ""                  "wait"              "till"             
## [27541] "well"              "inside"            "forest"           
## [27544] ""                  "said"              "fredegar"         
## [27547] ""                  ""                  "ll"               
## [27550] "wish"              "back"              "time"             
## [27553] "tomorrow"          ""                  ""                 
## [27556] ""                  ""                  "good"             
## [27559] "arguing"           ""                  ""                 
## [27562] "said"              "merry"             ""                 
## [27565] ""                  "still"             "got"              
## [27568] "tidy"              "put"               "finishing"        
## [27571] "touches"           "packing"           "get"              
## [27574] "bed"               "shall"             "call"             
## [27577] "break"             "day"               ""                 
## [27580] "last"              "got"               "bed"              
## [27583] "frodo"             "sleep"             "time"             
## [27586] "legs"              "ached"             "glad"             
## [27589] "riding"            "morning"           "eventually"       
## [27592] "fell"              "vague"             "dream"            
## [27595] "seemed"            "looking"           "high"             
## [27598] "window"            "dark"              "sea"              
## [27601] "tangled"           "trees"             "among"            
## [27604] "roots"             "sound"             "creatures"        
## [27607] "crawling"          "snuffling"         "felt"             
## [27610] "sure"              "smell"             "sooner"           
## [27613] "later"             "heard"             "noise"            
## [27616] "distance"          "first"             "thought"          
## [27619] "great"             "wind"              "coming"           
## [27622] "leaves"            "forest"            "knew"             
## [27625] "leaves"            "sound"             "sea"              
## [27628] "far"               "sound"             "never"            
## [27631] "heard"             "waking"            "life"             
## [27634] "though"            "often"             "troubled"         
## [27637] "dreams"            "suddenly"          "found"            
## [27640] "open"              "trees"             "dark"             
## [27643] "heath"             "strange"           "salt"             
## [27646] "smell"             "air"               "looking"          
## [27649] "saw"               "tall"              "white"            
## [27652] "tower"             "standing"          "alone"            
## [27655] "high"              "ridge"             "great"            
## [27658] "desire"            "came"              "climb"            
## [27661] "tower"             "see"               "sea"              
## [27664] "started"           "struggle"          "ridge"            
## [27667] "towards"           "tower"             "suddenly"         
## [27670] "light"             "came"              "sky"              
## [27673] "noise"             "thunder"           "chapter"          
## [27676] "old"               "forest"            "frodo"            
## [27679] "woke"              "suddenly"          "still"            
## [27682] "dark"              "room"              "merry"            
## [27685] "standing"          "candle"            "one"              
## [27688] "hand"              "banging"           "door"             
## [27691] ""                  ""                  "right"            
## [27694] ""                  ""                  "said"             
## [27697] "frodo"             "still"             "shaken"           
## [27700] "bewildered"        ""                  ""                 
## [27703] ""                  ""                  "cried"            
## [27706] "merry"             ""                  ""                 
## [27709] "time"              "get"               "half"             
## [27712] "past"              "four"              "foggy"            
## [27715] "come"              "sam"               "already"          
## [27718] "getting"           "breakfast"         "ready"            
## [27721] "even"              "pippin"            "just"             
## [27724] "going"             "saddle"            "ponies"           
## [27727] "fetch"             "one"               "baggage"          
## [27730] "carrier"           "wake"              "sluggard"         
## [27733] "fatty"             "least"             "must"             
## [27736] "get"               "see"               "us"               
## [27739] ""                  ""                  "soon"             
## [27742] "six"               ""                  "clock"            
## [27745] "five"              "hobbits"           "ready"            
## [27748] "start"             "fatty"             "bolger"           
## [27751] "still"             "yawning"           "stole"            
## [27754] "quietly"           "house"             "merry"            
## [27757] "went"              "front"             "leading"          
## [27760] "laden"             "pony"              "took"             
## [27763] "way"               "along"             "path"             
## [27766] "went"              "spinney"           "behind"           
## [27769] "house"             "cut"               "across"           
## [27772] "several"           "fields"            "leaves"           
## [27775] "trees"             "glistening"        "every"            
## [27778] "twig"              "dripping"          "grass"            
## [27781] "grey"              "cold"              "dew"              
## [27784] "everything"        "still"             "far"              
## [27787] "away"              "noises"            "seemed"           
## [27790] "near"              "clear"             "fowls"            
## [27793] "chattering"        "yard"              "someone"          
## [27796] "closing"           "door"              "distant"          
## [27799] "house"             "shed"              "found"            
## [27802] "ponies"            "sturdy"            "little"           
## [27805] "beasts"            "kind"              "loved"            
## [27808] "hobbits"           "speedy"            "good"             
## [27811] "long"              "day"               ""                 
## [27814] "work"              "mounted"           "soon"             
## [27817] "riding"            "mist"              "seemed"           
## [27820] "open"              "reluctantly"       "close"            
## [27823] "forbiddingly"      "behind"            "riding"           
## [27826] "hour"              "slowly"            "without"          
## [27829] "talking"           "saw"               "hedge"            
## [27832] "looming"           "suddenly"          "ahead"            
## [27835] "tall"              "netted"            "silver"           
## [27838] "cobwebs"           ""                  ""                 
## [27841] "going"             "get"               ""                 
## [27844] ""                  "asked"             "fredegar"         
## [27847] ""                  "follow"            ""                 
## [27850] ""                  "said"              "merry"            
## [27853] ""                  ""                  "will"             
## [27856] "see"               ""                  "turned"           
## [27859] "left"              "along"             "hedge"            
## [27862] "soon"              "came"              "point"            
## [27865] "bent"              "inwards"           "running"          
## [27868] "along"             "lip"               "hollow"           
## [27871] "cutting"           "made"              "distance"         
## [27874] "hedge"             "went"              "sloping"          
## [27877] "gently"            "ground"            "walls"            
## [27880] "brick"             "sides"             "rose"             
## [27883] "steadily"          "suddenly"          "arched"           
## [27886] "formed"            "tunnel"            "dived"            
## [27889] "deep"              "hedge"             "came"             
## [27892] "hollow"            "side"              "fatty"            
## [27895] "bolger"            "halted"            ""                 
## [27898] "good"              "bye"               "frodo"            
## [27901] ""                  "said"              ""                 
## [27904] ""                  "wish"              "going"            
## [27907] "forest"            "hope"              "will"             
## [27910] "need"              "rescuing"          "day"              
## [27913] "good"              "luck"              "today"            
## [27916] "every"             "day"               ""                 
## [27919] ""                  ""                  "worse"            
## [27922] "things"            "ahead"             "old"              
## [27925] "forest"            "shall"             "lucky"            
## [27928] ""                  "said"              "frodo"            
## [27931] ""                  "tell"              "gandalf"          
## [27934] "hurry"             "along"             "east"             
## [27937] "road"              "shall"             "soon"             
## [27940] "back"              "going"             "fast"             
## [27943] "can"               ""                  ""                 
## [27946] "good"              "bye"               ""                 
## [27949] "cried"             "rode"              "slope"            
## [27952] "disappeared"       "fredegar"          ""                 
## [27955] "sight"             "tunnel"            "dark"             
## [27958] "damp"              "far"               "end"              
## [27961] "closed"            "gate"              "thick"            
## [27964] "set"               "iron"              "bars"             
## [27967] "merry"             "got"               "unlocked"         
## [27970] "gate"              "passed"            "pushed"           
## [27973] "shut"              "clang"             "lock"             
## [27976] "clicked"           "sound"             "ominous"          
## [27979] ""                  ""                  ""                 
## [27982] "said"              "merry"             ""                 
## [27985] ""                  "left"              "shire"            
## [27988] "now"               "outside"           "edge"             
## [27991] "old"               "forest"            ""                 
## [27994] ""                  ""                  "stories"          
## [27997] "true"              ""                  "asked"            
## [28000] "pippin"            ""                  ""                 
## [28003] "don"               ""                  "know"             
## [28006] "stories"           "mean"              ""                 
## [28009] "merry"             "answered"          ""                 
## [28012] ""                  "mean"              "old"              
## [28015] "bogey"             "stories"           "fatty"            
## [28018] ""                  "nurses"            "used"             
## [28021] "tell"              "goblins"           "wolves"           
## [28024] "things"            "sort"              "say"              
## [28027] "rate"              "don"               ""                 
## [28030] "believe"           "forest"            "queer"            
## [28033] "everything"        "much"              "alive"            
## [28036] "aware"             "going"             "speak"            
## [28039] "things"            "shire"             "trees"            
## [28042] "like"              "strangers"         "watch"            
## [28045] "usually"           "content"           "merely"           
## [28048] "watch"             "long"              "daylight"         
## [28051] "lasts"             "don"               ""                 
## [28054] "much"              "occasionally"      "unfriendly"       
## [28057] "ones"              "may"               "drop"             
## [28060] "branch"            "stick"             "root"             
## [28063] "grasp"             "long"              "trailer"          
## [28066] "night"             "things"            "can"              
## [28069] "alarming"          "told"              "twice"            
## [28072] "dark"              "near"              "hedge"            
## [28075] "thought"           "trees"             "whispering"       
## [28078] "passing"           "news"              "plots"            
## [28081] "along"             "unintelligible"    "language"         
## [28084] "branches"          "swayed"            "groped"           
## [28087] "without"           "wind"              "say"              
## [28090] "trees"             "actually"          "move"             
## [28093] "can"               "surround"          "strangers"        
## [28096] "hem"               "fact"              "long"             
## [28099] "ago"               "attacked"          "hedge"            
## [28102] "came"              "planted"           "right"            
## [28105] "leaned"            "hobbits"           "came"             
## [28108] "cut"               "hundreds"          "trees"            
## [28111] "made"              "great"             "bonfire"          
## [28114] "forest"            "burned"            "ground"           
## [28117] "long"              "strip"             "east"             
## [28120] "hedge"             "trees"             "gave"             
## [28123] "attack"            "became"            "unfriendly"       
## [28126] "still"             "wide"              "bare"             
## [28129] "space"             "far"               "inside"           
## [28132] "bonfire"           "made"              ""                 
## [28135] ""                  ""                  "trees"            
## [28138] "dangerous"         ""                  "asked"            
## [28141] "pippin"            ""                  ""                 
## [28144] "various"           "queer"             "things"           
## [28147] "living"            "deep"              "forest"           
## [28150] "far"               "side"              ""                 
## [28153] "said"              "merry"             ""                 
## [28156] ""                  "least"             "heard"            
## [28159] "never"             "seen"              "something"        
## [28162] "makes"             "paths"             "whenever"         
## [28165] "one"               "comes"             "inside"           
## [28168] "one"               "finds"             "open"             
## [28171] "tracks"            "seem"              "shift"            
## [28174] "change"            "time"              "time"             
## [28177] "queer"             "fashion"           "far"              
## [28180] "tunnel"            "long"              "time"             
## [28183] "beginning"         "quite"             "broad"            
## [28186] "path"              "leading"           "bonfire"          
## [28189] "glade"             "less"              "direction"        
## [28192] "east"              "little"            "north"            
## [28195] "path"              "going"             "try"              
## [28198] "find"              ""                  "hobbits"          
## [28201] "now"               "left"              "tunnel"           
## [28204] "gate"              "rode"              "across"           
## [28207] "wide"              "hollow"            "far"              
## [28210] "side"              "faint"             "path"             
## [28213] "leading"           "floor"             "forest"           
## [28216] "hundred"           "yards"             "beyond"           
## [28219] "hedge"             "vanished"          "soon"             
## [28222] "brought"           "trees"             "looking"          
## [28225] "back"              "see"               "dark"             
## [28228] "line"              "hedge"             "stems"            
## [28231] "trees"             "already"           "thick"            
## [28234] "looking"           "ahead"             "see"              
## [28237] "tree"              "trunks"            "innumerable"      
## [28240] "sizes"             "shapes"            "straight"         
## [28243] "bent"              "twisted"           "leaning"          
## [28246] "squat"             "slender"           "smooth"           
## [28249] "gnarled"           "branched"          "stems"            
## [28252] "green"             "grey"              "moss"             
## [28255] "slimy"             "shaggy"            "growths"          
## [28258] "merry"             "alone"             "seemed"           
## [28261] "fairly"            "cheerful"          ""                 
## [28264] ""                  "better"            "lead"             
## [28267] "find"              "path"              ""                 
## [28270] "frodo"             "said"              ""                 
## [28273] "don"               ""                  "let"              
## [28276] "us"                "lose"              "one"              
## [28279] "another"           "forget"            "way"              
## [28282] "hedge"             "lies"              ""                 
## [28285] "picked"            "way"               "among"            
## [28288] "trees"             "ponies"            "plodded"          
## [28291] "along"             "carefully"         "avoiding"         
## [28294] "many"              "writhing"          "interlacing"      
## [28297] "roots"             "undergrowth"       "ground"           
## [28300] "rising"            "steadily"          "went"             
## [28303] "forward"           "seemed"            "trees"            
## [28306] "became"            "taller"            "darker"           
## [28309] "thicker"           "sound"             "except"           
## [28312] "occasional"        "drip"              "moisture"         
## [28315] "falling"           "still"             "leaves"           
## [28318] "moment"            "whispering"        "movement"         
## [28321] "among"             "branches"          "got"              
## [28324] "uncomfortable"     "feeling"           "watched"          
## [28327] "disapproval"       "deepening"         "dislike"          
## [28330] "even"              "enmity"            "feeling"          
## [28333] "steadily"          "grew"              "found"            
## [28336] "looking"           "quickly"           "glancing"         
## [28339] "back"              "shoulders"         "expected"         
## [28342] "sudden"            "blow"              "yet"              
## [28345] "sign"              "path"              "trees"            
## [28348] "seemed"            "constantly"        "bar"              
## [28351] "way"               "pippin"            "suddenly"         
## [28354] "felt"              "bear"              "longer"           
## [28357] "without"           "warning"           "let"              
## [28360] "shout"             ""                  "oi"               
## [28363] "oi"                ""                  "cried"            
## [28366] ""                  ""                  "going"            
## [28369] "anything"          "just"              "let"              
## [28372] "pass"              "will"              ""                 
## [28375] ""                  "others"            "halted"           
## [28378] "startled"          "cry"               "fell"             
## [28381] "muffled"           "heavy"             "curtain"          
## [28384] "echo"              "answer"            "though"           
## [28387] "wood"              "seemed"            "become"           
## [28390] "crowded"           "watchful"          ""                 
## [28393] ""                  "shout"             ""                 
## [28396] ""                  "said"              "merry"            
## [28399] "harm"              "good"              ""                 
## [28402] "frodo"             "began"             "wonder"           
## [28405] "possible"          "find"              "way"              
## [28408] "right"             "make"              "others"           
## [28411] "come"              "abominable"        "wood"             
## [28414] "merry"             "looking"           "side"             
## [28417] "side"              "seemed"            "already"          
## [28420] "uncertain"         "way"               "go"               
## [28423] "pippin"            "noticed"           ""                 
## [28426] ""                  "taken"             "long"             
## [28429] "lose"              "us"                ""                 
## [28432] "said"              "moment"            "merry"            
## [28435] "gave"              "whistle"           "relief"           
## [28438] "pointed"           "ahead"             ""                 
## [28441] "well"              "well"              ""                 
## [28444] "said"              ""                  ""                 
## [28447] "trees"             "shift"             "bonfire"          
## [28450] "glade"             "front"             "us"               
## [28453] "hope"              "path"              "seems"            
## [28456] "moved"             "away"              ""                 
## [28459] "light"             "grew"              "clearer"          
## [28462] "went"              "forward"           "suddenly"         
## [28465] "came"              "trees"             "found"            
## [28468] "wide"              "circular"          "space"            
## [28471] "sky"               "blue"              "clear"            
## [28474] "surprise"          "forest"            "roof"             
## [28477] "able"              "see"               "rising"           
## [28480] "morning"           "lifting"           "mist"             
## [28483] "sun"               "however"           "high"             
## [28486] "enough"            "yet"               "shine"            
## [28489] "clearing"          "though"            "light"            
## [28492] "tree"              "tops"              "leaves"           
## [28495] "thicker"           "greener"           "edges"            
## [28498] "glade"             "enclosing"         "almost"           
## [28501] "solid"             "wall"              "tree"             
## [28504] "grew"              "rough"             "grass"            
## [28507] "many"              "tall"              "plants"           
## [28510] "stalky"            "faded"             "hemlocks"         
## [28513] "wood"              "parsley"           "fire"             
## [28516] "weed"              "seeding"           "fluffy"           
## [28519] "ashes"             "rampant"           "nettles"          
## [28522] "thistles"          "dreary"            "place"            
## [28525] "seemed"            "charming"          "cheerful"         
## [28528] "garden"            "close"             "forest"           
## [28531] "hobbits"           "felt"              "encouraged"       
## [28534] "looked"            "hopefully"         "broadening"       
## [28537] "daylight"          "sky"               "far"              
## [28540] "side"              "glade"             "break"            
## [28543] "wall"              "trees"             "clear"            
## [28546] "path"              "beyond"            "see"              
## [28549] "running"           "wood"              "wide"             
## [28552] "places"            "open"              "though"           
## [28555] "every"             "now"               "trees"            
## [28558] "drew"              "overshadowed"      "dark"             
## [28561] "boughs"            "path"              "rode"             
## [28564] "still"             "climbing"          "gently"           
## [28567] "now"               "went"              "much"             
## [28570] "quicker"           "better"            "heart"            
## [28573] "seemed"            "forest"            "relented"         
## [28576] "going"             "let"               "pass"             
## [28579] "unhindered"        "air"               "began"            
## [28582] "get"               "hot"               "stuffy"           
## [28585] "trees"             "drew"              "close"            
## [28588] "either"            "side"              "longer"           
## [28591] "see"               "far"               "ahead"            
## [28594] "now"               "stronger"          "ever"             
## [28597] "felt"              "ill"               "will"             
## [28600] "wood"              "pressing"          "silent"           
## [28603] "fall"              "ponies"            ""                 
## [28606] "hoofs"             "rustling"          "dead"             
## [28609] "leaves"            "occasionally"      "stumbling"        
## [28612] "hidden"            "roots"             "seemed"           
## [28615] "thud"              "ears"              "frodo"            
## [28618] "tried"             "sing"              "song"             
## [28621] "encourage"         "voice"             "sank"             
## [28624] "murmur"            "wanderers"         "shadowed"         
## [28627] "land"              "despair"           "though"           
## [28630] "dark"              "stand"             "woods"            
## [28633] "must"              "end"               "last"             
## [28636] "see"               "open"              "sun"              
## [28639] "go"                "past"              "setting"          
## [28642] "sun"               "rising"            "sun"              
## [28645] "day"               ""                  "end"              
## [28648] "day"               "begun"             "east"             
## [28651] "west"              "woods"             "must"             
## [28654] "fail"              ""                  "fail"             
## [28657] "even"              "said"              "word"             
## [28660] "voice"             "faded"             "silence"          
## [28663] "air"               "seemed"            "heavy"            
## [28666] "making"            "words"             "wearisome"        
## [28669] "just"              "behind"            "large"            
## [28672] "branch"            "fell"              "old"              
## [28675] "overhanging"       "tree"              "crash"            
## [28678] "path"              "trees"             "seemed"           
## [28681] "close"             ""                  ""                 
## [28684] "like"              "ending"            "failing"          
## [28687] ""                  "said"              "merry"            
## [28690] ""                  ""                  "sing"             
## [28693] "present"           "wait"              "till"             
## [28696] "get"               "edge"              ""                 
## [28699] "ll"                "turn"              "give"             
## [28702] "rousing"           "chorus"            ""                 
## [28705] "spoke"             "cheerfully"        "felt"             
## [28708] "great"             "anxiety"           "show"             
## [28711] "others"            "answer"            "depressed"        
## [28714] "heavy"             "weight"            "settling"         
## [28717] "steadily"          "frodo"             ""                 
## [28720] "heart"             "regretted"         "now"              
## [28723] "every"             "step"              "forward"          
## [28726] "ever"              "thought"           "challenging"      
## [28729] "menace"            "trees"             "indeed"           
## [28732] "just"              "stop"              "propose"          
## [28735] "going"             "back"              "still"            
## [28738] "possible"          "things"            "took"             
## [28741] "new"               "turn"              "path"             
## [28744] "stopped"           "climbing"          "became"           
## [28747] "nearly"            "level"             "dark"             
## [28750] "trees"             "drew"              "aside"            
## [28753] "ahead"             "see"               "path"             
## [28756] "going"             "almost"            "straight"         
## [28759] "forward"           "distance"          "stood"            
## [28762] "green"             "hill"              "top"              
## [28765] "treeless"          "rising"            "like"             
## [28768] "bald"              "head"              "encircling"       
## [28771] "wood"              "path"              "seemed"           
## [28774] "making"            "directly"          "now"              
## [28777] "hurried"           "forward"           "delighted"        
## [28780] "thought"           "climbing"          "roof"             
## [28783] "forest"            "path"              "dipped"           
## [28786] "began"             "climb"             "upwards"          
## [28789] "leading"           "last"              "foot"             
## [28792] "steep"             "hillside"          "left"             
## [28795] "trees"             "faded"             "turf"             
## [28798] "wood"              "stood"             "round"            
## [28801] "hill"              "like"              "thick"            
## [28804] "hair"              "ended"             "sharply"          
## [28807] "circle"            "round"             "shaven"           
## [28810] "crown"             "hobbits"           "led"              
## [28813] "ponies"            "winding"           "round"            
## [28816] "round"             "reached"           "top"              
## [28819] "stood"             "gazed"             "air"              
## [28822] "gleaming"          "sunlit"            "hazy"             
## [28825] "see"               "great"             "distance"         
## [28828] "near"              "hand"              "mist"             
## [28831] "now"               "almost"            "gone"             
## [28834] "though"            "lay"               "hollows"          
## [28837] "wood"              "south"             "deep"             
## [28840] "fold"              "cutting"           "right"            
## [28843] "across"            "forest"            "fog"              
## [28846] "still"             "rose"              "like"             
## [28849] "steam"             "wisps"             "white"            
## [28852] "smoke"             ""                  ""                 
## [28855] ""                  "said"              "merry"            
## [28858] "pointing"          "hand"              ""                 
## [28861] ""                  "line"              "withywindle"      
## [28864] "comes"             "downs"             "flows"            
## [28867] "south"             "west"              "midst"            
## [28870] "forest"            "join"              "brandywine"       
## [28873] "haysend"           "don"               ""                 
## [28876] "want"              "go"                "way"              
## [28879] "withywindle"       "valley"            "said"             
## [28882] "queerest"          "part"              "whole"            
## [28885] "wood"              "centre"            "queerness"        
## [28888] "comes"             ""                  ""                 
## [28891] "others"            "looked"            "direction"        
## [28894] "merry"             "pointed"           "see"              
## [28897] "little"            "mists"             "damp"             
## [28900] "deep"              "cut"               "valley"           
## [28903] "beyond"            "southern"          "half"             
## [28906] "forest"            "faded"             "view"             
## [28909] "sun"               "hill"              "top"              
## [28912] "now"               "getting"           "hot"              
## [28915] "must"              "eleven"            ""                 
## [28918] "clock"             "autumn"            "haze"             
## [28921] "still"             "prevented"         "seeing"           
## [28924] "much"              "directions"        "west"             
## [28927] "make"              "either"            "line"             
## [28930] "hedge"             "valley"            "brandywine"       
## [28933] "beyond"            "northward"         "looked"           
## [28936] "hopefully"         "see"               "nothing"          
## [28939] "might"             "line"              "great"            
## [28942] "east"              "road"              "making"           
## [28945] "island"            "sea"               "trees"            
## [28948] "horizon"           "veiled"            "south"            
## [28951] "eastern"           "side"              "ground"           
## [28954] "fell"              "steeply"           "slopes"           
## [28957] "hill"              "continued"         "far"              
## [28960] "trees"             "like"              "island"           
## [28963] "shores"            "really"            "sides"            
## [28966] "mountain"          "rising"            "deep"             
## [28969] "waters"            "sat"               "green"            
## [28972] "edge"              "looked"            "woods"            
## [28975] "ate"               "mid"               "day"              
## [28978] "meal"              "sun"               "rose"             
## [28981] "passed"            "noon"              "glimpsed"         
## [28984] "far"               "east"              "grey"             
## [28987] "green"             "lines"             "downs"            
## [28990] "lay"               "beyond"            "old"              
## [28993] "forest"            "side"              "cheered"          
## [28996] "greatly"           "good"              "see"              
## [28999] "sight"             "anything"          "beyond"           
## [29002] "wood"              ""                  "borders"          
## [29005] "though"            "mean"              "go"               
## [29008] "way"               "help"              "barrow"           
## [29011] "downs"             "sinister"          "reputation"       
## [29014] "hobbit"            "legend"            "forest"           
## [29017] "length"            "made"              "minds"            
## [29020] "go"                "path"              "brought"          
## [29023] "hill"              "reappeared"        "northward"        
## [29026] "side"              "followed"          "far"              
## [29029] "became"            "aware"             "bending"          
## [29032] "steadily"          "right"             "soon"             
## [29035] "began"             "descend"           "rapidly"          
## [29038] "guessed"           "must"              "actually"         
## [29041] "heading"           "towards"           "withywindle"      
## [29044] "valley"            "direction"         "wished"           
## [29047] "lo"                "take"              "discussion"       
## [29050] "decided"           "leave"             "misleading"       
## [29053] "path"              "strike"            "northward"        
## [29056] "although"          "able"              "see"              
## [29059] "hill"              "top"               "road"             
## [29062] "must"              "lie"               "way"              
## [29065] "many"              "miles"             "also"             
## [29068] "northward"         "left"              "path"             
## [29071] "land"              "seemed"            "lo"               
## [29074] "drier"             "open"              "climbing"         
## [29077] "slopes"            "trees"             "thinner"          
## [29080] "pines"             "firs"              "replaced"         
## [29083] "oaks"              "ashes"             "strange"          
## [29086] "nameless"          "trees"             "denser"           
## [29089] "wood"              "first"             "choice"           
## [29092] "seemed"            "good"              "got"              
## [29095] "along"             "fair"              "speed"            
## [29098] "though"            "whenever"          "got"              
## [29101] "glimpse"           "sun"               "open"             
## [29104] "glade"             "seemed"            "unaccountably"    
## [29107] "veered"            "eastwards"         "time"             
## [29110] "trees"             "began"             "close"            
## [29113] "just"              "appeared"          "distance"         
## [29116] "thinner"           "less"              "tangled"          
## [29119] "deep"              "folds"             "ground"           
## [29122] "discovered"        "unexpectedly"      "like"             
## [29125] "ruts"              "great"             "giant"            
## [29128] "wheels"            "wide"              "moats"            
## [29131] "sunken"            "roads"             "long"             
## [29134] "disused"           "choked"            "brambles"         
## [29137] "lay"               "usually"           "right"            
## [29140] "across"            "line"              "march"            
## [29143] "crossed"           "scrambling"        "troublesome"      
## [29146] "difficult"         "ponies"            "time"             
## [29149] "climbed"           "found"             "hollow"           
## [29152] "filled"            "thick"             "bushes"           
## [29155] "matted"            "undergrowth"       "somehow"          
## [29158] "yield"             "left"              "gave"             
## [29161] "way"               "turned"            "right"            
## [29164] "go"                "distance"          "along"            
## [29167] "bottom"            "find"              "way"              
## [29170] "bank"              "time"              "clambered"        
## [29173] "trees"             "seemed"            "deeper"           
## [29176] "darker"            "always"            "left"             
## [29179] "upwards"           "difficult"         "find"             
## [29182] "way"               "forced"            "right"            
## [29185] "downwards"         "hour"              "two"              
## [29188] "lost"              "clear"             "sense"            
## [29191] "direction"         "though"            "knew"             
## [29194] "well"              "enough"            "long"             
## [29197] "ceased"            "go"                "northward"        
## [29200] "headed"            "simply"            "following"        
## [29203] "course"            "chosen"            "eastwards"        
## [29206] "southwards"        "heart"             "forest"           
## [29209] "afternoon"         "wearing"           "away"             
## [29212] "scrambled"         "stumbled"          "fold"             
## [29215] "wider"             "deeper"            "yet"              
## [29218] "met"               "sleep"             "overhung"         
## [29221] "proved"            "impossible"        "climb"            
## [29224] "either"            "forwards"          "backwards"        
## [29227] "without"           "leaving"           "ponies"           
## [29230] "baggage"           "behind"            "follow"           
## [29233] "fold"              "downwards"         "ground"           
## [29236] "grew"              "soft"              "places"           
## [29239] "boggy"             "springs"           "appeared"         
## [29242] "banks"             "soon"              "found"            
## [29245] "following"         "brook"             "trickled"         
## [29248] "babbled"           "weedy"             "bed"              
## [29251] "ground"            "began"             "fall"             
## [29254] "rapidly"           "brook"             "growing"          
## [29257] "strong"            "noisy"             "flowed"           
## [29260] "leaped"            "swiftly"           "downhill"         
## [29263] "deep"              "dim"               "lit"              
## [29266] "gully"             "arched"            "trees"            
## [29269] "high"              "stumbling"         "along"            
## [29272] "way"               "along"             "stream"           
## [29275] "came"              "quite"             "suddenly"         
## [29278] "gloom"             "gate"              "saw"              
## [29281] "sunlight"          "coming"            "opening"          
## [29284] "found"             "made"              "way"              
## [29287] "cleft"             "high"              "sleep"            
## [29290] "bank"              "almost"            "cliff"            
## [29293] "feet"              "wide"              "space"            
## [29296] "grass"             "reeds"             "distance"         
## [29299] "glimpsed"          "another"           "bank"             
## [29302] "almost"            "steep"             "golden"           
## [29305] "afternoon"         "late"              "sunshine"         
## [29308] "lay"               "warm"              "drowsy"           
## [29311] "upon"              "hidden"            "land"             
## [29314] "midst"             "wound"             "lazily"           
## [29317] "dark"              "river"             "brown"            
## [29320] "water"             "bordered"          "ancient"          
## [29323] "willows"           "arched"            "willows"          
## [29326] "blocked"           "fallen"            "willows"          
## [29329] "flecked"           "thousands"         "faded"            
## [29332] "willow"            "leaves"            "air"              
## [29335] "thick"             "fluttering"        "yellow"           
## [29338] "branches"          "warm"              "gentle"           
## [29341] "breeze"            "blowing"           "softly"           
## [29344] "valley"            "reeds"             "rustling"         
## [29347] "willow"            "boughs"            "creaking"         
## [29350] ""                  "well"              "now"              
## [29353] "least"             "notion"            ""                 
## [29356] ""                  "said"              "merry"            
## [29359] ""                  ""                  "come"             
## [29362] "almost"            "opposite"          "direction"        
## [29365] "intended"          "river"             "withywindle"      
## [29368] "will"              "go"                "explore"          
## [29371] ""                  "passed"            "sunshine"         
## [29374] "disappeared"       "long"              "grasses"          
## [29377] "reappeared"        "reported"          "fairly"           
## [29380] "solid"             "ground"            "cliff"            
## [29383] "foot"              "river"             "places"           
## [29386] "firm"              "turf"              "went"             
## [29389] "water"             ""                  "edge"             
## [29392] ""                  ""                  ""                 
## [29395] ""                  ""                  "said"             
## [29398] ""                  ""                  "seems"            
## [29401] "something"         "like"              "footpath"         
## [29404] "winding"           "along"             "side"             
## [29407] "river"             "turn"              "left"             
## [29410] "follow"            "shall"             "bound"            
## [29413] "come"              "east"              "side"             
## [29416] "forest"            "eventually"        ""                 
## [29419] ""                  ""                  "dare"             
## [29422] "say"               ""                  "said"             
## [29425] "pippin"            ""                  ""                 
## [29428] "track"             "goes"              "far"              
## [29431] "simply"            "lead"              "us"               
## [29434] "bog"               "leave"             "us"               
## [29437] "made"              "track"             "suppose"          
## [29440] "sure"              "benefit"           "getting"          
## [29443] "suspicious"        "forest"            "everything"       
## [29446] "begin"             "believe"           "stories"          
## [29449] "idea"              "far"               "eastward"         
## [29452] "go"                ""                  ""                 
## [29455] ""                  ""                  "said"             
## [29458] "merry"             ""                  ""                 
## [29461] "haven"             ""                  "don"              
## [29464] ""                  "know"              "least"            
## [29467] "far"               "withywindle"       "possibly"         
## [29470] "come"              "often"             "enough"           
## [29473] "make"              "path"              "along"            
## [29476] "way"               "can"               "see"              
## [29479] "think"             ""                  ""                 
## [29482] "nothing"           "else"              "filed"            
## [29485] "merry"             "led"               "path"             
## [29488] "discovered"        "everywhere"        "reeds"            
## [29491] "grasses"           "lush"              "tall"             
## [29494] "places"            "far"               "heads"            
## [29497] "found"             "path"              "easy"             
## [29500] "follow"            "turned"            "twisted"          
## [29503] "picking"           "sounder"           "ground"           
## [29506] "among"             "bogs"              "pools"            
## [29509] "passed"            "rills"             "running"          
## [29512] "gullies"           "withywindle"       "higher"           
## [29515] "forest"            "lands"             "points"           
## [29518] "tree"              "trunks"            "bundles"          
## [29521] "brushwood"         "laid"              "carefully"        
## [29524] "across"            "hobbits"           "began"            
## [29527] "feel"              "hot"               "armies"           
## [29530] "flies"             "kinds"             "buzzing"          
## [29533] "round"             "ears"              "afternoon"        
## [29536] "sun"               "burning"           "backs"            
## [29539] "last"              "came"              "suddenly"         
## [29542] "thin"              "shade"             "great"            
## [29545] "grey"              "branches"          "reached"          
## [29548] "across"            "path"              "step"             
## [29551] "forward"           "became"            "reluctant"        
## [29554] "last"              "sleepiness"        "seemed"           
## [29557] "creeping"          "ground"            "legs"             
## [29560] "falling"           "softly"            "air"              
## [29563] "upon"              "heads"             "eyes"             
## [29566] "frodo"             "felt"              "chin"             
## [29569] "go"                "head"              "nod"              
## [29572] "just"              "front"             "pippin"           
## [29575] "fell"              "forward"           "knees"            
## [29578] "frodo"             "halted"            ""                 
## [29581] ""                  ""                  "good"             
## [29584] ""                  "heard"             "merry"            
## [29587] "saying"            ""                  "can"              
## [29590] ""                  "go"                "another"          
## [29593] "step"              "without"           "rest"             
## [29596] "must"              "nap"               ""                 
## [29599] ""                  "cool"              "willows"          
## [29602] "less"              "flies"             ""                 
## [29605] "frodo"             "like"              "sound"            
## [29608] ""                  "come"              ""                 
## [29611] ""                  "cried"             ""                 
## [29614] ""                  "can"               ""                 
## [29617] "nap"               "yet"               "must"             
## [29620] "get"               "clear"             "forest"           
## [29623] "first"             ""                  "others"           
## [29626] "far"               "gone"              "care"             
## [29629] "beside"            "sam"               "stood"            
## [29632] "yawning"           "blinking"          "stupidly"         
## [29635] "suddenly"          "frodo"             "felt"             
## [29638] "sleep"             "overwhelming"      "head"             
## [29641] "swam"              "now"               "seemed"           
## [29644] "hardly"            "sound"             "air"              
## [29647] "flies"             "stopped"           "buzzing"          
## [29650] "gentle"            "noise"             "edge"             
## [29653] "hearing"           "soft"              "fluttering"       
## [29656] "song"              "half"              "whispered"        
## [29659] "seemed"            "stir"              "boughs"           
## [29662] "lifted"            "heavy"             "eyes"             
## [29665] "saw"               "leaning"           "huge"             
## [29668] "willow"            "tree"              "old"              
## [29671] "hoary"             "enormous"          "looked"           
## [29674] "sprawling"         "branches"          "going"            
## [29677] "like"              "reaching"          "arms"             
## [29680] "many"              "long"              "fingered"         
## [29683] "hands"             "knotted"           "twisted"          
## [29686] "trunk"             "gaping"            "wide"             
## [29689] "fissures"          "creaked"           "faintly"          
## [29692] "boughs"            "moved"             "leaves"           
## [29695] "fluttering"        "bright"            "sky"              
## [29698] "dazzled"           "toppled"           "lying"            
## [29701] "fell"              "upon"              "grass"            
## [29704] "merry"             "pippin"            "dragged"          
## [29707] "forward"           "lay"               "backs"            
## [29710] "willow"            "trunk"             "behind"           
## [29713] "great"             "cracks"            "gaped"            
## [29716] "wide"              "receive"           "tree"             
## [29719] "swayed"            "creaked"           "looked"           
## [29722] "grey"              "yellow"            "leaves"           
## [29725] "moving"            "softly"            "light"            
## [29728] "singing"           "shut"              "eyes"             
## [29731] "seemed"            "almost"            "hear"             
## [29734] "words"             "cool"              "words"            
## [29737] "saying"            "something"         "water"            
## [29740] "sleep"             "gave"              "spell"            
## [29743] "fell"              "fast"              "asleep"           
## [29746] "foot"              "great"             "grey"             
## [29749] "willow"            "frodo"             "lay"              
## [29752] "fighting"          "sleep"             "overpowering"     
## [29755] "effort"            "struggled"         "feel"             
## [29758] "felt"              "compelling"        "desire"           
## [29761] "cool"              "water"             ""                 
## [29764] "wait"              "sam"               ""                 
## [29767] "stammered"         ""                  "must"             
## [29770] "bathe"             "feet"              "minute"           
## [29773] ""                  "half"              "dream"            
## [29776] "wandered"          "forward"           "riverward"        
## [29779] "side"              "tree"              "great"            
## [29782] "winding"           "roots"             "grew"             
## [29785] "stream"            "like"              "gnarled"          
## [29788] "dragonets"         "straining"         "drink"            
## [29791] "straddled"         "one"               "paddled"          
## [29794] "hot"               "feel"              "cool"             
## [29797] "brown"             "water"             "suddenly"         
## [29800] "fell"              "asleep"            "back"             
## [29803] "tree"              "sam"               "sat"              
## [29806] "scratched"         "head"              "yawned"           
## [29809] "like"              "cavern"            "worried"          
## [29812] "afternoon"         "getting"           "late"             
## [29815] "thought"           "sudden"            "sleepiness"       
## [29818] "uncanny"           ""                  ""                 
## [29821] ""                  "behind"            "sun"              
## [29824] "warm"              "air"               ""                 
## [29827] "muttered"          ""                  ""                 
## [29830] "don"               ""                  "like"             
## [29833] "great"             "big"               "tree"             
## [29836] "don"               ""                  "trust"            
## [29839] "hark"              "singing"           "sleep"            
## [29842] "now"               "won"               ""                 
## [29845] ""                  ""                  "pulled"           
## [29848] "feet"              "staggered"         "see"              
## [29851] "become"            "ponies"            "found"            
## [29854] "two"               "wandered"          "good"             
## [29857] "way"               "along"             "path"             
## [29860] "just"              "caught"            "brought"          
## [29863] "back"              "towards"           "others"           
## [29866] "heard"             "two"               "noises"           
## [29869] "one"               "loud"              "soft"             
## [29872] "clear"             "one"               "splash"           
## [29875] "something"         "heavy"             "falling"          
## [29878] "water"             "noise"             "like"             
## [29881] "snick"             "lock"              "door"             
## [29884] "quietly"           "closes"            "fast"             
## [29887] "rushed"            "back"              "bank"             
## [29890] "frodo"             "water"             "close"            
## [29893] "edge"              "great"             "tree"             
## [29896] "root"              "seemed"            "holding"          
## [29899] "struggling"        "sam"               "gripped"          
## [29902] "jacket"            "dragged"           "root"             
## [29905] "difficulty"        "hauled"            "bank"             
## [29908] "almost"            "woke"              "coughed"          
## [29911] "spluttered"        ""                  ""                 
## [29914] "know"              "sam"               ""                 
## [29917] "said"              "length"            ""                 
## [29920] ""                  "beastly"           "tree"             
## [29923] "threw"             "felt"              "big"              
## [29926] "root"              "just"              "twisted"          
## [29929] "round"             "tipped"            ""                 
## [29932] ""                  ""                  ""                 
## [29935] "dreaming"          "expect"            "mr"               
## [29938] "frodo"             ""                  "said"             
## [29941] "sam"               ""                  ""                 
## [29944] "shouldn"           ""                  "sit"              
## [29947] "place"             "feel"              "sleepy"           
## [29950] ""                  ""                  ""                 
## [29953] "others"            ""                  "frodo"            
## [29956] "asked"             ""                  ""                 
## [29959] "wonder"            "sort"              "dreams"           
## [29962] ""                  ""                  "went"             
## [29965] "round"             "side"              "tree"             
## [29968] "sam"               "understood"        "click"            
## [29971] "heard"             "pippin"            "vanished"         
## [29974] "crack"             "laid"              "closed"           
## [29977] "together"          "chink"             "seen"             
## [29980] "merry"             "trapped"           "another"          
## [29983] "crack"             "closed"            "waist"            
## [29986] "legs"              "lay"               "outside"          
## [29989] "rest"              "inside"            "dark"             
## [29992] "opening"           "edges"             "gripped"          
## [29995] "like"              "pair"              "pincers"          
## [29998] "frodo"             "sam"               "beat"             
## [30001] "first"             "upon"              "tree"             
## [30004] "trunk"             "pippin"            "lain"             
## [30007] "struggled"         "frantically"       "pull"             
## [30010] "open"              "jaws"              "crack"            
## [30013] "held"              "poor"              "merry"            
## [30016] "quite"             "useless"           ""                 
## [30019] ""                  "foul"              "thing"            
## [30022] "happen"            ""                  "cried"            
## [30025] "frodo"             "wildly"            ""                 
## [30028] ""                  "ever"              "come"             
## [30031] "dreadful"          "forest"            "wish"             
## [30034] "back"              "crickhollow"       ""                 
## [30037] "kicked"            "tree"              "strength"         
## [30040] "heedless"          "feet"              "hardly"           
## [30043] "perceptible"       "shiver"            "ran"              
## [30046] "stem"              "branches"          "leaves"           
## [30049] "rustled"           "whispered"         "sound"            
## [30052] "now"               "faint"             "far"              
## [30055] "laughter"          ""                  ""                 
## [30058] "suppose"           "haven"             ""                 
## [30061] "got"               "axe"               "among"            
## [30064] "luggage"           "mr"                "frodo"            
## [30067] ""                  "asked"             "sam"              
## [30070] ""                  ""                  "brought"          
## [30073] "little"            "hatchet"           "chopping"         
## [30076] "firewood"          ""                  "said"             
## [30079] "frodo"             ""                  ""                 
## [30082] "wouldn"            ""                  "much"             
## [30085] "use"               ""                  ""                 
## [30088] "wait"              "minute"            ""                 
## [30091] "cried"             "sam"               "struck"           
## [30094] "idea"              "suggested"         "firewood"         
## [30097] ""                  ""                  "might"            
## [30100] "something"         "fire"              ""                 
## [30103] ""                  ""                  "might"            
## [30106] ""                  "said"              "frodo"            
## [30109] "doubtfully"        ""                  ""                 
## [30112] "might"             "succeed"           "roasting"         
## [30115] "pippin"            "alive"             "inside"           
## [30118] ""                  ""                  ""                 
## [30121] "might"             "try"               "hurt"             
## [30124] "frighten"          "tree"              "begin"            
## [30127] ""                  ""                  "said"             
## [30130] "sam"               "fiercely"          ""                 
## [30133] ""                  "don"               ""                 
## [30136] "let"               "go"                ""                 
## [30139] "ll"                "gnaw"              ""                 
## [30142] ""                  "ran"               "ponies"           
## [30145] "long"              "came"              "back"             
## [30148] "two"               "tinder"            "boxes"            
## [30151] "hatchet"           "quickly"           "gathered"         
## [30154] "dry"               "grass"             "leaves"           
## [30157] "bits"              "bark"              "made"             
## [30160] "pile"              "broken"            "twigs"            
## [30163] "chopped"           "sticks"            "heaped"           
## [30166] "trunk"             "far"               "side"             
## [30169] "tree"              "prisoners"         "soon"             
## [30172] "sam"               "struck"            "spark"            
## [30175] "tinder"            "kindled"           "dry"              
## [30178] "grass"             "flurry"            "flame"            
## [30181] "smoke"             "went"              "twigs"            
## [30184] "crackled"          "little"            "fingers"          
## [30187] "fire"              "licked"            "dry"              
## [30190] "scored"            "rind"              "ancient"          
## [30193] "tree"              "scorched"          "tremor"           
## [30196] "ran"               "whole"             "willow"           
## [30199] "leaves"            "seemed"            "hiss"             
## [30202] "heads"             "sound"             "pain"             
## [30205] "anger"             "loud"              "scream"           
## [30208] "came"              "merry"             "far"              
## [30211] "inside"            "tree"              "heard"            
## [30214] "pippin"            "give"              "muffled"          
## [30217] "yell"              ""                  "put"              
## [30220] "put"               ""                  ""                 
## [30223] "cried"             "merry"             ""                 
## [30226] ""                  "ll"                "squeeze"          
## [30229] "two"               "don"               ""                 
## [30232] "says"              ""                  ""                 
## [30235] ""                  ""                  ""                 
## [30238] ""                  "shouted"           "frodo"            
## [30241] "rushing"           "round"             "side"             
## [30244] "tree"              ""                  "put"              
## [30247] "put"               ""                  ""                 
## [30250] "begged"            "merry"             "branches"         
## [30253] "willow"            "began"             "sway"             
## [30256] "violently"         "sound"             "wind"             
## [30259] "rising"            "spreading"         "outwards"         
## [30262] "branches"          "trees"             "round"            
## [30265] "though"            "dropped"           "stone"            
## [30268] "quiet"             "slumber"           "river"            
## [30271] "valley"            "set"               "ripples"          
## [30274] "anger"             "ran"               "whole"            
## [30277] "forest"            "sam"               "kicked"           
## [30280] "little"            "fire"              "stamped"          
## [30283] "sparks"            "frodo"             "without"          
## [30286] "clear"             "idea"              "hoped"            
## [30289] "ran"               "along"             "path"             
## [30292] "crying"            "help"              "help"             
## [30295] "help"              "seemed"            "hardly"           
## [30298] "hear"              "sound"             "shrill"           
## [30301] "voice"             "blown"             "away"             
## [30304] "willow"            "wind"              "drowned"          
## [30307] "clamour"           "leaves"            "soon"             
## [30310] "words"             "left"              "mouth"            
## [30313] "felt"              "desperate"         "lost"             
## [30316] "witless"           "suddenly"          "slopped"          
## [30319] "answer"            "thought"           "seemed"           
## [30322] "come"              "behind"            "away"             
## [30325] "path"              "back"              "forest"           
## [30328] "turned"            "round"             "listened"         
## [30331] "soon"              "doubt"             "someone"          
## [30334] "singing"           "song"              "deep"             
## [30337] "glad"              "voice"             "singing"          
## [30340] "carelessly"        "happily"           "singing"          
## [30343] "nonsense"          "hey"               "dol"              
## [30346] "merry"             "dol"               "ring"             
## [30349] "dong"              "dillo"             "ring"             
## [30352] "dong"              "hop"               "along"            
## [30355] "fal"               "lal"               "willow"           
## [30358] "tom"               "bom"               "jolly"            
## [30361] "tom"               "tom"               "bombadillo"       
## [30364] "half"              "hopeful"           "half"             
## [30367] "afraid"            "new"               "danger"           
## [30370] "frodo"             "sam"               "now"              
## [30373] "stood"             "still"             "suddenly"         
## [30376] "long"              "string"            "nonsense"         
## [30379] "words"             "seemed"            "voice"            
## [30382] "rose"              "loud"              "clear"            
## [30385] "burst"             "song"              "hey"              
## [30388] "come"              "merry"             "dot"              
## [30391] "derry"             "dol"               "darling"          
## [30394] "light"             "goes"              "weather"          
## [30397] "wind"              "feathered"         "starling"         
## [30400] "along"             "hill"              "shining"          
## [30403] "sunlight"          "waiting"           "doorstep"         
## [30406] "cold"              "starlight"         "pretty"           
## [30409] "lady"              "river"             "woman"            
## [30412] ""                  "daughter"          "slender"          
## [30415] "willow"            "wand"              "clearer"          
## [30418] "water"             "old"               "tom"              
## [30421] "bombadil"          "water"             "lilies"           
## [30424] "bringing"          "comes"             "hopping"          
## [30427] "home"              "can"               "hear"             
## [30430] "singing"           "hey"               "come"             
## [30433] "merry"             "dol"               "deny"             
## [30436] "dol"               "merry"             "goldberry"        
## [30439] "goldberry"         "merry"             "yellow"           
## [30442] "berry"             "poor"              "old"              
## [30445] "willow"            "man"               "tuck"             
## [30448] "roots"             "away"              "tom"              
## [30451] ""                  "hurry"             "now"              
## [30454] "evening"           "will"              "follow"           
## [30457] "day"               "tom"               ""                 
## [30460] "going"             "home"              "water"            
## [30463] "lilies"            "bringing"          "hey"              
## [30466] "come"              "derry"             "dol"              
## [30469] "can"               "hear"              "singing"          
## [30472] "frodo"             "sam"               "stood"            
## [30475] "enchanted"         "wind"              "puffed"           
## [30478] "leaves"            "hung"              "silently"         
## [30481] "stiff"             "branches"          "another"          
## [30484] "burst"             "song"              "suddenly"         
## [30487] "hopping"           "dancing"           "along"            
## [30490] "path"              "appeared"          "reeds"            
## [30493] "old"               "battered"          "hat"              
## [30496] "tall"              "crown"             "long"             
## [30499] "blue"              "feather"           "stuck"            
## [30502] "band"              "another"           "hop"              
## [30505] "bound"             "came"              "view"             
## [30508] "man"               "seemed"            "rate"             
## [30511] "large"             "heavy"             "hobbit"           
## [30514] "quite"             "tall"              "enough"           
## [30517] "one"               "big"               "people"           
## [30520] "though"            "made"              "noise"            
## [30523] "enough"            "one"               "slumping"         
## [30526] "along"             "great"             "yellow"           
## [30529] "boots"             "thick"             "legs"             
## [30532] "charging"          "grass"             "rushes"           
## [30535] "like"              "cow"               "going"            
## [30538] "drink"             "blue"              "coat"             
## [30541] "long"              "brown"             "beard"            
## [30544] "eyes"              "blue"              "bright"           
## [30547] "face"              "red"               "ripe"             
## [30550] "apple"             "creased"           "hundred"          
## [30553] "wrinkles"          "laughter"          "hands"            
## [30556] "carried"           "large"             "leaf"             
## [30559] "tray"              "small"             "pile"             
## [30562] "white"             "water"             "lilies"           
## [30565] ""                  "help"              ""                 
## [30568] "cried"             "frodo"             "sam"              
## [30571] "running"           "towards"           "hands"            
## [30574] "stretched"         ""                  "whoa"             
## [30577] "whoa"              "steady"            ""                 
## [30580] ""                  "cried"             "old"              
## [30583] "man"               "holding"           "one"              
## [30586] "hand"              "stopped"           "short"            
## [30589] "struck"            "stiff"             ""                 
## [30592] "now"               "little"            "fellows"          
## [30595] "going"             "puffing"           "like"             
## [30598] "bellows"           ""                  ""                 
## [30601] "matter"            "know"              ""                 
## [30604] ""                  "tom"               "bombadil"         
## [30607] "tell"              ""                  ""                 
## [30610] "trouble"           "tom"               ""                 
## [30613] "hurry"             "now"               "don"              
## [30616] ""                  "crush"             "lilies"           
## [30619] ""                  ""                  ""                 
## [30622] "friends"           "caught"            "willow"           
## [30625] "tree"              ""                  "cried"            
## [30628] "frodo"             "breathlessly"      ""                 
## [30631] "master"            "merry"             ""                 
## [30634] "squeezed"          "crack"             ""                 
## [30637] "cried"             "sam"               ""                 
## [30640] ""                  ""                  "shouted"          
## [30643] "tom"               "bombadil"          "leaping"          
## [30646] "air"               ""                  "old"              
## [30649] "man"               "willow"            "naught"           
## [30652] "worse"             "eh"                "can"              
## [30655] "soon"              "mended"            "know"             
## [30658] "tune"              "old"               "grey"             
## [30661] "willow"            "man"               ""                 
## [30664] "ll"                "freeze"            "marrow"           
## [30667] "cold"              "don"               ""                 
## [30670] "behave"            ""                  "ll"               
## [30673] "sing"              "roots"             ""                 
## [30676] "ll"                "sing"              "wind"             
## [30679] "blow"              "leaf"              "branch"           
## [30682] "away"              "old"               "man"              
## [30685] "willow"            ""                  "setting"          
## [30688] "lilies"            "carefully"         "grass"            
## [30691] "ran"               "tree"              "saw"              
## [30694] "merry"             ""                  "feet"             
## [30697] "still"             "sticking"          "rest"             
## [30700] "already"           "drawn"             "inside"           
## [30703] "tom"               "put"               "mouth"            
## [30706] "crack"             "began"             "singing"          
## [30709] "low"               "voice"             "catch"            
## [30712] "words"             "evidently"         "merry"            
## [30715] "aroused"           "legs"              "began"            
## [30718] "kick"              "tom"               "sprang"           
## [30721] "away"              "breaking"          "hanging"          
## [30724] "branch"            "smote"             "side"             
## [30727] "willow"            ""                  ""                 
## [30730] "let"               "old"               "man"              
## [30733] "willow"            ""                  "said"             
## [30736] ""                  ""                  "thinking"         
## [30739] "waking"            "eat"               "earth"            
## [30742] "dig"               "deep"              "drink"            
## [30745] "water"             "go"                "sleep"            
## [30748] "bombadil"          "talking"           ""                 
## [30751] "seized"            "merry"             ""                 
## [30754] "feet"              "drew"              "suddenly"         
## [30757] "widening"          "crack"             "tearing"          
## [30760] "creak"             "crack"             "split"            
## [30763] "open"              "pippin"            "sprang"           
## [30766] "kicked"            "loud"              "snap"             
## [30769] "cracks"            "closed"            "fast"             
## [30772] "shudder"           "ran"               "tree"             
## [30775] "root"              "tip"               "complete"         
## [30778] "silence"           "fell"              ""                 
## [30781] "thank"             ""                  ""                 
## [30784] "said"              "hobbits"           "one"              
## [30787] "tom"               "bombadil"          "burst"            
## [30790] "laughing"          ""                  "well"             
## [30793] "little"            "fellows"           ""                 
## [30796] "said"              "stooping"          "peered"           
## [30799] "faces"             ""                  ""                 
## [30802] "shall"             "come"              "home"             
## [30805] "table"             "laden"             "yellow"           
## [30808] "cream"             "honeycomb"         "white"            
## [30811] "bread"             "butter"            "goldberry"        
## [30814] "waiting"           "time"              "enough"           
## [30817] "questions"         "around"            "supper"           
## [30820] "table"             "follow"            "quick"            
## [30823] "able"              ""                  "picked"           
## [30826] "lilies"            "beckoning"         "wave"             
## [30829] "hand"              "went"              "hopping"          
## [30832] "dancing"           "along"             "path"             
## [30835] "eastward"          "still"             "singing"          
## [30838] "loudly"            "nonsensically"     "surprised"        
## [30841] "relieved"          "talk"              "hobbits"          
## [30844] "followed"          "fast"              "fast"             
## [30847] "enough"            "tom"               "soon"             
## [30850] "disappeared"       "front"             "noise"            
## [30853] "singing"           "got"               "fainter"          
## [30856] "away"              "suddenly"          "voice"            
## [30859] "came"              "floating"          "back"             
## [30862] "loud"              "halloo"            "hop"              
## [30865] "along"             "little"            "friends"          
## [30868] "withywindle"       "tom"               ""                 
## [30871] "going"             "ahead"             "candles"          
## [30874] "kindle"            "west"              "sinks"            
## [30877] "sun"               "soon"              "will"             
## [30880] "groping"           "night"             "shadows"          
## [30883] "fall"              "door"              "will"             
## [30886] "open"              "window"            "panes"            
## [30889] "light"             "will"              "twinkle"          
## [30892] "yellow"            "fear"              "alder"            
## [30895] "black"             "heed"              "hoary"            
## [30898] "willow"            "fear"              "neither"          
## [30901] "root"              "bough"             "tom"              
## [30904] "goes"              "hey"               "now"              
## [30907] "merry"             "dot"               ""                 
## [30910] "ll"                "waiting"           "hobbits"          
## [30913] "heard"             "almost"            "sun"              
## [30916] "seemed"            "sink"              "trees"            
## [30919] "behind"            "thought"           "slanting"         
## [30922] "light"             "evening"           "glittering"       
## [30925] "brandywine"        "river"             "windows"          
## [30928] "bucklebury"        "beginning"         "gleam"            
## [30931] "hundreds"          "lights"            "great"            
## [30934] "shadows"           "fell"              "across"           
## [30937] "trunks"            "branches"          "trees"            
## [30940] "hung"              "dark"              "threatening"      
## [30943] "path"              "white"             "mists"            
## [30946] "began"             "rise"              "curl"             
## [30949] "surface"           "river"             "stray"            
## [30952] "roots"             "trees"             "upon"             
## [30955] "borders"           "ground"            "feet"             
## [30958] "shadowy"           "steam"             "arose"            
## [30961] "mingled"           "swiftly"           "falling"          
## [30964] "dusk"              "became"            "difficult"        
## [30967] "follow"            "path"              "tired"            
## [30970] "legs"              "seemed"            "leaden"           
## [30973] "strange"           "furtive"           "noises"           
## [30976] "ran"               "among"             "bushes"           
## [30979] "reeds"             "either"            "side"             
## [30982] "looked"            "pale"              "sky"              
## [30985] "caught"            "sight"             "queer"            
## [30988] "gnarled"           "knobbly"           "faces"            
## [30991] "gloomed"           "dark"              "twilight"         
## [30994] "leered"            "high"              "bank"             
## [30997] "edges"             "wood"              "began"            
## [31000] "feel"              "country"           "unreal"           
## [31003] "stumbling"         "ominous"           "dream"            
## [31006] "led"               "awakening"         "just"             
## [31009] "felt"              "feet"              "slowing"          
## [31012] "standstill"        "noticed"           "ground"           
## [31015] "gently"            "rising"            "water"            
## [31018] "began"             "murmur"            "darkness"         
## [31021] "caught"            "white"             "glimmer"          
## [31024] "foam"              "river"             "flowed"           
## [31027] "short"             "fall"              "suddenly"         
## [31030] "trees"             "came"              "end"              
## [31033] "mists"             "left"              "behind"           
## [31036] "stepped"           "forest"            "found"            
## [31039] "wide"              "sweep"             "grass"            
## [31042] "welling"           "river"             "now"              
## [31045] "small"             "swift"             "leaping"          
## [31048] "merrily"           "meet"              "glinting"         
## [31051] "light"             "stars"             "already"          
## [31054] "shining"           "sky"               "grass"            
## [31057] "feet"              "smooth"            "short"            
## [31060] "mown"              "shaven"            "eaves"            
## [31063] "forest"            "behind"            "clipped"          
## [31066] "trim"              "hedge"             "path"             
## [31069] "now"               "plain"             "well"             
## [31072] "tended"            "bordered"          "stone"            
## [31075] "wound"             "top"               "grassy"           
## [31078] "knoll"             "now"               "grey"             
## [31081] "pale"              "starry"            "night"            
## [31084] "still"             "high"              "slope"            
## [31087] "saw"               "twinkling"         "lights"           
## [31090] "house"             "path"              "went"             
## [31093] "long"              "smooth"            "hillside"         
## [31096] "turf"              "towards"           "light"            
## [31099] "suddenly"          "wide"              "yellow"           
## [31102] "beam"              "flowed"            "brightly"         
## [31105] "door"              "opened"            "tom"              
## [31108] "bombadil"          ""                  "house"            
## [31111] "hill"              "behind"            "steep"            
## [31114] "shoulder"          "land"              "lay"              
## [31117] "grey"              "bare"              "beyond"           
## [31120] "dark"              "shapes"            "barrow"           
## [31123] "downs"             "stalked"           "away"             
## [31126] "eastern"           "night"             "hurried"          
## [31129] "forward"           "hobbits"           "ponies"           
## [31132] "already"           "half"              "weariness"        
## [31135] "fears"             "fallen"            "hey"              
## [31138] "come"              "merry"             "dol"              
## [31141] "rolled"            "song"              "greet"            
## [31144] "hey"               "come"              "derry"            
## [31147] "dol"               "hop"               "along"            
## [31150] "hearties"          "hobbits"           "ponies"           
## [31153] "fond"              "parties"           "now"              
## [31156] "let"               "fun"               "begin"            
## [31159] "let"               "us"                "sing"             
## [31162] "together"          "another"           "clear"            
## [31165] "voice"             "young"             "ancient"          
## [31168] "spring"            "like"              "song"             
## [31171] "glad"              "water"             "flowing"          
## [31174] "night"             "bright"            "morning"          
## [31177] "hills"             "came"              "falling"          
## [31180] "like"              "silver"            "meet"             
## [31183] "now"               "let"               "song"             
## [31186] "begin"             "let"               "us"               
## [31189] "sing"              "together"          "sun"              
## [31192] "stars"             "moon"              "mist"             
## [31195] "rain"              "cloudy"            "weather"          
## [31198] "light"             "budding"           "leaf"             
## [31201] "dew"               "feather"           "wind"             
## [31204] "open"              "hill"              "bells"            
## [31207] "heather"           "reeds"             "shady"            
## [31210] "pool"              "lilies"            "water"            
## [31213] "old"               "tom"               "bombadil"         
## [31216] "river"             "daughter"          "song"             
## [31219] "hobbits"           "stood"             "upon"             
## [31222] "threshold"         "golden"            "light"            
## [31225] "chapter"           "house"             "tom"              
## [31228] "bombadil"          "four"              "hobbits"          
## [31231] "stepped"           "wide"              "stone"            
## [31234] "threshold"         "stood"             "still"            
## [31237] "blinking"          "long"              "low"              
## [31240] "room"              "filled"            "light"            
## [31243] "lamps"             "swinging"          "beams"            
## [31246] "roof"              "table"             "dark"             
## [31249] "polished"          "wood"              "stood"            
## [31252] "many"              "candles"           "tall"             
## [31255] "yellow"            "burning"           "brightly"         
## [31258] "chair"             "far"               "side"             
## [31261] "room"              "facing"            "outer"            
## [31264] "door"              "sat"               "woman"            
## [31267] "long"              "yellow"            "hair"             
## [31270] "rippled"           "shoulders"         "gown"             
## [31273] "green"             "green"             "young"            
## [31276] "reeds"             "shot"              "silver"           
## [31279] "like"              "beads"             "dew"              
## [31282] "belt"              "gold"              "shaped"           
## [31285] "like"              "chain"             "flag"             
## [31288] "lilies"            "set"               "pale"             
## [31291] "blue"              "eyes"              "forget"           
## [31294] "nots"              "feel"              "wide"             
## [31297] "vessels"           "green"             "brown"            
## [31300] "earthenware"       "white"             "water"            
## [31303] "lilies"            "floating"          "seemed"           
## [31306] "enthroned"         "midst"             "pool"             
## [31309] ""                  "enter"             "good"             
## [31312] "guests"            ""                  "said"             
## [31315] "spoke"             "knew"              "clear"            
## [31318] "voice"             "heard"             "singing"          
## [31321] "came"              "timid"             "steps"            
## [31324] "room"              "began"             "bow"              
## [31327] "low"               "feeling"           "strangely"        
## [31330] "surprised"         "awkward"           "like"             
## [31333] "folk"              "knocking"          "cottage"          
## [31336] "door"              "beg"               "drink"            
## [31339] "water"             "answered"          "fair"             
## [31342] "young"             "elf"               "queen"            
## [31345] "clad"              "living"            "flowers"          
## [31348] "say"               "anything"          "sprang"           
## [31351] "lightly"           "lily"              "bowls"            
## [31354] "ran"               "laughing"          "towards"          
## [31357] "ran"               "gown"              "rustled"          
## [31360] "softly"            "like"              "wind"             
## [31363] "flowering"         "borders"           "river"            
## [31366] ""                  "come"              "dear"             
## [31369] "folk"              ""                  "said"             
## [31372] "taking"            "frodo"             "hand"             
## [31375] ""                  "laugh"             "merry"            
## [31378] "goldberry"         "daughter"          "river"            
## [31381] ""                  "lightly"           "passed"           
## [31384] "closing"           "door"              "turned"           
## [31387] "back"              "white"             "arms"             
## [31390] "spread"            "across"            ""                 
## [31393] "let"               "us"                "shut"             
## [31396] "night"             ""                  "said"             
## [31399] ""                  ""                  "still"            
## [31402] "afraid"            "perhaps"           "mist"             
## [31405] "tree"              "shadows"           "deep"             
## [31408] "water"             "untame"            "things"           
## [31411] "fear"              "nothing"           "tonight"          
## [31414] "roof"              "tom"               "bombadil"         
## [31417] ""                  "hobbits"           "looked"           
## [31420] "wonder"            "looked"            "smiled"           
## [31423] ""                  "fair"              "lady"             
## [31426] "goldberry"         ""                  "said"             
## [31429] "frodo"             "last"              "feeling"          
## [31432] "heart"             "moved"             "joy"              
## [31435] "understand"        "stood"             "times"            
## [31438] "stood"             "enchanted"         "fair"             
## [31441] "elven"             "voices"            "spell"            
## [31444] "now"               "laid"              "upon"             
## [31447] "different"         "less"              "keen"             
## [31450] "lofty"             "delight"           "deeper"           
## [31453] "nearer"            "mortal"            "heart"            
## [31456] "marvellous"        "yet"               "strange"          
## [31459] ""                  "fair"              "lady"             
## [31462] "goldberry"         ""                  "said"             
## [31465] ""                  "now"               "joy"              
## [31468] "hidden"            "songs"             "heard"            
## [31471] "made"              "plain"             "slender"          
## [31474] "willow"            "wand"              "clearer"          
## [31477] "clear"             "water"             "reed"             
## [31480] "living"            "pool"              "fair"             
## [31483] "river"             "daughter"          "spring"           
## [31486] "time"              "summer"            "time"             
## [31489] "spring"            "wind"              "waterfall"        
## [31492] "leaves"            ""                  "laughter"         
## [31495] ""                  "suddenly"          "stopped"          
## [31498] "stammered"         "overcome"          "surprise"         
## [31501] "hear"              "saying"            "things"           
## [31504] "goldberry"         "laughed"           ""                 
## [31507] "welcome"           ""                  "said"             
## [31510] ""                  ""                  "heard"            
## [31513] "folk"              "shire"             "sweet"            
## [31516] "tongued"           "see"               "elf"              
## [31519] "friend"            "light"             "eyes"             
## [31522] "ring"              "voice"             "tells"            
## [31525] "merry"             "meeting"           "sit"              
## [31528] "now"               "wait"              "master"           
## [31531] "house"             "will"              "long"             
## [31534] "tending"           "tired"             "beasts"           
## [31537] ""                  "hobbits"           "sat"              
## [31540] "gladly"            "low"               "rush"             
## [31543] "seated"            "chairs"            "goldberry"        
## [31546] "busied"            "table"             "eyes"             
## [31549] "followed"          "slender"           "grace"            
## [31552] "movement"          "filled"            "quiet"            
## [31555] "delight"           "somewhere"         "behind"           
## [31558] "house"             "came"              "sound"            
## [31561] "singing"           "every"             "now"              
## [31564] "caught"            "among"             "many"             
## [31567] "derry"             "dol"               "merry"            
## [31570] "dol"               "ring"              "ding"             
## [31573] "dillo"             "repeated"          "words"            
## [31576] "old"               "tom"               "bombadil"         
## [31579] "merry"             "fellow"            "bright"           
## [31582] "blue"              "jacket"            "boots"            
## [31585] "yellow"            ""                  "fair"             
## [31588] "lady"              ""                  "said"             
## [31591] "frodo"             ""                  "tell"             
## [31594] "asking"            "seem"              "foolish"          
## [31597] "tom"               "bombadil"          ""                 
## [31600] ""                  ""                  ""                 
## [31603] ""                  "said"              "goldberry"        
## [31606] "staying"           "swift"             "movements"        
## [31609] "smiling"           "frodo"             "looked"           
## [31612] "questioningly"     ""                  ""                 
## [31615] "seen"              ""                  ""                 
## [31618] "said"              "answer"            "look"             
## [31621] ""                  ""                  "master"           
## [31624] "wood"              "water"             "hill"             
## [31627] ""                  ""                  ""                 
## [31630] "strange"           "land"              "belongs"          
## [31633] ""                  ""                  ""                 
## [31636] ""                  "indeed"            ""                 
## [31639] "answered"          "smile"             "faded"            
## [31642] ""                  ""                  "indeed"           
## [31645] "burden"            ""                  "added"            
## [31648] "low"               "voice"             ""                 
## [31651] ""                  "trees"             "grasses"          
## [31654] "things"            "growing"           "living"           
## [31657] "land"              "belong"            "tom"              
## [31660] "bombadil"          "master"            "one"              
## [31663] "ever"              "caught"            "old"              
## [31666] "tom"               "walking"           "forest"           
## [31669] "wading"            "water"             "leaping"          
## [31672] "hill"              "tops"              "light"            
## [31675] "shadow"            "fear"              "tom"              
## [31678] "bombadil"          "master"            ""                 
## [31681] "door"              "opened"            "came"             
## [31684] "tom"               "bombadil"          "now"              
## [31687] "hat"               "thick"             "brown"            
## [31690] "hair"              "crowned"           "autumn"           
## [31693] "leaves"            "laughed"           "going"            
## [31696] "goldberry"         "took"              "hand"             
## [31699] ""                  ""                  ""                 
## [31702] "pretty"            "lady"              ""                 
## [31705] "said"              "bowing"            "hobbits"          
## [31708] ""                  ""                  ""                 
## [31711] "goldberry"         "clothed"           "silver"           
## [31714] "green"             "flowers"           "girdle"           
## [31717] "table"             "laden"             "see"              
## [31720] "yellow"            "cream"             "honeycomb"        
## [31723] "white"             "bread"             "butter"           
## [31726] "milk"              "cheese"            "green"            
## [31729] "herbs"             "ripe"              "berries"          
## [31732] "gathered"          "enough"            "us"               
## [31735] "supper"            "ready"             ""                 
## [31738] ""                  ""                  ""                 
## [31741] ""                  "said"              "goldberry"        
## [31744] ""                  ""                  "guests"           
## [31747] "perhaps"           ""                  ""                 
## [31750] "tom"               "clapped"           "hands"            
## [31753] "cried"             ""                  "tom"              
## [31756] "tom"               "guests"            "tired"            
## [31759] "near"              "forgotten"         "come"             
## [31762] "now"               "merry"             "friends"          
## [31765] "tom"               "will"              "refresh"          
## [31768] "shall"             "clean"             "grimy"            
## [31771] "hands"             "wash"              "weary"            
## [31774] "faces"             "cast"              "muddy"            
## [31777] "cloaks"            "comb"              "tangles"          
## [31780] ""                  "opened"            "door"             
## [31783] "followed"          "short"             "passage"          
## [31786] "round"             "sharp"             "turn"             
## [31789] "came"              "low"               "room"             
## [31792] "sloping"           "roof"              "penthouse"        
## [31795] "seemed"            "built"             "north"            
## [31798] "end"               "house"             "walls"            
## [31801] "clean"             "stone"             "mostly"           
## [31804] "covered"           "green"             "hanging"          
## [31807] "mats"              "yellow"            "curtains"         
## [31810] "floor"             "flagged"           "strewn"           
## [31813] "fresh"             "green"             "rushes"           
## [31816] "four"              "deep"              "mattresses"       
## [31819] "piled"             "white"             "blankets"         
## [31822] "laid"              "floor"             "along"            
## [31825] "one"               "side"              "opposite"         
## [31828] "wall"              "long"              "bench"            
## [31831] "laden"             "wide"              "earthenware"      
## [31834] "basins"            "beside"            "stood"            
## [31837] "brown"             "ewers"             "filled"           
## [31840] "water"             "cold"              "steaming"         
## [31843] "hot"               "soft"              "green"            
## [31846] "slippers"          "set"               "ready"            
## [31849] "beside"            "bed"               "long"             
## [31852] "washed"            "refreshed"         "hobbits"          
## [31855] "seated"            "table"             "two"              
## [31858] "side"              "either"            "end"              
## [31861] "sat"               "goldberry"         "master"           
## [31864] "long"              "merry"             "meal"             
## [31867] "though"            "hobbits"           "ate"              
## [31870] "famished"          "hobbits"           "can"              
## [31873] "eat"               "lack"              "drink"            
## [31876] "drinking"          "bowls"             "seemed"           
## [31879] "clear"             "cold"              "water"            
## [31882] "yet"               "went"              "hearts"           
## [31885] "like"              "wine"              "set"              
## [31888] "free"              "voices"            "guests"           
## [31891] "became"            "suddenly"          "aware"            
## [31894] "singing"           "merrily"           "easier"           
## [31897] "natural"           "talking"           "last"             
## [31900] "tom"               "goldberry"         "rose"             
## [31903] "cleared"           "table"             "swiftly"          
## [31906] "guests"            "commanded"         "sit"              
## [31909] "quiet"             "set"               "chairs"           
## [31912] "footstool"         "tired"             "feet"             
## [31915] "fire"              "wide"              "hearth"           
## [31918] "burning"           "sweet"             "smell"            
## [31921] "built"             "apple"             "wood"             
## [31924] "everything"        "set"               "order"            
## [31927] "lights"            "room"              "put"              
## [31930] "except"            "one"               "lamp"             
## [31933] "pair"              "candles"           "end"              
## [31936] "chimney"           "shelf"             "goldberry"        
## [31939] "came"              "stood"             "holding"          
## [31942] "candle"            "wished"            "good"             
## [31945] "night"             "deep"              "sleep"            
## [31948] ""                  ""                  "peace"            
## [31951] "now"               ""                  "said"             
## [31954] ""                  ""                  "morning"          
## [31957] "heed"              "nightly"           "noises"           
## [31960] "nothing"           "passes"            "door"             
## [31963] "window"            "save"              "moonlight"        
## [31966] "starlight"         "wind"              "hill"             
## [31969] "top"               "good"              "night"            
## [31972] ""                  "passed"            "room"             
## [31975] "glimmer"           "rustle"            "sound"            
## [31978] "footsteps"         "like"              "stream"           
## [31981] "falling"           "gently"            "away"             
## [31984] "downhill"          "cool"              "stones"           
## [31987] "quiet"             "night"             "tom"              
## [31990] "sat"               "beside"            "silence"          
## [31993] "tried"             "muster"            "courage"          
## [31996] "ask"               "one"               "many"             
## [31999] "questions"         "meant"             "ask"              
## [32002] "supper"            "sleep"             "gathered"         
## [32005] "eyelids"           "last"              "frodo"            
## [32008] "spoke"             ""                  ""                 
## [32011] "hear"              "calling"           "master"           
## [32014] "just"              "chance"            "brought"          
## [32017] "moment"            ""                  "tom"              
## [32020] "stirred"           "like"              "man"              
## [32023] "shaken"            "pleasant"          "dream"            
## [32026] ""                  "eh"                ""                 
## [32029] ""                  "said"              ""                 
## [32032] ""                  "hear"              "calling"          
## [32035] "nay"               "hear"              "busy"             
## [32038] "singing"           "just"              "chance"           
## [32041] "brought"           "chance"            "call"             
## [32044] "plan"              "mine"              "though"           
## [32047] "waiting"           "heard"             "news"             
## [32050] "learned"           "wandering"         "guessed"          
## [32053] ""                  ""                  "come"             
## [32056] "ere"               "long"              "water"            
## [32059] "paths"             "lead"              "way"              
## [32062] "withywindle"       "old"               "grey"             
## [32065] "willow"            "man"               ""                 
## [32068] ""                  "mighty"            "singer"           
## [32071] ""                  ""                  "hard"             
## [32074] "little"            "folk"              "escape"           
## [32077] "cunning"           "mazes"             "tom"              
## [32080] "errand"            "dared"             "hinder"           
## [32083] ""                  "tom"               "nodded"           
## [32086] "sleep"             "taking"            "went"             
## [32089] "soft"              "singing"           "voice"            
## [32092] "errand"            "gathering"         "water"            
## [32095] "lilies"            "green"             "leaves"           
## [32098] "lilies"            "white"             "please"           
## [32101] "pretty"            "lady"              "last"             
## [32104] "ere"               "year"              ""                 
## [32107] "end"               "keep"              "winter"           
## [32110] "flower"            "pretty"            "feet"             
## [32113] "tilt"              "snows"             "melted"           
## [32116] "year"              "summer"            ""                 
## [32119] "end"               "go"                "find"             
## [32122] "wide"              "pool"              "deep"             
## [32125] "clear"             "far"               "withywindle"      
## [32128] "open"              "first"             "spring"           
## [32131] "linger"            "latest"            "pool"             
## [32134] "long"              "ago"               "found"            
## [32137] "river"             "daughter"          "fair"             
## [32140] "young"             "goldberry"         "sitting"          
## [32143] "rushes"            "sweet"             "singing"          
## [32146] "heart"             "beating"           "opened"           
## [32149] "eyes"              "looked"            "sudden"           
## [32152] "glint"             "blue"              "proved"           
## [32155] "well"              "now"               "shall"            
## [32158] "longer"            "go"                "deep"             
## [32161] "along"             "forest"            "water"            
## [32164] "year"              "old"               "shall"            
## [32167] "passing"           "old"               "man"              
## [32170] "willow"            ""                  "house"            
## [32173] "side"              "spring"            "time"             
## [32176] "till"              "merry"             "spring"           
## [32179] "river"             "daughter"          "dances"           
## [32182] "withy"             "path"              "bathe"            
## [32185] "water"             "fell"              "silent"           
## [32188] "frodo"             "help"              "asking"           
## [32191] "one"               "question"          "one"              
## [32194] "desired"           "answered"          ""                 
## [32197] "tell"              "us"                "master"           
## [32200] ""                  "said"              ""                 
## [32203] ""                  "willow"            "man"              
## [32206] "never"             "heard"             ""                 
## [32209] ""                  ""                  ""                 
## [32212] "don"               ""                  ""                 
## [32215] ""                  "said"              "merry"            
## [32218] "pippin"            "together"          "sitting"          
## [32221] "suddenly"          "upright"           ""                 
## [32224] ""                  "now"               "morning"          
## [32227] ""                  ""                  ""                 
## [32230] "right"             ""                  "said"             
## [32233] "old"               "man"               ""                 
## [32236] "now"               "time"              "resting"          
## [32239] "things"            "ill"               "hear"             
## [32242] "world"             ""                  "shadow"           
## [32245] "sleep"             "till"              "morning"          
## [32248] "light"             "rest"              "pillow"           
## [32251] "heed"              "nightly"           "noise"            
## [32254] "fear"              "grey"              "willow"           
## [32257] ""                  "took"              "lamp"             
## [32260] "blew"              "grasping"          "candle"           
## [32263] "either"            "hand"              "led"              
## [32266] "room"              "mattresses"        "pillows"          
## [32269] "soft"              "blankets"          "white"            
## [32272] "wool"              "hardly"            "laid"             
## [32275] "deep"              "beds"              "drawn"            
## [32278] "light"             "covers"            "asleep"           
## [32281] "dead"              "night"             "frodo"            
## [32284] "lay"               "dream"             "without"          
## [32287] "light"             "saw"               "young"            
## [32290] "moon"              "rising"            "thin"             
## [32293] "light"             "loomed"            "black"            
## [32296] "wall"              "rock"              "pierced"          
## [32299] "dark"              "arch"              "like"             
## [32302] "great"             "gate"              "seemed"           
## [32305] "frodo"             "lifted"            "passing"          
## [32308] "saw"               "rock"              "wall"             
## [32311] "circle"            "hills"             "within"           
## [32314] "plain"             "midst"             "plain"            
## [32317] "stood"             "pinnacle"          "stone"            
## [32320] "like"              "vast"              "tower"            
## [32323] "made"              "hands"             "top"              
## [32326] "stood"             "figure"            "man"              
## [32329] "moon"              "rose"              "seemed"           
## [32332] "hang"              "moment"            "head"             
## [32335] "glistened"         "white"             "hair"             
## [32338] "wind"              "stirred"           "dark"             
## [32341] "plain"             "came"              "crying"           
## [32344] "fell"              "voices"            "howling"          
## [32347] "many"              "wolves"            "suddenly"         
## [32350] "shadow"            "like"              "shape"            
## [32353] "great"             "wings"             "passed"           
## [32356] "across"            "moon"              "figure"           
## [32359] "lifted"            "arms"              "light"            
## [32362] "flashed"           "staff"             "wielded"          
## [32365] "mighty"            "eagle"             "swept"            
## [32368] "bore"              "away"              "voices"           
## [32371] "wailed"            "wolves"            "yammered"         
## [32374] "noise"             "like"              "strong"           
## [32377] "wind"              "blowing"           "borne"            
## [32380] "sound"             "hoofs"             "galloping"        
## [32383] "galloping"         "galloping"         "east"             
## [32386] ""                  "black"             "riders"           
## [32389] ""                  "thought"           "frodo"            
## [32392] "wakened"           "sound"             "hoofs"            
## [32395] "still"             "echoing"           "mind"             
## [32398] "wondered"          "ever"              "courage"          
## [32401] "leave"             "safety"            "stone"            
## [32404] "walls"             "lay"               "motionless"       
## [32407] "still"             "listening"         "now"              
## [32410] "silent"            "last"              "turned"           
## [32413] "fell"              "asleep"            "wandered"         
## [32416] "unremembered"      "dream"             "side"             
## [32419] "pippin"            "lay"               "dreaming"         
## [32422] "pleasantly"        "change"            "came"             
## [32425] "dreams"            "turned"            "groaned"          
## [32428] "suddenly"          "woke"              "thought"          
## [32431] "waked"             "yet"               "still"            
## [32434] "heard"             "darkness"          "sound"            
## [32437] "disturbed"         "dream"             "tip"              
## [32440] "tap"               "squeak"            "noise"            
## [32443] "like"              "branches"          "fretting"         
## [32446] "wind"              "twig"              "fingers"          
## [32449] "scraping"          "wall"              "window"           
## [32452] "creak"             "creak"             "creak"            
## [32455] "wondered"          "willow"            "trees"            
## [32458] "close"             "house"             "suddenly"         
## [32461] "dreadful"          "feeling"           "ordinary"         
## [32464] "house"             "inside"            "willow"           
## [32467] "listening"         "horrible"          "dry"              
## [32470] "creaking"          "voice"             "laughing"         
## [32473] "sat"               "felt"              "soft"             
## [32476] "pillows"           "yield"             "hands"            
## [32479] "lay"               "relieved"          "seemed"           
## [32482] "hear"              "echo"              "words"            
## [32485] "ears"              ""                  "fear"             
## [32488] "nothing"           "peace"             "morning"          
## [32491] "heed"              "nightly"           "noises"           
## [32494] ""                  "went"              "sleep"            
## [32497] "sound"             "water"             "merry"            
## [32500] "heard"             "falling"           "quiet"            
## [32503] "sleep"             "water"             "streaming"        
## [32506] "gently"            "spreading"         "spreading"        
## [32509] "irresistibly"      "round"             "house"            
## [32512] "dark"              "shoreless"         "pool"             
## [32515] "gurgled"           "walls"             "rising"           
## [32518] "slowly"            "surely"            ""                 
## [32521] ""                  "shall"             "drowned"          
## [32524] ""                  "thought"           "will"             
## [32527] "find"              "way"               "shall"            
## [32530] "drown"             ""                  "felt"             
## [32533] "lying"             "soft"              "slimy"            
## [32536] "bog"               "springing"         "set"              
## [32539] "fool"              "corner"            "cold"             
## [32542] "hard"              "flagstone"         "remembered"       
## [32545] "lay"               "seemed"            "hear"             
## [32548] "remember"          "hearing"           ""                 
## [32551] "nothing"           "passes"            "doors"            
## [32554] "windows"           "save"              "moonlight"        
## [32557] "starlight"         "wind"              "hill"             
## [32560] "top"               ""                  "little"           
## [32563] "breath"            "sweet"             "air"              
## [32566] "moved"             "curtain"           "breathed"         
## [32569] "deep"              "fell"              "asleep"           
## [32572] "far"               "remember"          "sam"              
## [32575] "slept"             "night"             "deep"             
## [32578] "content"           "logs"              "contented"        
## [32581] "woke"              "four"              "morning"          
## [32584] "light"             "tom"               "moving"           
## [32587] "room"              "whistling"         "like"             
## [32590] "starling"          "heard"             "stir"             
## [32593] "clapped"           "hands"             "cried"            
## [32596] ""                  "hey"               "come"             
## [32599] "merry"             "dol"               "derry"            
## [32602] "dol"               "hearties"          ""                 
## [32605] "drew"              "back"              "yellow"           
## [32608] "curtains"          "hobbits"           "saw"              
## [32611] "covered"           "windows"           "either"           
## [32614] "end"               "room"              "one"              
## [32617] "looking"           "east"              "looking"          
## [32620] "west"              "leapt"             "refreshed"        
## [32623] "frodo"             "ran"               "eastern"          
## [32626] "window"            "found"             "looking"          
## [32629] "kitchen"           "garden"            "grey"             
## [32632] "dew"               "half"              "expected"         
## [32635] "see"               "turf"              "right"            
## [32638] "walls"             "turf"              "pocked"           
## [32641] "hoof"              "prints"            "actually"         
## [32644] "view"              "screened"          "tall"             
## [32647] "line"              "beans"             "poles"            
## [32650] "far"               "beyond"            "grey"             
## [32653] "top"               "hill"              "loomed"           
## [32656] "sunrise"           "pale"              "morning"          
## [32659] "east"              "behind"            "long"             
## [32662] "clouds"            "like"              "lines"            
## [32665] "soiled"            "wool"              "stained"          
## [32668] "red"               "edges"             "lay"              
## [32671] "glimmering"        "deeps"             "yellow"           
## [32674] "sky"               "spoke"             "rain"             
## [32677] "come"              "light"             "broadening"       
## [32680] "quickly"           "red"               "flowers"          
## [32683] "beans"             "began"             "glow"             
## [32686] "wet"               "green"             "leaves"           
## [32689] "pippin"            "looked"            "western"          
## [32692] "window"            "pool"              "mist"             
## [32695] "forest"            "hidden"            "fog"              
## [32698] "like"              "looking"           "sloping"          
## [32701] "cloud"             "roof"              "fold"             
## [32704] "channel"           "mist"              "broken"           
## [32707] "many"              "plumes"            "billows"          
## [32710] "valley"            "withywindle"       "stream"           
## [32713] "ran"               "hill"              "left"             
## [32716] "vanished"          "white"             "shadows"          
## [32719] "near"              "hand"              "flower"           
## [32722] "garden"            "clipped"           "hedge"            
## [32725] "silver"            "netted"            "beyond"           
## [32728] "grey"              "shaven"            "grass"            
## [32731] "pale"              "dew"               "drops"            
## [32734] "willow"            "tree"              "seen"             
## [32737] ""                  "good"              "morning"          
## [32740] "merry"             "friends"           ""                 
## [32743] "cried"             "tom"               "opening"          
## [32746] "eastern"           "window"            "wide"             
## [32749] "cool"              "air"               "flowed"           
## [32752] "rainy"             "smell"             ""                 
## [32755] "sun"               "won"               ""                 
## [32758] "show"              "face"              "much"             
## [32761] "today"             ""                  ""                 
## [32764] "thinking"          "walking"           "wide"             
## [32767] "leaping"           "hilltops"          "since"            
## [32770] "grey"              "dawn"              "began"            
## [32773] "nosing"            "wind"              "weather"          
## [32776] "wet"               "grass"             "underfoot"        
## [32779] "wet"               "sky"               "wakened"          
## [32782] "goldberry"         "singing"           "window"           
## [32785] "nought"            "wakes"             "hobbit"           
## [32788] "folk"              "early"             "morning"          
## [32791] "night"             "little"            "folk"             
## [32794] "wake"              "darkness"          "sleep"            
## [32797] "light"             "come"              "ring"             
## [32800] "ding"              "dillo"             "wake"             
## [32803] "now"               "merry"             "friends"          
## [32806] "forget"            "nightly"           "noises"           
## [32809] "ring"              "ding"              "dillo"            
## [32812] "del"               "derry"             "del"              
## [32815] "hearties"          "come"              "soon"             
## [32818] ""                  "ll"                "find"             
## [32821] "breakfast"         "table"             "come"             
## [32824] "late"              ""                  "ll"               
## [32827] "get"               "grass"             "rain"             
## [32830] "water"             ""                  "needless"         
## [32833] "say"               "tom"               ""                 
## [32836] "threat"            "sounded"           "serious"          
## [32839] "hobbits"           "came"              "soon"             
## [32842] "left"              "table"             "late"             
## [32845] "beginning"         "lo"                "look"             
## [32848] "rather"            "empty"             "neither"          
## [32851] "tom"               "goldberry"         "tom"              
## [32854] "heard"             "house"             "clattering"       
## [32857] "kitchen"           "stairs"            "singing"          
## [32860] "outside"           "room"              "looked"           
## [32863] "westward"          "mist"              "clouded"          
## [32866] "valley"            "window"            "open"             
## [32869] "water"             "dripped"           "thatched"         
## [32872] "eaves"             "finished"          "breakfast"        
## [32875] "clouds"            "joined"            "unbroken"         
## [32878] "roof"              "straight"          "grey"             
## [32881] "rain"              "came"              "softly"           
## [32884] "steadily"          "behind"            "deep"             
## [32887] "curtain"           "forest"            "completely"       
## [32890] "veiled"            "looked"            "window"           
## [32893] "came"              "falling"           "gently"           
## [32896] "flowing"           "rain"              "sky"              
## [32899] "clear"             "voice"             "goldberry"        
## [32902] "singing"           "hear"              "words"            
## [32905] "seemed"            "plain"             "song"             
## [32908] "rain"              "song"              "sweet"            
## [32911] "showers"           "dry"               "hills"            
## [32914] "told"              "tale"              "river"            
## [32917] "spring"            "highlands"         "sea"              
## [32920] "far"               "hobbits"           "listened"         
## [32923] "delight"           "frodo"             "glad"             
## [32926] "heart"             "blessed"           "kindly"           
## [32929] "weather"           "delayed"           "departing"        
## [32932] "thought"           "going"             "heavy"            
## [32935] "upon"              "moment"            "awoke"            
## [32938] "guessed"           "now"               "go"               
## [32941] "day"               "upper"             "wind"             
## [32944] "settled"           "west"              "deeper"           
## [32947] "wetter"            "clouds"            "rolled"           
## [32950] "spill"             "laden"             "rain"             
## [32953] "bare"              "heads"             "downs"            
## [32956] "nothing"           "seen"              "round"            
## [32959] "house"             "falling"           "water"            
## [32962] "frodo"             "stood"             "near"             
## [32965] "open"              "door"              "watched"          
## [32968] "white"             "chalky"            "path"             
## [32971] "turn"              "little"            "river"            
## [32974] "milk"              "go"                "bubbling"         
## [32977] "away"              "valley"            "tom"              
## [32980] "bombadil"          "came"              "trotting"         
## [32983] "round"             "corner"            "house"            
## [32986] "waving"            "arms"              "warding"          
## [32989] "rain"              "indeed"            "sprang"           
## [32992] "threshold"         "seemed"            "quite"            
## [32995] "dry"               "except"            "boots"            
## [32998] "took"              "put"               "chimney"          
## [33001] "corner"            "sat"               "largest"          
## [33004] "chair"             "called"            "hobbits"          
## [33007] "gather"            "round"             ""                 
## [33010] ""                  "goldberry"         ""                 
## [33013] "washing"           "day"               ""                 
## [33016] "said"              ""                  ""                 
## [33019] "autumn"            "cleaning"          "wet"              
## [33022] "hobbit"            "folk"              "let"              
## [33025] "rest"              "able"              ""                 
## [33028] ""                  "good"              "day"              
## [33031] "long"              "tales"             "questions"        
## [33034] "answers"           "tom"               "will"             
## [33037] "start"             "talking"           ""                 
## [33040] "told"              "many"              "remarkable"       
## [33043] "stories"           "sometimes"         "half"             
## [33046] "speaking"          "sometimes"         "looking"          
## [33049] "suddenly"          "bright"            "blue"             
## [33052] "eye"               "deep"              "brows"            
## [33055] "often"             "voice"             "turn"             
## [33058] "song"              "get"               "chair"            
## [33061] "dance"             "told"              "tales"            
## [33064] "bees"              "flowers"           "ways"             
## [33067] "trees"             "strange"           "creatures"        
## [33070] "forest"            "evil"              "things"           
## [33073] "good"              "things"            "things"           
## [33076] "friendly"          "things"            "unfriendly"       
## [33079] "cruel"             "things"            "kind"             
## [33082] "things"            "secrets"           "hidden"           
## [33085] "brambles"          "listened"          "began"            
## [33088] "understand"        "lives"             "forest"           
## [33091] "apart"             "indeed"            "feel"             
## [33094] "strangers"         "things"            "home"             
## [33097] "moving"            "constantly"        "talk"             
## [33100] "old"               "man"               "willow"           
## [33103] "frodo"             "learned"           "now"              
## [33106] "enough"            "content"           "indeed"           
## [33109] "enough"            "comfortable"       "lore"             
## [33112] "tom"               ""                  "words"            
## [33115] "laid"              "bare"              "hearts"           
## [33118] "trees"             "thoughts"          "often"            
## [33121] "dark"              "strange"           "filled"           
## [33124] "hatred"            "things"            "go"               
## [33127] "free"              "upon"              "earth"            
## [33130] "gnawing"           "biting"            "breaking"         
## [33133] "hacking"           "burning"           "destroyers"       
## [33136] "usurpers"          "called"            "old"              
## [33139] "forest"            "without"           "reason"           
## [33142] "indeed"            "ancient"           "survivor"         
## [33145] "vast"              "forgotten"         "woods"            
## [33148] "lived"             "yet"               "ageing"           
## [33151] "quicker"           "hills"             "fathers"          
## [33154] "fathers"           "trees"             "remembering"      
## [33157] "times"             "lords"             "countless"        
## [33160] "years"             "filled"            "pride"            
## [33163] "rooted"            "wisdom"            "malice"           
## [33166] "none"              "dangerous"         "great"            
## [33169] "willow"            "heart"             "rotten"           
## [33172] "strength"          "green"             "cunning"          
## [33175] "master"            "winds"             "song"             
## [33178] "thought"           "ran"               "woods"            
## [33181] "sides"             "river"             "grey"             
## [33184] "thirsty"           "spirit"            "drew"             
## [33187] "power"             "earth"             "spread"           
## [33190] "like"              "fine"              "root"             
## [33193] "threads"           "ground"            "invisible"        
## [33196] "twig"              "fingers"           "air"              
## [33199] "till"              "dominion"          "nearly"           
## [33202] "trees"             "forest"            "hedge"            
## [33205] "downs"             "suddenly"          "tom"              
## [33208] ""                  "talk"              "left"             
## [33211] "woods"             "went"              "leaping"          
## [33214] "young"             "stream"            "bubbling"         
## [33217] "waterfalls"        "pebbles"           "worn"             
## [33220] "rocks"             "among"             "small"            
## [33223] "flowers"           "close"             "grass"            
## [33226] "wet"               "crannies"          "wandering"        
## [33229] "last"              "downs"             "heard"            
## [33232] "great"             "barrows"           "green"            
## [33235] "mounds"            "stone"             "rings"            
## [33238] "upon"              "hills"             "hollows"          
## [33241] "among"             "hills"             "sheep"            
## [33244] "bleating"          "flocks"            "green"            
## [33247] "walls"             "white"             "walls"            
## [33250] "rose"              "fortresses"        "heights"          
## [33253] "kings"             "little"            "kingdoms"         
## [33256] "fought"            "together"          "young"            
## [33259] "sun"               "shone"             "like"             
## [33262] "fire"              "red"               "metal"            
## [33265] "new"               "greedy"            "swords"           
## [33268] "victory"           "defeat"            "towers"           
## [33271] "fell"              "fortresses"        "burned"           
## [33274] "flames"            "went"              "sky"              
## [33277] "gold"              "piled"             "biers"            
## [33280] "dead"              "kings"             "queens"           
## [33283] "mounds"            "covered"           "stone"            
## [33286] "doors"             "shut"              "grass"            
## [33289] "grew"              "sheep"             "walked"           
## [33292] "biting"            "grass"             "soon"             
## [33295] "hills"             "empty"             "shadow"           
## [33298] "came"              "dark"              "places"           
## [33301] "far"               "away"              "bones"            
## [33304] "stirred"           "mounds"            "barrow"           
## [33307] "wights"            "walked"            "hollow"           
## [33310] "places"            "clink"             "rings"            
## [33313] "cold"              "fingers"           "gold"             
## [33316] "chains"            "wind"              ""                 
## [33319] "stone"             "rings"             "grinned"          
## [33322] "ground"            "like"              "broken"           
## [33325] "teeth"             "moonlight"         "hobbits"          
## [33328] "shuddered"         "even"              "shire"            
## [33331] "rumour"            "barrow"            "wights"           
## [33334] "barrow"            "downs"             "beyond"           
## [33337] "forest"            "heard"             "tale"             
## [33340] "hobbit"            "liked"             "listen"           
## [33343] "even"              "comfortable"       "fireside"         
## [33346] "far"               "away"              "four"             
## [33349] "now"               "suddenly"          "remembered"       
## [33352] "joy"               "house"             "driven"           
## [33355] "minds"             "house"             "tom"              
## [33358] "bombadil"          "nestled"           "shoulder"         
## [33361] "dreaded"           "hills"             "lost"             
## [33364] "thread"            "tale"              "shifted"          
## [33367] "uneasily"          "looking"           "aside"            
## [33370] "one"               "another"           "caught"           
## [33373] "words"             "found"             "now"              
## [33376] "wandered"          "strange"           "regions"          
## [33379] "beyond"            "memory"            "beyond"           
## [33382] "waking"            "thought"           "limes"            
## [33385] "world"             "wider"             "seas"             
## [33388] "flowed"            "straight"          "western"          
## [33391] "shore"             "still"             "back"             
## [33394] "tom"               "went"              "singing"          
## [33397] "ancient"           "starlight"         "elf"              
## [33400] "sires"             "awake"             "suddenly"         
## [33403] "slopped"           "saw"               "nodded"           
## [33406] "falling"           "asleep"            "hobbits"          
## [33409] "sat"               "still"             "enchanted"        
## [33412] "seemed"            "spell"             "words"            
## [33415] "wind"              "gone"              "clouds"           
## [33418] "dried"             "day"               "withdrawn"        
## [33421] "darkness"          "come"              "east"             
## [33424] "west"              "sky"               "filled"           
## [33427] "light"             "white"             "stars"            
## [33430] "whether"           "morning"           "evening"          
## [33433] "one"               "day"               "many"             
## [33436] "days"              "passed"            "frodo"            
## [33439] "tell"              "feel"              "either"           
## [33442] "hungry"            "tired"             "filled"           
## [33445] "wonder"            "stars"             "shone"            
## [33448] "window"            "silence"           "heavens"          
## [33451] "seemed"            "round"             "spoke"            
## [33454] "last"              "wonder"            "sudden"           
## [33457] "fear"              "silence"           ""                 
## [33460] ""                  "master"            ""                 
## [33463] "asked"             ""                  "eh"               
## [33466] ""                  ""                  "said"             
## [33469] "tom"               "sitting"           "eyes"             
## [33472] "glinting"          "gloom"             ""                 
## [33475] "don"               ""                  "know"             
## [33478] "name"              "yet"               ""                 
## [33481] ""                  "answer"            "tell"             
## [33484] "alone"             "nameless"          "young"            
## [33487] "old"               "eldest"            ""                 
## [33490] ""                  "mark"              "words"            
## [33493] "friends"           "tom"               "river"            
## [33496] "trees"             "tom"               "remembers"        
## [33499] "first"             "raindrop"          "first"            
## [33502] "acorn"             "made"              "paths"            
## [33505] "big"               "people"            "saw"              
## [33508] "little"            "people"            "arriving"         
## [33511] "kings"             "graves"            "barrow"           
## [33514] "wights"            "elves"             "passed"           
## [33517] "westward"          "tom"               "already"          
## [33520] "seas"              "bent"              "knew"             
## [33523] "dark"              "stars"             "fearless"         
## [33526] "dark"              "lord"              "came"             
## [33529] "outside"           ""                  "shadow"           
## [33532] "seemed"            "pass"              "window"           
## [33535] "hobbits"           "glanced"           "hastily"          
## [33538] "panes"             "turned"            "goldberry"        
## [33541] "stood"             "door"              "behind"           
## [33544] "framed"            "light"             "held"             
## [33547] "candle"            "shielding"         "flame"            
## [33550] "draught"           "hand"              "light"            
## [33553] "flowed"            "like"              "sunlight"         
## [33556] "white"             "shell"             ""                 
## [33559] ""                  "rain"              "ended"            
## [33562] ""                  "said"              ""                 
## [33565] ""                  "new"               "waters"           
## [33568] "running"           "downhill"          "stars"            
## [33571] "let"               "us"                "now"              
## [33574] "laugh"             "glad"              ""                 
## [33577] ""                  ""                  "let"              
## [33580] "us"                "food"              "drink"            
## [33583] ""                  "cried"             "tom"              
## [33586] ""                  "long"              "tales"            
## [33589] "thirsty"           "long"              "listening"        
## [33592] ""                  "hungry"            "work"             
## [33595] "morning"           "noon"              "evening"          
## [33598] ""                  "jumped"            "chair"            
## [33601] "bound"             "took"              "candle"           
## [33604] "chimney"           "shelf"             "lit"              
## [33607] "flame"             "goldberry"         "held"             
## [33610] "danced"            "table"             "suddenly"         
## [33613] "hopped"            "door"              "disappeared"      
## [33616] "quickly"           "returned"          "bearing"          
## [33619] "large"             "laden"             "tray"             
## [33622] "tom"               "goldberry"         "set"              
## [33625] "table"             "hobbits"           "sat"              
## [33628] "half"              "wonder"            "half"             
## [33631] "laughter"          "fair"              "grace"            
## [33634] "goldberry"         "merry"             "odd"              
## [33637] "caperings"         "tom"               "yet"              
## [33640] "fashion"           "seemed"            "weave"            
## [33643] "single"            "dance"             "neither"          
## [33646] "hindering"         "room"              "round"            
## [33649] "table"             "great"             "speed"            
## [33652] "food"              "vessels"           "lights"           
## [33655] "set"               "order"             "boards"           
## [33658] "blazed"            "candles"           "white"            
## [33661] "yellow"            "tom"               "bowed"            
## [33664] "guests"            ""                  "supper"           
## [33667] "ready"             ""                  "said"             
## [33670] "goldberry"         "now"               "hobbits"          
## [33673] "saw"               "clothed"           "silver"           
## [33676] "white"             "girdle"            "shoes"            
## [33679] "like"              "fishes"            ""                 
## [33682] "mail"              "tom"               "clean"            
## [33685] "blue"              "blue"              "rain"             
## [33688] "washed"            "forget"            "nots"             
## [33691] "green"             "stockings"         "supper"           
## [33694] "even"              "better"            "hobbits"          
## [33697] "spell"             "tom"               ""                 
## [33700] "words"             "may"               "missed"           
## [33703] "one"               "meal"              "many"             
## [33706] "food"              "seemed"            "least"            
## [33709] "week"              "since"             "eaten"            
## [33712] "sing"              "even"              "speak"            
## [33715] "much"              "paid"              "close"            
## [33718] "attention"         "business"          "time"             
## [33721] "hearts"            "spirit"            "rose"             
## [33724] "high"              "voices"            "rang"             
## [33727] "mirth"             "laughter"          "eaten"            
## [33730] "goldberry"         "sang"              "many"             
## [33733] "songs"             "songs"             "began"            
## [33736] "merrily"           "hills"             "fell"             
## [33739] "softly"            "silence"           "silences"         
## [33742] "saw"               "minds"             "pools"            
## [33745] "waters"            "wider"             "known"            
## [33748] "looking"           "saw"               "sky"              
## [33751] "stars"             "like"              "jewels"           
## [33754] "depths"            "wished"            "good"             
## [33757] "night"             "left"              "fireside"         
## [33760] "tom"               "now"               "seemed"           
## [33763] "wide"              "awake"             "plied"            
## [33766] "questions"         "appeared"          "already"          
## [33769] "know"              "much"              "families"         
## [33772] "indeed"            "know"              "much"             
## [33775] "history"           "doings"            "shire"            
## [33778] "days"              "hardly"            "remembered"       
## [33781] "among"             "hobbits"           "longer"           
## [33784] "surprised"         "made"              "secret"           
## [33787] "owed"              "recent"            "knowledge"        
## [33790] "largely"           "farmer"            "maggot"           
## [33793] "seemed"            "regard"            "person"           
## [33796] "importance"        "imagined"          ""                 
## [33799] ""                  ""                  "earth"            
## [33802] "old"               "feet"              "clay"             
## [33805] "fingers"           "wisdom"            "bones"            
## [33808] "eyes"              "open"              ""                 
## [33811] "said"              "tom"               "also"             
## [33814] "clear"             "tom"               "dealings"         
## [33817] "elves"             "seemed"            "fashion"          
## [33820] "news"              "reached"           "gildor"           
## [33823] "concerning"        "flight"            "frodo"            
## [33826] "indeed"            "much"              "tom"              
## [33829] "know"              "cunning"           "questioning"      
## [33832] "frodo"             "found"             "telling"          
## [33835] "bilbo"             "hopes"             "fears"            
## [33838] "told"              "even"              "gandalf"          
## [33841] "tom"               "wagged"            "head"             
## [33844] "glint"             "eyes"              "heard"            
## [33847] "riders"            ""                  "show"             
## [33850] "precious"          "ring"              ""                 
## [33853] "said"              "suddenly"          "midst"            
## [33856] "story"             "frodo"             "astonishment"     
## [33859] "drew"              "chain"             "pocket"           
## [33862] "unfastening"       "ring"              "handed"           
## [33865] "tom"               "seemed"            "grow"             
## [33868] "larger"            "lay"               "moment"           
## [33871] "big"               "brown"             "skinned"          
## [33874] "hand"              "suddenly"          "put"              
## [33877] "eye"               "laughed"           "second"           
## [33880] "hobbits"           "vision"            "comical"          
## [33883] "alarming"          "bright"            "blue"             
## [33886] "eye"               "gleaming"          "circle"           
## [33889] "gold"              "tom"               "put"              
## [33892] "ring"              "round"             "end"              
## [33895] "little"            "finger"            "held"             
## [33898] "candlelight"       "moment"            "hobbits"          
## [33901] "noticed"           "nothing"           "strange"          
## [33904] "gasped"            "sign"              "tom"              
## [33907] "disappearing"      "tom"               "laughed"          
## [33910] "spun"              "ring"              "air"              
## [33913] "vanished"          "flash"             "frodo"            
## [33916] "gave"              "cry"               "tom"              
## [33919] "leaned"            "forward"           "handed"           
## [33922] "back"              "smile"             "frodo"            
## [33925] "looked"            "closely"           "rather"           
## [33928] "suspiciously"      "like"              "one"              
## [33931] "lent"              "trinket"           "juggler"          
## [33934] "ring"              "looked"            "weighed"          
## [33937] "ring"              "always"            "seemed"           
## [33940] "frodo"             "weigh"             "strangely"        
## [33943] "heavy"             "hand"              "something"        
## [33946] "prompted"          "make"              "sure"             
## [33949] "perhaps"           "trifle"            "annoyed"          
## [33952] "tom"               "seeming"           "make"             
## [33955] "light"             "even"              "gandalf"          
## [33958] "thought"           "perilously"        "important"        
## [33961] "waited"            "opportunity"       "talk"             
## [33964] "going"             "tom"               "telling"          
## [33967] "absurd"            "story"             "badgers"          
## [33970] "queer"             "ways"              "slipped"          
## [33973] "ring"              "merry"             "turned"           
## [33976] "towards"           "say"               "something"        
## [33979] "gave"              "start"             "checked"          
## [33982] "exclamation"       "frodo"             "delighted"        
## [33985] "way"               "ring"              "right"            
## [33988] "merry"             "staring"           "blankly"          
## [33991] "chair"             "obviously"         "see"              
## [33994] "got"               "crept"             "quietly"          
## [33997] "away"              "fireside"          "towards"          
## [34000] "outer"             "door"              ""                 
## [34003] "hey"               ""                  ""                 
## [34006] "cried"             "tom"               "glancing"         
## [34009] "towards"           "seeing"            "look"             
## [34012] "shining"           "eyes"              ""                 
## [34015] "hey"               "come"              "frodo"            
## [34018] "going"             "old"               "tom"              
## [34021] "bombadil"          ""                  "blind"            
## [34024] "yet"               "take"              "golden"           
## [34027] "ring"              "hand"              ""                 
## [34030] "fair"              "without"           "come"             
## [34033] "back"              "leave"             "game"             
## [34036] "sit"               "beside"            "must"             
## [34039] "talk"              "think"             "morning"          
## [34042] "tom"               "must"              "teach"            
## [34045] "right"             "road"              "keep"             
## [34048] "feet"              "wandering"         ""                 
## [34051] "frodo"             "laughed"           "trying"           
## [34054] "feel"              "pleased"           "taking"           
## [34057] "ring"              "came"              "sat"              
## [34060] "tom"               "now"               "told"             
## [34063] "reckoned"          "sun"               "shine"            
## [34066] "tomorrow"          "glad"              "morning"          
## [34069] "setting"           "hopeful"           "well"             
## [34072] "start"             "early"             "weather"          
## [34075] "country"           "thing"             "even"             
## [34078] "tom"               "sure"              "long"             
## [34081] "change"            "sometimes"         "quicker"          
## [34084] "change"            "jacket"            ""                 
## [34087] ""                  "weather"           "master"           
## [34090] ""                  "said"              ""                 
## [34093] ""                  "aught"             "goes"             
## [34096] "two"               "legs"              ""                 
## [34099] "advice"            "decided"           "make"             
## [34102] "nearly"            "due"               "north"            
## [34105] "house"             "western"           "lower"            
## [34108] "slopes"            "downs"             "might"            
## [34111] "hope"              "way"               "strike"           
## [34114] "east"              "road"              "day"              
## [34117] ""                  "journey"           "avoid"            
## [34120] "barrows"           "told"              "afraid"           
## [34123] "mind"              "business"          ""                 
## [34126] "keep"              "green"             "grass"            
## [34129] "don"               ""                  "go"               
## [34132] "meddling"          "old"               "stone"            
## [34135] "cold"              "wights"            "prying"           
## [34138] "houses"            "unless"            "strong"           
## [34141] "folk"              "hearts"            "never"            
## [34144] "falter"            ""                  "said"             
## [34147] "advised"           "pass"              "barrows"          
## [34150] "west"              "side"              "chanced"          
## [34153] "stray"             "near"              "one"              
## [34156] "taught"            "rhyme"             "sing"             
## [34159] "ill"               "luck"              "fall"             
## [34162] "danger"            "difficulty"        "next"             
## [34165] "day"               "ho"                "tom"              
## [34168] "bombadil"          "tom"               "bombadillo"       
## [34171] "water"             "wood"              "hill"             
## [34174] "reed"              "willow"            "fire"             
## [34177] "sun"               "moon"              "harken"           
## [34180] "now"               "hear"              "us"               
## [34183] "come"              "tom"               "bombadil"         
## [34186] "need"              "near"              "us"               
## [34189] "sung"              "altogether"        "clapped"          
## [34192] "shoulder"          "laugh"             "taking"           
## [34195] "candles"           "led"               "back"             
## [34198] "bedroom"           "chapter"           "fog"              
## [34201] "barrow"            "downs"             "night"            
## [34204] "heard"             "noises"            "either"           
## [34207] "dreams"            "tell"              "frodo"            
## [34210] "heard"             "sweet"             "singing"          
## [34213] "running"           "mind"              "song"             
## [34216] "seemed"            "come"              "like"             
## [34219] "pale"              "light"             "behind"           
## [34222] "grey"              "rain"              "curtain"          
## [34225] "growing"           "stronger"          "turn"             
## [34228] "veil"              "glass"             "silver"           
## [34231] "last"              "rolled"            "back"             
## [34234] "far"               "green"             "country"          
## [34237] "opened"            "swift"             "sunrise"          
## [34240] "vision"            "melted"            "waking"           
## [34243] "tom"               "whistling"         "like"             
## [34246] "tree"              "full"              "birds"            
## [34249] "sun"               "already"           "slanting"         
## [34252] "hill"              "open"              "window"           
## [34255] "outside"           "everything"        "green"            
## [34258] "pale"              "gold"              "breakfast"        
## [34261] "ate"               "alone"             "made"             
## [34264] "ready"             "say"               "farewell"         
## [34267] "nearly"            "heavy"             "heart"            
## [34270] "possible"          "morning"           "cool"             
## [34273] "bright"            "clean"             "washed"           
## [34276] "autumn"            "sky"               "thin"             
## [34279] "blue"              "air"               "came"             
## [34282] "fresh"             "north"             "west"             
## [34285] "quiet"             "ponies"            "almost"           
## [34288] "frisky"            "sniffing"          "moving"           
## [34291] "restlessly"        "tom"               "came"             
## [34294] "house"             "waved"             "hat"              
## [34297] "danced"            "upon"              "doorstep"         
## [34300] "bidding"           "hobbits"           "get"              
## [34303] "go"                "good"              "speed"            
## [34306] "rode"              "along"             "path"             
## [34309] "wound"             "away"              "behind"           
## [34312] "house"             "went"              "slanting"         
## [34315] "towards"           "north"             "end"              
## [34318] "hill"              "brow"              "sheltered"        
## [34321] "just"              "dismounted"        "lead"             
## [34324] "ponies"            "last"              "steep"            
## [34327] "slope"             "suddenly"          "frodo"            
## [34330] "stopped"           "goldberry"         "cried"            
## [34333] "fair"              "lady"              "clad"             
## [34336] "silver"            "green"             "never"            
## [34339] "said"              "farewell"          "seen"             
## [34342] "since"             "evening"           "distressed"       
## [34345] "turned"            "back"              "moment"           
## [34348] "clear"             "call"              "came"             
## [34351] "rippling"          "hill"              "brow"             
## [34354] "stood"             "beckoning"         "hair"             
## [34357] "flying"            "loose"             "caught"           
## [34360] "sun"               "shone"             "shimmered"        
## [34363] "light"             "like"              "glint"            
## [34366] "water"             "dewy"              "grass"            
## [34369] "flashed"           "feet"              "danced"           
## [34372] "hastened"          "last"              "slope"            
## [34375] "stood"             "breathless"        "beside"           
## [34378] "bowed"             "wave"              "arm"              
## [34381] "bade"              "look"              "round"            
## [34384] "looked"            "hill"              "top"              
## [34387] "lands"             "morning"           "now"              
## [34390] "clear"             "far"               "seen"             
## [34393] "veiled"            "misty"             "stood"            
## [34396] "upon"              "knoll"             "forest"           
## [34399] "now"               "seen"              "rising"           
## [34402] "pale"              "green"             "dark"             
## [34405] "trees"             "west"              "direction"        
## [34408] "land"              "rose"              "wooded"           
## [34411] "ridges"            "green"             "yellow"           
## [34414] "russet"            "sun"               "beyond"           
## [34417] "lay"               "hidden"            "valley"           
## [34420] "brandywine"        "south"             "line"             
## [34423] "withywindle"       "distant"           "glint"            
## [34426] "like"              "pale"              "glass"            
## [34429] "brandywine"        "river"             "made"             
## [34432] "great"             "loop"              "lowlands"         
## [34435] "flowed"            "away"              "knowledge"        
## [34438] "hobbits"           "northward"         "beyond"           
## [34441] "dwindling"         "downs"             "land"             
## [34444] "ran"               "away"              "flats"            
## [34447] "swellings"         "grey"              "green"            
## [34450] "pale"              "earth"             "colours"          
## [34453] "faded"             "featureless"       "shadowy"          
## [34456] "distance"          "eastward"          "barrow"           
## [34459] "downs"             "rose"              "ridge"            
## [34462] "behind"            "ridge"             "morning"          
## [34465] "vanished"          "eyesight"          "guess"            
## [34468] "guess"             "blue"              "remote"           
## [34471] "white"             "glimmer"           "blending"         
## [34474] "hem"               "sky"               "spoke"            
## [34477] "memory"            "old"               "tales"            
## [34480] "high"              "distant"           "mountains"        
## [34483] "took"              "deep"              "draught"          
## [34486] "air"               "felt"              "skip"             
## [34489] "stout"             "strides"           "bear"             
## [34492] "wherever"          "wished"            "seemed"           
## [34495] "fainthearted"      "go"                "jogging"          
## [34498] "aside"             "crumpled"          "skirts"           
## [34501] "downs"             "towards"           "road"             
## [34504] "leaping"           "lusty"             "tom"              
## [34507] "stepping"          "stones"            "hills"            
## [34510] "straight"          "towards"           "mountains"        
## [34513] "goldberry"         "spoke"             "recalled"         
## [34516] "eyes"              "thoughts"          "speed"            
## [34519] "now"               "fair"              "guests"           
## [34522] "said"              "hold"              "purpose"          
## [34525] "north"             "wind"              "left"             
## [34528] "eye"               "blessing"          "footsteps"        
## [34531] "make"              "haste"             "sun"              
## [34534] "shines"            "frodo"             "said"             
## [34537] "farewell"          "elf"               "friend"           
## [34540] "merry"             "meeting"           "frodo"            
## [34543] "found"             "words"             "answer"           
## [34546] "bowed"             "low"               "mounted"          
## [34549] "pony"              "followed"          "friends"          
## [34552] "jogged"            "slowly"            "gentle"           
## [34555] "slope"             "behind"            "hill"             
## [34558] "tom"               "bombadils"         "house"            
## [34561] "valley"            "forest"            "lost"             
## [34564] "view"              "air"               "grew"             
## [34567] "warmer"            "green"             "walls"            
## [34570] "hillside"          "hillside"          "scent"            
## [34573] "turf"              "rose"              "strong"           
## [34576] "sweet"             "breathed"          "turning"          
## [34579] "back"              "reached"           "bottom"           
## [34582] "green"             "hollow"            "saw"              
## [34585] "goldberry"         "now"               "small"            
## [34588] "slender"           "like"              "sunlit"           
## [34591] "flower"            "sky"               "standing"         
## [34594] "still"             "watching"          "hands"            
## [34597] "stretched"         "towards"           "looked"           
## [34600] "gave"              "clear"             "call"             
## [34603] "lifting"           "hand"              "turned"           
## [34606] "vanished"          "behind"            "hill"             
## [34609] "way"               "wound"             "along"            
## [34612] "floor"             "hollow"            "round"            
## [34615] "green"             "feet"              "steep"            
## [34618] "hill"              "another"           "deeper"           
## [34621] "broader"           "valley"            "shoulder"         
## [34624] "hills"             "long"              "limbs"            
## [34627] "smooth"            "sides"             "new"              
## [34630] "hill"              "tops"              "new"              
## [34633] "valleys"           "tree"              "visible"          
## [34636] "water"             "country"           "grass"            
## [34639] "short"             "springy"           "turf"             
## [34642] "silent"            "except"            "whisper"          
## [34645] "air"               "edges"             "land"             
## [34648] "high"              "lonely"            "cries"            
## [34651] "strange"           "birds"             "journeyed"        
## [34654] "sun"               "mounted"           "grew"             
## [34657] "hot"               "time"              "climbed"          
## [34660] "ridge"             "breeze"            "seemed"           
## [34663] "grown"             "less"              "caught"           
## [34666] "glimpse"           "country"           "westward"         
## [34669] "distant"           "forest"            "seemed"           
## [34672] "smoking"           "fallen"            "rain"             
## [34675] "steaming"          "leaf"              "root"             
## [34678] "mould"             "shadow"            "now"              
## [34681] "lay"               "round"             "edge"             
## [34684] "sight"             "dark"              "haze"             
## [34687] "upper"             "sky"               "like"             
## [34690] "blue"              "cap"               "hot"              
## [34693] "heavy"             "mid"               "day"              
## [34696] "came"              "hill"              "whose"            
## [34699] "top"               "wide"              "flattened"        
## [34702] "like"              "shallow"           "saucer"           
## [34705] "green"             "mounded"           "rim"              
## [34708] "inside"            "air"               "stirring"         
## [34711] "sky"               "seemed"            "near"             
## [34714] "heads"             "rode"              "across"           
## [34717] "looked"            "northwards"        "hearts"           
## [34720] "rose"              "seemed"            "plain"            
## [34723] "come"              "already"           "expected"         
## [34726] "certainly"         "distances"         "now"              
## [34729] "become"            "hazy"              "deceptive"        
## [34732] "doubt"             "downs"             "coming"           
## [34735] "end"               "long"              "valley"           
## [34738] "lay"               "winding"           "away"             
## [34741] "northwards"        "came"              "opening"          
## [34744] "two"               "steep"             "shoulders"        
## [34747] "beyond"            "seemed"            "hills"            
## [34750] "due"               "north"             "faintly"          
## [34753] "glimpsed"          "long"              "dark"             
## [34756] "line"              "line"              "trees"            
## [34759] "said"              "merry"             "must"             
## [34762] "mark"              "road"              "along"            
## [34765] "many"              "leagues"           "east"             
## [34768] "bridge"            "trees"             "growing"          
## [34771] "say"               "planted"           "old"              
## [34774] "days"              "splendid"          "said"             
## [34777] "frodo"             ""                  ""                 
## [34780] "make"              "good"              "going"            
## [34783] "afternoon"         "done"              "morning"          
## [34786] "shall"             "left"              "downs"            
## [34789] "sun"               "sets"              "jogging"          
## [34792] "search"            "camping"           "place"            
## [34795] "even"              "spoke"             "turned"           
## [34798] "glance"            "eastwards"         "saw"              
## [34801] "side"              "hills"             "higher"           
## [34804] "looked"            "upon"              "hills"            
## [34807] "crowned"           "green"             "mounds"           
## [34810] "standing"          "stones"            "pointing"         
## [34813] "upwards"           "like"              "jagged"           
## [34816] "teeth"             "green"             "gums"             
## [34819] "view"              "somehow"           "disquieting"      
## [34822] "turned"            "sight"             "went"             
## [34825] "hollow"            "circle"            "midst"            
## [34828] "stood"             "single"            "stone"            
## [34831] "standing"          "tall"              "sun"              
## [34834] "hour"              "casting"           "shadow"           
## [34837] "shapeless"         "yet"               "significant"      
## [34840] "like"              "landmark"          "guarding"         
## [34843] "finger"            "like"              "warning"          
## [34846] "now"               "hungry"            "sun"              
## [34849] "still"             "fearless"          "noon"             
## [34852] "set"               "backs"             "east"             
## [34855] "side"              "stone"             "cool"             
## [34858] "sun"               "power"             "warm"             
## [34861] "time"              "seemed"            "pleasant"         
## [34864] "took"              "food"              "drink"            
## [34867] "made"              "good"              "noon"             
## [34870] "meal"              "open"              "sky"              
## [34873] "anyone"            "wish"              "food"             
## [34876] "came"              "hill"              "tom"              
## [34879] "provided"          "plenty"            "comfort"          
## [34882] "day"               "ponies"            "unburdened"       
## [34885] "strayed"           "upon"              "grass"            
## [34888] "riding"            "hills"             "eating"           
## [34891] "fill"              "warm"              "sun"              
## [34894] "scent"             "turf"              "lying"            
## [34897] "little"            "long"              "stretching"       
## [34900] "legs"              "looking"           "sky"              
## [34903] "noses"             "things"            "perhaps"          
## [34906] "enough"            "explain"           "happened"         
## [34909] "however"           "may"               "woke"             
## [34912] "suddenly"          "uncomfortably"     "sleep"            
## [34915] "never"             "meant"             "take"             
## [34918] "standing"          "stone"             "cold"             
## [34921] "cast"              "long"              "pale"             
## [34924] "shadow"            "stretched"         "eastward"         
## [34927] "sun"               "pale"              "watery"           
## [34930] "yellow"            "gleaming"          "mist"             
## [34933] "just"              "west"              "wall"             
## [34936] "hollow"            "lay"               "north"            
## [34939] "south"             "east"              "beyond"           
## [34942] "wall"              "fog"               "thick"            
## [34945] "cold"              "white"             "air"              
## [34948] "silent"            "heavy"             "chill"            
## [34951] "ponies"            "standing"          "crowded"          
## [34954] "together"          "heads"             "hobbits"          
## [34957] "sprang"            "feet"              "alarm"            
## [34960] "ran"               "western"           "rim"              
## [34963] "found"             "upon"              "island"           
## [34966] "fog"               "even"              "looked"           
## [34969] "dismay"            "towards"           "setting"          
## [34972] "sun"               "sank"              "eyes"             
## [34975] "white"             "sea"               "cold"             
## [34978] "grey"              "shadow"            "sprang"           
## [34981] "east"              "behind"            "fog"              
## [34984] "rolled"            "walls"             "rose"             
## [34987] "mounted"           "bent"              "heads"            
## [34990] "became"            "roof"              "shut"             
## [34993] "hall"              "mist"              "whose"            
## [34996] "central"           "pillar"            "standing"         
## [34999] "stone"             "felt"              "trap"             
## [35002] "closing"           "quite"             "lose"             
## [35005] "heart"             "still"             "remembered"       
## [35008] "hopeful"           "view"              "line"             
## [35011] "road"              "ahead"             "still"            
## [35014] "knew"              "direction"         "lay"              
## [35017] "case"              "now"               "great"            
## [35020] "dislike"           "hollow"            "place"            
## [35023] "stone"             "thought"           "remaining"        
## [35026] "minds"             "packed"            "quickly"          
## [35029] "chilled"           "fingers"           "work"             
## [35032] "soon"              "leading"           "ponies"           
## [35035] "single"            "file"              "rim"              
## [35038] "long"              "northward"         "slope"            
## [35041] "hill"              "foggy"             "sea"              
## [35044] "went"              "mist"              "became"           
## [35047] "colder"            "damper"            "hair"             
## [35050] "hung"              "lank"              "dripping"         
## [35053] "foreheads"         "reached"           "bottom"           
## [35056] "cold"              "halted"            "got"              
## [35059] "cloaks"            "hoods"             "soon"             
## [35062] "became"            "bedewed"           "grey"             
## [35065] "drops"             "mounting"          "ponies"           
## [35068] "went"              "slowly"            "feeling"          
## [35071] "way"               "rise"              "fall"             
## [35074] "ground"            "steering"          "well"             
## [35077] "guess"             "gate"              "like"             
## [35080] "opening"           "far"               "northward"        
## [35083] "end"               "long"              "valley"           
## [35086] "seen"              "morning"           "gap"              
## [35089] "lo"                "keep"              "anything"         
## [35092] "like"              "straight"          "line"             
## [35095] "bound"             "end"               "strike"           
## [35098] "road"              "thoughts"          "go"               
## [35101] "beyond"            "except"            "vague"            
## [35104] "hope"              "perhaps"           "away"             
## [35107] "beyond"            "downs"             "might"            
## [35110] "fog"               "going"             "slow"             
## [35113] "prevent"           "getting"           "separated"        
## [35116] "wandering"         "different"         "directions"       
## [35119] "went"              "file"              "frodo"            
## [35122] "leading"           "sam"               "behind"           
## [35125] "came"              "pippin"            "merry"            
## [35128] "valley"            "seemed"            "stretch"          
## [35131] "endlessly"         "suddenly"          "frodo"            
## [35134] "saw"               "hopeful"           "sign"             
## [35137] "either"            "side"              "ahead"            
## [35140] "darkness"          "began"             "loom"             
## [35143] "mist"              "guessed"           "last"             
## [35146] "approaching"       "gap"               "hills"            
## [35149] "north"             "gate"              "barrow"           
## [35152] "downs"             "pass"              "free"             
## [35155] "come"              "follow"            "called"           
## [35158] "back"              "shoulder"          "hurried"          
## [35161] "forward"           "hope"              "soon"             
## [35164] "changed"           "bewilderment"      "alarm"            
## [35167] "dark"              "patches"           "grew"             
## [35170] "darker"            "shrank"            "suddenly"         
## [35173] "saw"               "towering"          "ominous"          
## [35176] "leaning"           "slightly"          "towards"          
## [35179] "one"               "another"           "like"             
## [35182] "pillars"           "headless"          "door"             
## [35185] "two"               "huge"              "standing"         
## [35188] "stones"            "remember"          "seen"             
## [35191] "sign"              "valley"            "looked"           
## [35194] "hill"              "morning"           "passed"           
## [35197] "almost"            "aware"             "even"             
## [35200] "darkness"          "seemed"            "fall"             
## [35203] "round"             "pony"              "reared"           
## [35206] "snorted"           "fell"              "looked"           
## [35209] "back"              "found"             "alone"            
## [35212] "others"            "followed"          "sam"              
## [35215] "called"            "pippin"            "merry"            
## [35218] "come"              "along"             "dont"             
## [35221] "keep"              "answer"            "fear"             
## [35224] "took"              "ran"               "back"             
## [35227] "past"              "stones"            "shouting"         
## [35230] "wildly"            "sam"               "sam"              
## [35233] "merry"             "pippin"            "pony"             
## [35236] "bolted"            "mist"              "vanished"         
## [35239] "way"               "seemed"            "thought"          
## [35242] "heard"             "cry"               "hoy"              
## [35245] "frodo"             "hoy"               "away"             
## [35248] "eastward"          "left"              "stood"            
## [35251] "great"             "stones"            "staring"          
## [35254] "straining"         "gloom"             "plunged"          
## [35257] "direction"         "call"              "found"            
## [35260] "going"             "steeply"           "uphill"           
## [35263] "struggled"         "called"            "kept"             
## [35266] "calling"           "frantically"       "heard"            
## [35269] "answer"            "time"              "seemed"           
## [35272] "faint"             "far"               "ahead"            
## [35275] "high"              "frodo"             "hoy"              
## [35278] "came"              "thin"              "voices"           
## [35281] "mist"              "cry"               "sounded"          
## [35284] "like"              "help"              "help"             
## [35287] "often"             "repeated"          "ending"           
## [35290] "last"              "help"              "trailed"          
## [35293] "long"              "wail"              "suddenly"         
## [35296] "cut"               "short"             "stumbled"         
## [35299] "forward"           "speed"             "towards"          
## [35302] "cries"             "light"             "now"              
## [35305] "gone"              "clinging"          "night"            
## [35308] "closed"            "impossible"        "sure"             
## [35311] "direction"         "seemed"            "time"             
## [35314] "climbing"          "change"            "level"            
## [35317] "ground"            "feet"              "told"             
## [35320] "last"              "came"              "top"              
## [35323] "ridge"             "hill"              "weary"            
## [35326] "sweating"          "yet"               "chilled"          
## [35329] "wholly"            "dark"              "cried"            
## [35332] "miserably"         "reply"             "stood"            
## [35335] "listening"         "suddenly"          "aware"            
## [35338] "getting"           "cold"              "wind"             
## [35341] "beginning"         "blow"              "icy"              
## [35344] "wind"              "change"            "coming"           
## [35347] "weather"           "mist"              "flowing"          
## [35350] "past"              "now"               "shreds"           
## [35353] "tatters"           "breath"            "smoking"          
## [35356] "darkness"          "less"              "near"             
## [35359] "thick"             "looked"            "saw"              
## [35362] "surprise"          "faint"             "stars"            
## [35365] "appearing"         "overhead"          "amid"             
## [35368] "strands"           "hurrying"          "cloud"            
## [35371] "fog"               "wind"              "began"            
## [35374] "hiss"              "grass"             "imagined"         
## [35377] "suddenly"          "caught"            "muffled"          
## [35380] "cry"               "made"              "towards"          
## [35383] "even"              "went"              "forward"          
## [35386] "mist"              "rolled"            "thrust"           
## [35389] "aside"             "starry"            "sky"              
## [35392] "unveiled"          "glance"            "showed"           
## [35395] "now"               "facing"            "southwards"       
## [35398] "round"             "hill"              "top"              
## [35401] "must"              "climbed"           "north"            
## [35404] "east"              "biting"            "wind"             
## [35407] "blowing"           "right"             "loomed"           
## [35410] "westward"          "stars"             "dark"             
## [35413] "black"             "shape"             "great"            
## [35416] "barrow"            "stood"             "cried"            
## [35419] "angry"             "afraid"            "said"             
## [35422] "voice"             "deep"              "cold"             
## [35425] "seemed"            "come"              "ground"           
## [35428] "waiting"           "said"              "frodo"            
## [35431] "run"               "away"              "knees"            
## [35434] "gave"              "fell"              "ground"           
## [35437] "nothing"           "happened"          "sound"            
## [35440] "trembling"         "looked"            "time"             
## [35443] "see"               "tall"              "dark"             
## [35446] "figure"            "like"              "shadow"           
## [35449] "stars"             "leaned"            "thought"          
## [35452] "two"               "eyes"              "cold"             
## [35455] "though"            "lit"               "pale"             
## [35458] "light"             "seemed"            "come"             
## [35461] "remote"            "distance"          "grip"             
## [35464] "stronger"          "colder"            "iron"             
## [35467] "seized"            "icy"               "touch"            
## [35470] "froze"             "bones"             "remembered"       
## [35473] "came"              "moment"            "recall"           
## [35476] "nothing"           "except"            "sense"            
## [35479] "dread"             "suddenly"          "knew"             
## [35482] "imprisoned"        "caught"            "hopelessly"       
## [35485] "barrow"            "barrow"            "wight"            
## [35488] "taken"             "probably"          "already"          
## [35491] "dreadful"          "spells"            "barrow"           
## [35494] "wights"            "whispered"         "tales"            
## [35497] "spoke"             "dared"             "move"             
## [35500] "lay"               "found"             "flat"             
## [35503] "back"              "upon"              "cold"             
## [35506] "stone"             "hands"             "breast"           
## [35509] "though"            "fear"              "great"            
## [35512] "seemed"            "part"              "darkness"         
## [35515] "round"             "found"             "lay"              
## [35518] "thinking"          "bilbo"             "baggins"          
## [35521] "stories"           "jogging"           "along"            
## [35524] "together"          "lanes"             "shire"            
## [35527] "talking"           "roads"             "adventures"       
## [35530] "seed"              "courage"           "hidden"           
## [35533] "often"             "deeply"            "true"             
## [35536] "heart"             "fattest"           "timid"            
## [35539] "hobbit"            "wailing"           "final"            
## [35542] "desperate"         "danger"            "make"             
## [35545] "grow"              "frodo"             "neither"          
## [35548] "fat"               "timid"             "indeed"           
## [35551] "though"            "know"              "bilbo"            
## [35554] "gandalf"           "thought"           "best"             
## [35557] "hobbit"            "shire"             "thought"          
## [35560] "come"              "end"               "adventure"        
## [35563] "terrible"          "end"               "thought"          
## [35566] "hardened"          "found"             "stiffening"       
## [35569] "final"             "spring"            "longer"           
## [35572] "felt"              "limp"              "like"             
## [35575] "helpless"          "prey"              "lay"              
## [35578] "thinking"          "getting"           "hold"             
## [35581] "noticed"           "darkness"          "slowly"           
## [35584] "giving"            "way"               "pale"             
## [35587] "greenish"          "light"             "growing"          
## [35590] "round"             "first"             "show"             
## [35593] "kind"              "place"             "light"            
## [35596] "seemed"            "coming"            "floor"            
## [35599] "beside"            "yet"               "reached"          
## [35602] "roof"              "wall"              "turned"           
## [35605] "cold"              "glow"              "saw"              
## [35608] "lying"             "beside"            "sam"              
## [35611] "pippin"            "merry"             "backs"            
## [35614] "faces"             "looked"            "deathly"          
## [35617] "pale"              "clad"              "white"            
## [35620] "lay"               "many"              "treasures"        
## [35623] "gold"              "maybe"             "though"           
## [35626] "light"             "looked"            "cold"             
## [35629] "unlovely"          "heads"             "circlets"         
## [35632] "gold"              "chains"            "waists"           
## [35635] "fingers"           "many"              "rings"            
## [35638] "swords"            "lay"               "sides"            
## [35641] "shields"           "feet"              "across"           
## [35644] "three"             "necks"             "lay"              
## [35647] "one"               "long"              "naked"            
## [35650] "sword"             "suddenly"          "song"             
## [35653] "began"             "cold"              "murmur"           
## [35656] "rising"            "falling"           "voice"            
## [35659] "seemed"            "far"               "away"             
## [35662] "immeasurably"      "dreary"            "sometimes"        
## [35665] "high"              "air"               "thin"             
## [35668] "sometimes"         "like"              "low"              
## [35671] "moan"              "ground"            "formless"         
## [35674] "stream"            "sad"               "horrible"         
## [35677] "sounds"            "strings"           "words"            
## [35680] "now"               "shape"             "grim"             
## [35683] "hard"              "cold"              "words"            
## [35686] "heartless"         "miserable"         "night"            
## [35689] "railing"           "morning"           "bereaved"         
## [35692] "cold"              "cursing"           "warmth"           
## [35695] "hungered"          "frodo"             "chilled"          
## [35698] "marrow"            "song"              "became"           
## [35701] "clearer"           "dread"             "heart"            
## [35704] "perceived"         "changed"           "incantation"      
## [35707] "cold"              "hand"              "heart"            
## [35710] "bone"              "cold"              "sleep"            
## [35713] "stone"             "never"             "mare"             
## [35716] "wake"              "stony"             "bed"              
## [35719] "never"             "till"              "sun"              
## [35722] "fails"             "moon"              "dead"             
## [35725] "black"             "wind"              "stars"            
## [35728] "shall"             "die"               "still"            
## [35731] "gold"              "let"               "lie"              
## [35734] "till"              "dark"              "lord"             
## [35737] "lifts"             "hand"              "dead"             
## [35740] "sea"               "withered"          "land"             
## [35743] "heard"             "behind"            "head"             
## [35746] "creaking"          "scraping"          "sound"            
## [35749] "raising"           "one"               "arm"              
## [35752] "looked"            "saw"               "now"              
## [35755] "pale"              "light"             "kind"             
## [35758] "passage"           "behind"            "turned"           
## [35761] "corner"            "round"             "corner"           
## [35764] "long"              "arm"               "groping"          
## [35767] "walking"           "fingers"           "towards"          
## [35770] "sam"               "lying"             "nearest"          
## [35773] "towards"           "hilt"              "sword"            
## [35776] "lay"               "upon"              "first"            
## [35779] "frodo"             "felt"              "indeed"           
## [35782] "turned"            "stone"             "incantation"      
## [35785] "wild"              "thought"           "escape"           
## [35788] "came"              "wondered"          "put"              
## [35791] "ring"              "whether"           "barrow"           
## [35794] "wight"             "miss"              "might"            
## [35797] "find"              "way"               "thought"          
## [35800] "running"           "free"              "grass"            
## [35803] "grieving"          "merry"             "sam"              
## [35806] "pippin"            "free"              "alive"            
## [35809] "gandalf"           "admit"             "nothing"          
## [35812] "else"              "courage"           "awakened"         
## [35815] "now"               "strong"            "leave"            
## [35818] "friends"           "easily"            "wavered"          
## [35821] "groping"           "pocket"            "fought"           
## [35824] "arm"               "crept"             "nearer"           
## [35827] "suddenly"          "resolve"           "hardened"         
## [35830] "seized"            "short"             "sword"            
## [35833] "lay"               "beside"            "kneeling"         
## [35836] "stooped"           "low"               "bodies"           
## [35839] "companions"        "strength"          "hewed"            
## [35842] "crawling"          "arm"               "near"             
## [35845] "wrist"             "hand"              "broke"            
## [35848] "moment"            "sword"             "splintered"       
## [35851] "hilt"              "shriek"            "light"            
## [35854] "vanished"          "dark"              "snarling"         
## [35857] "noise"             "frodo"             "fell"             
## [35860] "forward"           "merry"             "merrys"           
## [35863] "face"              "felt"              "cold"             
## [35866] "back"              "mind"              "disappeared"      
## [35869] "first"             "coming"            "fog"              
## [35872] "came"              "memory"            "house"            
## [35875] "hill"              "tom"               "singing"          
## [35878] "remembered"        "rhyme"             "tom"              
## [35881] "taught"            "small"             "desperate"        
## [35884] "voice"             "began"             "ho"               
## [35887] "tom"               "bombadil"          "name"             
## [35890] "voice"             "seemed"            "grow"             
## [35893] "strong"            "full"              "lively"           
## [35896] "sound"             "dark"              "chamber"          
## [35899] "echoed"            "drum"              "trumpet"          
## [35902] "ho"                "tom"               "bombadil"         
## [35905] "tom"               "bombadillo"        "water"            
## [35908] "wood"              "hill"              "reed"             
## [35911] "willow"            "fire"              "sun"              
## [35914] "moon"              "harken"            "now"              
## [35917] "hear"              "us"                "come"             
## [35920] "tom"               "bombadil"          "need"             
## [35923] "near"              "us"                "sudden"           
## [35926] "deep"              "silence"           "frodo"            
## [35929] "hear"              "heart"             "beating"          
## [35932] "long"              "slow"              "moment"           
## [35935] "heard"             "plain"             "far"              
## [35938] "away"              "coming"            "ground"           
## [35941] "thick"             "walls"             "answering"        
## [35944] "voice"             "singing"           "old"              
## [35947] "tom"               "bombadil"          "merry"            
## [35950] "fellow"            "bright"            "blue"             
## [35953] "jacket"            "boots"             "yellow"           
## [35956] "none"              "ever"              "caught"           
## [35959] "yet"               "tom"               "master"           
## [35962] "songs"             "stronger"          "songs"            
## [35965] "feet"              "faster"            "loud"             
## [35968] "rumbling"          "sound"             "stones"           
## [35971] "rolling"           "falling"           "suddenly"         
## [35974] "light"             "streamed"          "real"             
## [35977] "light"             "plain"             "light"            
## [35980] "day"               "low"               "door"             
## [35983] "like"              "opening"           "appeared"         
## [35986] "end"               "chamber"           "beyond"           
## [35989] "frodos"            "feet"              "toms"             
## [35992] "head"              "hat"               "feather"          
## [35995] "framed"            "light"             "sun"              
## [35998] "rising"            "red"               "behind"           
## [36001] "light"             "fell"              "upon"             
## [36004] "floor"             "upon"              "faces"            
## [36007] "three"             "hobbits"           "lying"            
## [36010] "beside"            "frodo"             "stir"             
## [36013] "sickly"            "hue"               "left"             
## [36016] "looked"            "now"               "deeply"           
## [36019] "asleep"            "tom"               "stooped"          
## [36022] "removed"           "hat"               "came"             
## [36025] "dark"              "chamber"           "singing"          
## [36028] "get"               "old"               "wight"            
## [36031] "vanish"            "sunlight"          "shrivel"          
## [36034] "like"              "cold"              "mist"             
## [36037] "like"              "winds"             "go"               
## [36040] "wailing"           "barren"            "lands"            
## [36043] "far"               "beyond"            "mountains"        
## [36046] "come"              "never"             "leave"            
## [36049] "barrow"            "empty"             "lost"             
## [36052] "forgotten"         "darker"            "darkness"         
## [36055] "gates"             "stand"             "ever"             
## [36058] "shut"              "till"              "world"            
## [36061] "mended"            "words"             "cry"              
## [36064] "part"              "inner"             "end"              
## [36067] "chamber"           "fell"              "crash"            
## [36070] "long"              "trailing"          "shriek"           
## [36073] "fading"            "away"              "unguessable"      
## [36076] "distance"          "silence"           "come"             
## [36079] "friend"            "frodo"             "said"             
## [36082] "tom"               "let"               "us"               
## [36085] "get"               "clean"             "grass"            
## [36088] "must"              "help"              "bear"             
## [36091] "together"          "carried"           "merry"            
## [36094] "pippin"            "sam"               "frodo"            
## [36097] "left"              "barrow"            "last"             
## [36100] "time"              "thought"           "saw"              
## [36103] "severed"           "hand"              "wriggling"        
## [36106] "still"             "like"              "wounded"          
## [36109] "spider"            "heap"              "fallen"           
## [36112] "earth"             "tom"               "went"             
## [36115] "back"              "sound"             "much"             
## [36118] "thumping"          "stamping"          "came"             
## [36121] "bearing"           "arms"              "great"            
## [36124] "load"              "treasure"          "things"           
## [36127] "gold"              "silver"            "copper"           
## [36130] "bronze"            "many"              "beads"            
## [36133] "chains"            "jewelled"          "ornaments"        
## [36136] "climbed"           "green"             "barrow"           
## [36139] "laid"              "top"               "sunshine"         
## [36142] "stood"             "hat"               "hand"             
## [36145] "wind"              "hair"              "looked"           
## [36148] "upon"              "three"             "hobbits"          
## [36151] "laid"              "backs"             "upon"             
## [36154] "grass"             "west"              "side"             
## [36157] "mound"             "raising"           "right"            
## [36160] "hand"              "said"              "clear"            
## [36163] "commanding"        "voice"             "wake"             
## [36166] "now"               "merry"             "tads"             
## [36169] "wake"              "hear"              "calling"          
## [36172] "warm"              "now"               "heart"            
## [36175] "limb"              "cold"              "stone"            
## [36178] "fallen"            "dark"              "door"             
## [36181] "standing"          "wide"              "dead"             
## [36184] "hand"              "broken"            "night"            
## [36187] "night"             "flown"             "gate"             
## [36190] "open"              "frodos"            "great"            
## [36193] "joy"               "hobbits"           "stirred"          
## [36196] "stretched"         "arms"              "rubbed"           
## [36199] "eyes"              "suddenly"          "sprang"           
## [36202] "looked"            "amazement"         "first"            
## [36205] "frodo"             "tom"               "standing"         
## [36208] "large"             "life"              "barrow"           
## [36211] "top"               "thin"              "white"            
## [36214] "rags"              "crowned"           "belted"           
## [36217] "pale"              "gold"              "jingling"         
## [36220] "trinkets"          "name"              "wonder"           
## [36223] "began"             "merry"             "feeling"          
## [36226] "golden"            "circlet"           "slipped"          
## [36229] "one"               "eye"               "stopped"          
## [36232] "shadow"            "came"              "face"             
## [36235] "closed"            "eyes"              "course"           
## [36238] "remember"          "said"              "men"              
## [36241] "carn"              "dûm"               "came"             
## [36244] "us"                "night"             "worsted"          
## [36247] "ah"                "spear"             "heart"            
## [36250] "clutched"          "breast"            "said"             
## [36253] "opening"           "eyes"              "saying"           
## [36256] "dreaming"          "get"               "frodo"            
## [36259] ""                  ""                  "thought"          
## [36262] "lost"              "said"              "frodo"            
## [36265] "dont"              "want"              "speak"            
## [36268] "let"               "us"                "think"            
## [36271] "now"               "let"               "us"               
## [36274] "go"                "dressed"           "like"             
## [36277] "sir"               "said"              "sam"              
## [36280] "clothes"           "flung"             "circlet"          
## [36283] "belt"              "rings"             "grass"            
## [36286] "looked"            "round"             "helplessly"       
## [36289] "expected"          "find"              "cloak"            
## [36292] "jacket"            "breeches"          "hobbit"           
## [36295] "garments"          "lying"             "somewhere"        
## [36298] "hand"              "wont"              "find"             
## [36301] "clothes"           "said"              "tom"              
## [36304] "bounding"          "mound"             "laughing"         
## [36307] "danced"            "round"             "sunlight"         
## [36310] "one"               "thought"           "nothing"          
## [36313] "dangerous"         "dreadful"          "happened"         
## [36316] "indeed"            "horror"            "faded"            
## [36319] "hearts"            "looked"            "saw"              
## [36322] "merry"             "glint"             "eyes"             
## [36325] "mean"              "asked"             "pippin"           
## [36328] "looking"           "half"              "puzzled"          
## [36331] "half"              "amused"            "tom"              
## [36334] "shook"             "head"              "saying"           
## [36337] "youve"             "found"             "deep"             
## [36340] "water"             "clothes"           "little"           
## [36343] "loss"              "escape"            "drowning"         
## [36346] "glad"              "merry"             "friends"          
## [36349] "let"               "warm"              "sunlight"         
## [36352] "heal"              "now"               "heart"            
## [36355] "limb"              "cast"              "cold"             
## [36358] "rags"              "run"               "naked"            
## [36361] "grass"             "tom"               "goes"             
## [36364] "hunting"           "sprang"            "away"             
## [36367] "hill"              "whistling"         "calling"          
## [36370] "looking"           "frodo"             "saw"              
## [36373] "running"           "away"              "southwards"       
## [36376] "along"             "green"             "hollow"           
## [36379] "hill"              "next"              "still"            
## [36382] "whistling"         "crying"            "hey"              
## [36385] "now"               "come"              "hoy"              
## [36388] "now"               "whither"           "wander"           
## [36391] "near"              "far"               "yonder"           
## [36394] "sharp"             "ears"              "wise"             
## [36397] "nose"              "swish"             "tail"             
## [36400] "bumpkin"           "white"             "socks"            
## [36403] "little"            "lad"               "old"              
## [36406] "fatty"             "lumpkin"           "sang"             
## [36409] "running"           "fast"              "tossing"          
## [36412] "hat"               "catching"          "hidden"           
## [36415] "fold"              "ground"            "time"             
## [36418] "hey"               "now"               "hoy"              
## [36421] "now"               "came"              "floating"         
## [36424] "back"              "wind"              "shifted"          
## [36427] "round"             "towards"           "south"            
## [36430] "air"               "growing"           "warm"             
## [36433] "hobbits"           "ran"               "grass"            
## [36436] "told"              "lay"               "basking"          
## [36439] "sun"               "delight"           "wafted"           
## [36442] "suddenly"          "bitter"            "winter"           
## [36445] "friendly"          "clime"             "people"           
## [36448] "long"              "ill"               "bedridden"        
## [36451] "wake"              "one"               "day"              
## [36454] "find"              "unexpectedly"      "well"             
## [36457] "day"               "full"              "promise"          
## [36460] "time"              "tom"               "returned"         
## [36463] "feeling"           "strong"            "hungry"           
## [36466] "reappeared"        "hat"               "first"            
## [36469] "brow"              "hill"              "behind"           
## [36472] "came"              "obedient"          "line"             
## [36475] "six"               "ponies"            "five"             
## [36478] "one"               "last"              "plainly"          
## [36481] "old"               "fatty"             "lumpkin"          
## [36484] "larger"            "stronger"          "fatter"           
## [36487] "older"             "ponies"            "merry"            
## [36490] "others"            "belonged"          "fact"             
## [36493] "given"             "names"             "answered"         
## [36496] "new"               "names"             "tom"              
## [36499] "given"             "rest"              "lives"            
## [36502] "tom"               "called"            "one"              
## [36505] "one"               "climbed"           "brow"             
## [36508] "stood"             "line"              "tom"              
## [36511] "bowed"             "hobbits"           "ponies"           
## [36514] "now"               "said"              "theyve"           
## [36517] "sense"             "ways"              "wandering"        
## [36520] "hobbits"           "sense"             "noses"            
## [36523] "sniff"             "danger"            "ahead"            
## [36526] "walk"              "right"             "run"              
## [36529] "save"              "run"               "right"            
## [36532] "way"               "must"              "forgive"          
## [36535] "though"            "hearts"            "faithful"         
## [36538] "face"              "fear"              "barrow"           
## [36541] "wights"            "made"              "see"              
## [36544] "come"              "bringing"          "burdens"          
## [36547] "merry"             "sam"               "pippin"           
## [36550] "now"               "clothed"           "spare"            
## [36553] "garments"          "packs"             "soon"             
## [36556] "felt"              "hot"               "obliged"          
## [36559] "put"               "thicker"           "warmer"           
## [36562] "things"            "brought"           "oncoming"         
## [36565] "winter"            "old"               "animal"           
## [36568] "fatty"             "lumpkin"           "come"             
## [36571] "asked"             "frodo"             "hes"              
## [36574] "mine"              "said"              "tom"              
## [36577] "four"              "legged"            "friend"           
## [36580] "though"            "seldom"            "ride"             
## [36583] "wanders"           "often"             "far"              
## [36586] "free"              "upon"              "hillsides"        
## [36589] "ponies"            "stayed"            "got"              
## [36592] "know"              "lumpkin"           "smelt"            
## [36595] "night"             "quickly"           "ran"              
## [36598] "meet"              "thought"           "hed"              
## [36601] "look"              "words"             "wisdom"           
## [36604] "take"              "fear"              "away"             
## [36607] "now"               "jolly"             "lumpkin"          
## [36610] "old"               "toms"              "going"            
## [36613] "ride"              "hey"               "hes"              
## [36616] "coming"            "just"              "set"              
## [36619] "road"              "needs"             "pony"             
## [36622] "easily"            "talk"              "hobbits"          
## [36625] "riding"            "youre"             "legs"             
## [36628] "trying"            "trot"              "beside"           
## [36631] "hobbits"           "delighted"         "hear"             
## [36634] "thanked"           "tom"               "many"             
## [36637] "times"             "laughed"           "said"             
## [36640] "good"              "losing"            "feel"             
## [36643] "happy"             "till"              "seen"             
## [36646] "safe"              "borders"           "land"             
## [36649] ""                  "ive"               "got"              
## [36652] "things"            "said"              "making"           
## [36655] "singing"           "talking"           "walking"          
## [36658] "watching"          "country"           "tom"              
## [36661] "cant"              "always"            "near"             
## [36664] "open"              "doors"             "willow"           
## [36667] "cracks"            "tom"               "house"            
## [36670] "mind"              "goldberry"         "waiting"          
## [36673] "still"             "fairly"            "early"            
## [36676] "sun"               "something"         "nine"             
## [36679] "ten"               "hobbits"           "turned"           
## [36682] "minds"             "food"              "last"             
## [36685] "meal"              "lunch"             "beside"           
## [36688] "standing"          "stone"             "day"              
## [36691] "breakfasted"       "now"               "remainder"        
## [36694] "toms"              "provisions"        "meant"            
## [36697] "supper"            "additions"         "tom"              
## [36700] "brought"           "large"             "meal"             
## [36703] "considering"       "hobbits"           "circumstances"    
## [36706] "felt"              "much"              "better"           
## [36709] "eating"            "tom"               "went"             
## [36712] "mound"             "looked"            "treasures"        
## [36715] "made"              "pile"              "glistened"        
## [36718] "sparkled"          "grass"             "bade"             
## [36721] "lie"               "free"              "finders"          
## [36724] "birds"             "beasts"            "elves"            
## [36727] "men"               "kindly"            "creatures"        
## [36730] "spell"             "mound"             "broken"           
## [36733] "scattered"         "wight"             "ever"             
## [36736] "come"              "back"              "chose"            
## [36739] "pile"              "brooch"            "set"              
## [36742] "blue"              "stones"            "many"             
## [36745] "shaded"            "like"              "flax"             
## [36748] "flowers"           "wings"             "blue"             
## [36751] "butterflies"       "looked"            "long"             
## [36754] "stirred"           "memory"            "shaking"          
## [36757] "head"              "saying"            "last"             
## [36760] "pretty"            "toy"               "tom"              
## [36763] "lady"              "fair"              "long"             
## [36766] "ago"               "wore"              "shoulder"         
## [36769] "goldberry"         "shall"             "wear"             
## [36772] "now"               "will"              "forget"           
## [36775] "hobbits"           "chose"             "dagger"           
## [36778] "long"              "leaf"              "shaped"           
## [36781] "keen"              "marvellous"        "workmanship"      
## [36784] "damasked"          "serpent"           "forms"            
## [36787] "red"               "gold"              "gleamed"          
## [36790] "drew"              "black"             "sheaths"          
## [36793] "wrought"           "strange"           "metal"            
## [36796] "light"             "strong"            "set"              
## [36799] "many"              "fiery"             "stones"           
## [36802] "whether"           "virtue"            "sheaths"          
## [36805] "spell"             "lay"               "mound"            
## [36808] "blades"            "seemed"            "untouched"        
## [36811] "time"              "unrusted"          "sharp"            
## [36814] "glittering"        "sun"               "old"              
## [36817] "knives"            "long"              "enough"           
## [36820] "swords"            "hobbit"            "people"           
## [36823] "said"              "sharp"             "blades"           
## [36826] "good"              "shire"             "folk"             
## [36829] "go"                "walking"           "east"             
## [36832] "south"             "far"               "away"             
## [36835] "dark"              "danger"            "told"             
## [36838] "blades"            "forged"            "many"             
## [36841] "long"              "years"             "ago"              
## [36844] "men"               "westernesse"       "foes"             
## [36847] "dark"              "lord"              "overcome"         
## [36850] "evil"              "king"              "carn"             
## [36853] "dûm"               "land"              "angmar"           
## [36856] "now"               "remember"          "tom"              
## [36859] "murmured"          "yet"               "still"            
## [36862] "go"                "wandering"         "sons"             
## [36865] "forgotten"         "kings"             "walking"          
## [36868] "loneliness"        "guarding"          "evil"             
## [36871] "things"            "folk"              "heedless"         
## [36874] "hobbits"           "understand"        "words"            
## [36877] "spoke"             "vision"            "great"            
## [36880] "expanse"           "years"             "behind"           
## [36883] "like"              "vast"              "shadowy"          
## [36886] "plain"             "strode"            "shapes"           
## [36889] "men"               "tall"              "grim"             
## [36892] "bright"            "swords"            "last"             
## [36895] "came"              "one"               "star"             
## [36898] "brow"              "vision"            "faded"            
## [36901] "back"              "sunlit"            "world"            
## [36904] "time"              "start"             "made"             
## [36907] "ready"             "packing"           "bags"             
## [36910] "lading"            "ponies"            "new"              
## [36913] "weapons"           "hung"              "leather"          
## [36916] "belts"             "jackets"           "feeling"          
## [36919] "awkward"           "wondering"         "use"              
## [36922] "fighting"          "occurred"          "one"              
## [36925] "adventures"        "flight"            "land"             
## [36928] "last"              "set"               "led"              
## [36931] "ponies"            "hill"              "mounting"         
## [36934] "trotted"           "quickly"           "along"            
## [36937] "valley"            "looked"            "back"             
## [36940] "saw"               "top"               "old"              
## [36943] "mound"             "hill"              "sunlight"         
## [36946] "gold"              "went"              "like"             
## [36949] "yellow"            "flame"             "turned"           
## [36952] "shoulder"          "downs"             "hidden"           
## [36955] "view"              "though"            "frodo"            
## [36958] "looked"            "every"             "side"             
## [36961] "saw"               "sign"              "great"            
## [36964] "stones"            "standing"          "like"             
## [36967] "gate"              "long"              "came"             
## [36970] "northern"          "gap"               "rode"             
## [36973] "swiftly"           "land"              "fell"             
## [36976] "away"              "merry"             "journey"          
## [36979] "tom"               "bombadil"          "trotting"         
## [36982] "gaily"             "beside"            "fatty"            
## [36985] "lumpkin"           "move"              "much"             
## [36988] "faster"            "girth"             "promised"         
## [36991] "tom"               "sang"              "time"             
## [36994] "chiefly"           "nonsense"          "else"             
## [36997] "perhaps"           "strange"           "language"         
## [37000] "unknown"           "hobbits"           "ancient"          
## [37003] "language"          "whose"             "words"            
## [37006] "mainly"            "wonder"            "delight"          
## [37009] "went"              "forward"           "steadily"         
## [37012] "soon"              "saw"               "road"             
## [37015] "away"              "imagined"          "even"             
## [37018] "without"           "fog"               "sleep"            
## [37021] "mid"               "day"               "prevented"        
## [37024] "reaching"          "nightfall"         "day"              
## [37027] "dark"              "line"              "seen"             
## [37030] "line"              "trees"             "line"             
## [37033] "bushes"            "growing"           "edge"             
## [37036] "deep"              "dike"              "steep"            
## [37039] "wall"              "side"              "tom"              
## [37042] "said"              "boundary"          "kingdom"          
## [37045] "long"              "lime"              "ago"              
## [37048] "seemed"            "remember"          "something"        
## [37051] "sad"               "say"               "much"             
## [37054] "climbed"           "dike"              "gap"              
## [37057] "wall"              "tom"               "turned"           
## [37060] "due"               "north"             "bearing"          
## [37063] "somewhat"          "west"              "land"             
## [37066] "now"               "open"              "fairly"           
## [37069] "level"             "quickened"         "pace"             
## [37072] "sun"               "already"           "sinking"          
## [37075] "low"               "last"              "saw"              
## [37078] "line"              "tall"              "trees"            
## [37081] "ahead"             "knew"              "come"             
## [37084] "back"              "road"              "many"             
## [37087] "unexpected"        "adventures"        "galloped"         
## [37090] "ponies"            "last"              "furlongs"         
## [37093] "halted"            "long"              "shadows"          
## [37096] "trees"             "top"               "sloping"          
## [37099] "bank"              "road"              "now"              
## [37102] "dim"               "evening"           "drew"             
## [37105] "wound"             "away"              "point"            
## [37108] "ran"               "nearly"            "south"            
## [37111] "west"              "north"             "east"             
## [37114] "right"             "fell"              "quickly"          
## [37117] "wide"              "hollow"            "rutted"           
## [37120] "bore"              "many"              "signs"            
## [37123] "recent"            "heavy"             "rain"             
## [37126] "pools"             "pot"               "holes"            
## [37129] "full"              "water"             "rode"             
## [37132] "bank"              "looked"            "nothing"          
## [37135] "seen"              "well"              "last"             
## [37138] "said"              "frodo"             "suppose"          
## [37141] "havent"            "lost"              "two"              
## [37144] "days"              "short"             "cut"              
## [37147] "forest"            "perhaps"           "delay"            
## [37150] "will"              "prove"             "useful"           
## [37153] "may"               "put"               "trail"            
## [37156] "others"            "looked"            "shadow"           
## [37159] "fear"              "black"             "riders"           
## [37162] "came"              "suddenly"          "ever"             
## [37165] "since"             "entered"           "forest"           
## [37168] "thought"           "chiefly"           "getting"          
## [37171] "back"              "road"              "now"              
## [37174] "lay"               "beneath"           "feet"             
## [37177] "remember"          "danger"            "pursued"          
## [37180] "likely"            "lying"             "wait"             
## [37183] "upon"              "road"              "looked"           
## [37186] "anxiously"         "back"              "towards"          
## [37189] "setting"           "sun"               "road"             
## [37192] "brown"             "empty"             "think"            
## [37195] "asked"             "pippin"            "hesitatingly"     
## [37198] "think"             "may"               "pursued"          
## [37201] "tonight"           "hope"              "tonight"          
## [37204] "answered"          "tom"               "bombadil"         
## [37207] "perhaps"           "next"              "day"              
## [37210] "trust"             "guess"             "tell"             
## [37213] "certain"           "east"              "knowledge"        
## [37216] "fails"             "tom"               "master"           
## [37219] "riders"            "black"             "land"             
## [37222] "far"               "beyond"            "country"          
## [37225] "hobbits"           "wished"            "coming"           
## [37228] "felt"              "know"              "deal"             
## [37231] "black"             "riders"            "anyone"           
## [37234] "soon"              "now"               "going"            
## [37237] "forward"           "lands"             "wholly"           
## [37240] "strange"           "beyond"            "vague"            
## [37243] "distant"           "legends"           "shire"            
## [37246] "gathering"         "twilight"          "longed"           
## [37249] "home"              "deep"              "loneliness"       
## [37252] "sense"             "loss"              "stood"            
## [37255] "silent"            "reluctant"         "make"             
## [37258] "final"             "parting"           "slowly"           
## [37261] "became"            "aware"             "tom"              
## [37264] "wishing"           "farewell"          "telling"          
## [37267] "good"              "heart"             "ride"             
## [37270] "till"              "dark"              "without"          
## [37273] "halting"           "tom"               "will"             
## [37276] "give"              "good"              "advice"           
## [37279] "till"              "day"               "luck"             
## [37282] "must"              "go"                "guide"            
## [37285] "four"              "miles"             "along"            
## [37288] "road"              "youll"             "come"             
## [37291] "upon"              "village"           "bree"             
## [37294] "bree"              "hill"              "doors"            
## [37297] "looking"           "westward"          "youll"            
## [37300] "find"              "old"               "inn"              
## [37303] "called"            "prancing"          "pony"             
## [37306] "barliman"          "butterbur"         "worthy"           
## [37309] "keeper"            "can"               "stay"             
## [37312] "night"             "afterwards"        "morning"          
## [37315] "will"              "speed"             "upon"             
## [37318] "way"               "bold"              "wary"             
## [37321] "keep"              "merry"             "hearts"           
## [37324] "ride"              "meet"              "fortune"          
## [37327] "begged"            "come"              "least"            
## [37330] "far"               "inn"               "drink"            
## [37333] "laughed"           "refused"           "saying"           
## [37336] "toms"              "country"           "ends"             
## [37339] "will"              "pass"              "borders"          
## [37342] "tom"               "house"             "mind"             
## [37345] "goldberry"         "waiting"           "turned"           
## [37348] "tossed"            "hat"               "leaped"           
## [37351] "lumpkins"          "back"              "rode"             
## [37354] "bank"              "away"              "singing"          
## [37357] "dusk"              "hobbits"           "climbed"          
## [37360] "watched"           "sight"             ""                 
## [37363] ""                  "sorry"             "take"             
## [37366] "leave"             "master"            "bombadil"         
## [37369] "said"              "sam"               "hes"              
## [37372] "caution"           "mistake"           "reckon"           
## [37375] "may"               "go"                "good"             
## [37378] "deal"              "see"               "naught"           
## [37381] "better"            "queerer"           "wont"             
## [37384] "deny"              "ill"               "glad"             
## [37387] "see"               "prancing"          "pony"             
## [37390] "spoke"             "hope"              "itll"             
## [37393] "like"              "green"             "dragon"           
## [37396] "away"              "back"              "home"             
## [37399] "sort"              "folk"              "bree"             
## [37402] ""                  ""                  "hobbits"          
## [37405] "bree"              "said"              "merry"            
## [37408] "well"              "big"               "folk"             
## [37411] "daresay"           "will"              "homelike"         
## [37414] "enough"            "pony"              "good"             
## [37417] "inn"               "accounts"          "people"           
## [37420] "ride"              "now"               ""                 
## [37423] ""                  "may"               "wish"             
## [37426] "said"              "frodo"             "outside"          
## [37429] "shire"             "dont"              "make"             
## [37432] "much"              "home"              "please"           
## [37435] "remember"          "name"              "baggins"          
## [37438] "must"              "mentioned"         "mr"               
## [37441] "underhill"         "name"              "must"             
## [37444] "given"             "now"               "mounted"          
## [37447] "ponies"            "rode"              "silently"         
## [37450] "evening"           "darkness"          "came"             
## [37453] "quickly"           "plodded"           "slowly"           
## [37456] "downhill"          "last"              "saw"              
## [37459] "lights"            "twinkling"         "distance"         
## [37462] "ahead"             "rose"              "bree"             
## [37465] "hill"              "barring"           "way"              
## [37468] "dark"              "mass"              "misty"            
## [37471] "stars"             "western"           "flank"            
## [37474] "nestled"           "large"             "village"          
## [37477] "towards"           "now"               "hurried"          
## [37480] "desiring"          "find"              "fire"             
## [37483] "door"              "night"             "chapter"          
## [37486] "sign"              "prancing"          "pony"             
## [37489] "bree"              "chief"             "village"          
## [37492] "bree"              "land"              "small"            
## [37495] "inhabited"         "region"            "like"             
## [37498] "island"            "empty"             "lands"            
## [37501] "round"             "besides"           "bree"             
## [37504] "staddle"           "side"              "hill"             
## [37507] "combe"             "deep"              "valley"           
## [37510] "little"            "eastward"          "archet"           
## [37513] "edge"              "chetwood"          "lying"            
## [37516] "round"             "bree"              "hill"             
## [37519] "villages"          "small"             "country"          
## [37522] "fields"            "tamed"             "woodland"         
## [37525] "miles"             "broad"             "men"              
## [37528] "bree"              "brown"             "haired"           
## [37531] "broad"             "rather"            "short"            
## [37534] "cheerful"          "independent"       "belonged"         
## [37537] "nobody"            "friendly"          "familiar"         
## [37540] "hobbits"           "dwarves"           "elves"            
## [37543] "inhabitants"       "world"             "usual"            
## [37546] "big"               "people"            "according"        
## [37549] "tales"             "original"          "inhabitants"      
## [37552] "descendants"       "first"             "men"              
## [37555] "ever"              "wandered"          "west"             
## [37558] "middle"            "world"             "survived"         
## [37561] "turmoils"          "elder"             "days"             
## [37564] "kings"             "returned"          "great"            
## [37567] "sea"               "found"             "bree"             
## [37570] "men"               "still"             "still"            
## [37573] "now"               "memory"            "old"              
## [37576] "kings"             "faded"             "grass"            
## [37579] "days"              "men"               "settled"          
## [37582] "dwellings"         "far"               "west"             
## [37585] "within"            "hundred"           "leagues"          
## [37588] "shire"             "wild"              "lands"            
## [37591] "beyond"            "bree"              "mysterious"       
## [37594] "wanderers"         "bree"              "folk"             
## [37597] "called"            "rangers"           "knew"             
## [37600] "nothing"           "origin"            "taller"           
## [37603] "darker"            "men"               "bree"             
## [37606] "believed"          "strange"           "powers"           
## [37609] "sight"             "hearing"           "understand"       
## [37612] "languages"         "beasts"            "birds"            
## [37615] "roamed"            "will"              "southwards"       
## [37618] "eastwards"         "even"              "far"              
## [37621] "misty"             "mountains"         "now"              
## [37624] "rarely"            "seen"              "appeared"         
## [37627] "brought"           "news"              "afar"             
## [37630] "told"              "strange"           "forgotten"        
## [37633] "tales"             "eagerly"           "listened"         
## [37636] "bree"              "folk"              "make"             
## [37639] "friends"           "also"              "many"             
## [37642] "families"          "hobbits"           "bree"             
## [37645] "land"              "claimed"           "oldest"           
## [37648] "settlement"        "hobbits"           "world"            
## [37651] "one"               "founded"           "long"             
## [37654] "even"              "brandywine"        "crossed"          
## [37657] "shire"             "colonized"         "lived"            
## [37660] "mostly"            "staddle"           "though"           
## [37663] "bree"              "especially"        "higher"           
## [37666] "slopes"            "hill"              "houses"           
## [37669] "men"               "big"               "folk"             
## [37672] "little"            "folk"              "called"           
## [37675] "one"               "another"           "friendly"         
## [37678] "terms"             "minding"           "affairs"          
## [37681] "ways"              "rightly"           "regarding"        
## [37684] "necessary"         "parts"             "bree"             
## [37687] "folk"              "nowhere"           "else"             
## [37690] "world"             "peculiar"          "excellent"        
## [37693] "arrangement"       "found"             "bree"             
## [37696] "folk"              "big"               "little"           
## [37699] "travel"            "much"              "affairs"          
## [37702] "four"              "villages"          "chief"            
## [37705] "concern"           "occasionally"      "hobbits"          
## [37708] "bree"              "went"              "far"              
## [37711] "buckland"          "eastfarthing"      "though"           
## [37714] "link"              "land"              "much"             
## [37717] "days"              "riding"            "east"             
## [37720] "brandywine"        "bridge"            "hobbits"          
## [37723] "shire"             "now"               "seldom"           
## [37726] "visited"           "occasional"        "bucklander"       
## [37729] "adventurous"       "took"              "come"             
## [37732] "inn"               "night"             "two"              
## [37735] "even"              "becoming"          "less"             
## [37738] "less"              "usual"             "shire"            
## [37741] "hobbits"           "referred"          "bree"             
## [37744] "others"            "lived"             "beyond"           
## [37747] "borders"           "outsiders"         "took"             
## [37750] "little"            "interest"          "considering"      
## [37753] "dull"              "uncouth"           "probably"         
## [37756] "many"              "outsiders"         "scattered"        
## [37759] "west"              "world"             "days"             
## [37762] "people"            "shire"             "imagined"         
## [37765] "doubtless"         "better"            "tramps"           
## [37768] "ready"             "dig"               "hole"             
## [37771] "bank"              "stay"              "long"             
## [37774] "suited"            "bree"              "land"             
## [37777] "rate"              "hobbits"           "decent"           
## [37780] "prosperous"        "rustic"            "distant"          
## [37783] "relatives"         "inside"            "yet"              
## [37786] "forgotten"         "time"              "much"             
## [37789] "coming"            "going"             "shire"            
## [37792] "bree"              "bree"              "blood"            
## [37795] "brandybucks"       "accounts"          "village"          
## [37798] "bree"              "hundred"           "stone"            
## [37801] "houses"            "big"               "folk"             
## [37804] "mostly"            "road"              "nestling"         
## [37807] "hillside"          "windows"           "looking"          
## [37810] "west"              "side"              "running"          
## [37813] "half"              "circle"            "hill"             
## [37816] "back"              "deep"              "dike"             
## [37819] "thick"             "hedge"             "inner"            
## [37822] "side"              "road"              "crossed"          
## [37825] "causeway"          "pierced"           "hedge"            
## [37828] "barred"            "great"             "gate"             
## [37831] "another"           "gate"              "southern"         
## [37834] "comer"             "road"              "ran"              
## [37837] "village"           "gates"             "closed"           
## [37840] "nightfall"         "just"              "inside"           
## [37843] "small"             "lodges"            "gatekeepers"      
## [37846] "road"              "swept"             "right"            
## [37849] "go"                "round"             "foot"             
## [37852] "hill"              "large"             "inn"              
## [37855] "built"             "long"              "ago"              
## [37858] "traffic"           "roads"             "far"              
## [37861] "greater"           "bree"              "stood"            
## [37864] "old"               "meeting"           "ways"             
## [37867] "another"           "ancient"           "road"             
## [37870] "crossed"           "east"              "road"             
## [37873] "just"              "outside"           "dike"             
## [37876] "western"           "end"               "village"          
## [37879] "former"            "days"              "men"              
## [37882] "folk"              "various"           "sorts"            
## [37885] "travelled"         "much"              "strange"          
## [37888] "news"              "bree"              "still"            
## [37891] "saying"            "eastfarthing"      "descending"       
## [37894] "days"              "news"              "north"            
## [37897] "south"             "east"              "heard"            
## [37900] "inn"               "shire"             "hobbits"          
## [37903] "used"              "go"                "often"            
## [37906] "hear"              "northern"          "lands"            
## [37909] "long"              "desolate"          "north"            
## [37912] "road"              "now"               "seldom"           
## [37915] "used"              "grass"             "grown"            
## [37918] "bree"              "folk"              "called"           
## [37921] "greenway"          "inn"               "bree"             
## [37924] "still"             "however"           "innkeeper"        
## [37927] "important"         "person"            "house"            
## [37930] "meeting"           "place"             "idle"             
## [37933] "talkative"         "inquisitive"       "among"            
## [37936] "inhabitants"       "large"             "small"            
## [37939] "four"              "villages"          "resort"           
## [37942] "rangers"           "wanderers"         "travellers"       
## [37945] "mostly"            "dwarves"           "still"            
## [37948] "journeyed"         "east"              "road"             
## [37951] "mountains"         "dark"              "white"            
## [37954] "stars"             "shining"           "frodo"            
## [37957] "companions"        "came"              "last"             
## [37960] "greenway"          "crossing"          "drew"             
## [37963] "near"              "village"           "came"             
## [37966] "west"              "gate"              "found"            
## [37969] "shut"              "door"              "lodge"            
## [37972] "beyond"            "man"               "sitting"          
## [37975] "jumped"            "fetched"           "lantern"          
## [37978] "looked"            "gate"              "surprise"         
## [37981] "want"              "come"              "asked"            
## [37984] "gruffly"           "making"            "inn"              
## [37987] "answered"          "frodo"             "journeying"       
## [37990] "east"              "go"                "tonight"          
## [37993] "hobbits"           "four"              "hobbits"          
## [37996] "whats"             "shire"             "talk"             
## [37999] "said"              "gatekeeper"        "softly"           
## [38002] "speaking"          "stared"            "darkly"           
## [38005] "moment"            "slowly"            "opened"           
## [38008] "gate"              "let"               "ride"             
## [38011] "dont"              "often"             "see"              
## [38014] "shire"             "folk"              "riding"           
## [38017] "road"              "night"             "went"             
## [38020] "halted"            "moment"            "door"             
## [38023] "youll"             "pardon"            "wondering"        
## [38026] "business"          "takes"             "away"             
## [38029] "east"              "bree"              "may"              
## [38032] "names"             "might"             "ask"              
## [38035] "names"             "business"          "seem"             
## [38038] "good"              "place"             "discuss"          
## [38041] "said"              "frodo"             "liking"           
## [38044] "look"              "man"               "tone"             
## [38047] "voice"             "business"          "doubt"            
## [38050] "said"              "man"               "business"         
## [38053] "ask"               "questions"         "nightfall"        
## [38056] "hobbits"           "buckland"          "fancy"            
## [38059] "travel"            "stay"              "inn"              
## [38062] "put"               "merry"             "mr"               
## [38065] "brandybuck"        "enough"            "bree"             
## [38068] "folk"              "used"              "fair"             
## [38071] "spoken"            "travellers"        "heard"            
## [38074] "right"             "right"             "said"             
## [38077] "man"               "meant"             "offence"          
## [38080] "youll"             "find"              "maybe"            
## [38083] "folk"              "old"               "harry"            
## [38086] "gate"              "will"              "asking"           
## [38089] "questions"         "theres"            "queer"            
## [38092] "folk"              "go"                "pony"             
## [38095] "youll"             "find"              "youre"            
## [38098] "oat"               "guests"            "wished"           
## [38101] "good"              "night"             "said"             
## [38104] "frodo"             "see"               "lantern"          
## [38107] "light"             "man"               "still"            
## [38110] "eyeing"            "curiously"         "glad"             
## [38113] "hear"              "gate"              "clang"            
## [38116] "behind"            "rode"              "forward"          
## [38119] "wondered"          "man"               "suspicious"       
## [38122] "whether"           "one"               "asking"           
## [38125] "news"              "party"             "hobbits"          
## [38128] "gandalf"           "might"             "arrived"          
## [38131] "delayed"           "forest"            "downs"            
## [38134] "something"         "look"              "voice"            
## [38137] "gatekeeper"        "made"              "uneasy"           
## [38140] "man"               "stared"            "hobbits"          
## [38143] "moment"            "went"              "back"             
## [38146] "house"             "soon"              "back"             
## [38149] "turned"            "dark"              "figure"           
## [38152] "climbed"           "quickly"           "gate"             
## [38155] "melted"            "shadows"           "village"          
## [38158] "street"            "hobbits"           "rode"             
## [38161] "gentle"            "slope"             "passing"          
## [38164] "detached"          "houses"            "drew"             
## [38167] "outside"           "inn"               "houses"           
## [38170] "looked"            "large"             "strange"          
## [38173] "sam"               "stared"            "inn"              
## [38176] "three"             "storeys"           "many"             
## [38179] "windows"           "felt"              "heart"            
## [38182] "sink"              "imagined"          "meeting"          
## [38185] "giants"            "taller"            "trees"            
## [38188] "creatures"         "even"              "terrifying"       
## [38191] "time"              "course"            "journey"          
## [38194] "moment"            "finding"           "first"            
## [38197] "sight"             "men"               "tall"             
## [38200] "houses"            "quite"             "enough"           
## [38203] "indeed"            "much"              "dark"             
## [38206] "end"               "tiring"            "day"              
## [38209] "pictured"          "black"             "horses"           
## [38212] "standing"          "saddled"           "shadows"          
## [38215] "inn"               "yard"              "black"            
## [38218] "riders"            "peering"           "dark"             
## [38221] "upper"             "windows"           "surely"           
## [38224] "arent"             "going"             "stay"             
## [38227] "night"             "sir"               "exclaimed"        
## [38230] "hobbit"            "folk"              "pans"             
## [38233] "dont"              "look"              "willing"          
## [38236] "take"              "us"                "homelike"         
## [38239] "whats"             "wrong"             "inn"              
## [38242] "said"              "frodo"             "tom"              
## [38245] "bombadil"          "recommended"       "expect"           
## [38248] "homelike"          "enough"            "inside"           
## [38251] "even"              "outside"           "inn"              
## [38254] "looked"            "pleasant"          "house"            
## [38257] "familiar"          "eyes"              "front"            
## [38260] "road"              "two"               "wings"            
## [38263] "running"           "back"              "land"             
## [38266] "partly"            "cut"               "lower"            
## [38269] "slopes"            "hill"              "rear"             
## [38272] "second"            "floor"             "windows"          
## [38275] "level"             "ground"            "wide"             
## [38278] "arch"              "leading"           "courtyard"        
## [38281] "two"               "wings"             "left"             
## [38284] "arch"              "large"             "doorway"          
## [38287] "reached"           "broad"             "steps"            
## [38290] "door"              "open"              "light"            
## [38293] "streamed"          "arch"              "lamp"             
## [38296] "beneath"           "swung"             "large"            
## [38299] "signboard"         "fat"               "white"            
## [38302] "pony"              "reared"            "hind"             
## [38305] "legs"              "door"              "painted"          
## [38308] "white"             "letters"           "prancing"         
## [38311] "pony"              "barliman"          "butterbur"        
## [38314] "many"              "lower"             "windows"          
## [38317] "showed"            "lights"            "behind"           
## [38320] "thick"             "curtains"          "hesitated"        
## [38323] "outside"           "gloom"             "someone"          
## [38326] "began"             "singing"           "merry"            
## [38329] "song"              "inside"            "many"             
## [38332] "cheerful"          "voices"            "joined"           
## [38335] "loudly"            "chorus"            "listened"         
## [38338] "encouraging"       "sound"             "moment"           
## [38341] "got"               "ponies"            "song"             
## [38344] "ended"             "burst"             "laughter"         
## [38347] "clapping"          "led"               "ponies"           
## [38350] "arch"              "leaving"           "standing"         
## [38353] "yard"              "climbed"           "steps"            
## [38356] "frodo"             "went"              "forward"          
## [38359] "nearly"            "bumped"            "short"            
## [38362] "fat"               "man"               "bald"             
## [38365] "head"              "red"               "face"             
## [38368] "white"             "apron"             "bustling"         
## [38371] "one"               "door"              "another"          
## [38374] "carrying"          "tray"              "laden"            
## [38377] "full"              "mugs"              "can"              
## [38380] "began"             "frodo"             "half"             
## [38383] "minute"            "please"            "shouted"          
## [38386] "man"               "shoulder"          "vanished"         
## [38389] "babel"             "voices"            "cloud"            
## [38392] "smoke"             "moment"            "wiping"           
## [38395] "hands"             "apron"             "good"             
## [38398] "evening"           "little"            "master"           
## [38401] "said"              "bending"           "may"              
## [38404] "wanting"           "beds"              "four"             
## [38407] "stabling"          "five"              "ponies"           
## [38410] "can"               "managed"           "mr"               
## [38413] "butterbur"         "thats"             "right"            
## [38416] "barliman"          "name"              "barliman"         
## [38419] "butterbur"         "service"           "youre"            
## [38422] "shire"             "eh"                "said"             
## [38425] "suddenly"          "clapped"           "hand"             
## [38428] "forehead"          "trying"            "remember"         
## [38431] "something"         "hobbits"           "cried"            
## [38434] "now"               "remind"            "might"            
## [38437] "ask"               "names"             "sir"              
## [38440] "mr"                "took"              "mr"               
## [38443] "brandybuck"        "said"              "frodo"            
## [38446] "sam"               "gamgee"            "name"             
## [38449] "underhill"         "now"               "said"             
## [38452] "mr"                "butterbur"         "snapping"         
## [38455] "fingers"           "gone"              "itll"             
## [38458] "come"              "back"              "time"             
## [38461] "think"             "im"                "run"              
## [38464] "feet"              "ill"               "see"              
## [38467] "can"               "dont"              "often"            
## [38470] "get"               "party"             "shire"            
## [38473] "nowadays"          "sorry"             "make"             
## [38476] "welcome"           "crowd"             "already"          
## [38479] "house"             "tonight"           "hasnt"            
## [38482] "long"              "enough"            "never"            
## [38485] "rains"             "pours"             "say"              
## [38488] "bree"              "hi"                "nob"              
## [38491] "shouted"           "woolly"            "footed"           
## [38494] "slow"              "coach"             "nob"              
## [38497] "coming"            "sir"               "coming"           
## [38500] "cheery"            "looking"           "hobbit"           
## [38503] "bobbed"            "door"              "seeing"           
## [38506] "travellers"        "stopped"           "short"            
## [38509] "stared"            "great"             "interest"         
## [38512] "wheres"            "bob"               "asked"            
## [38515] "landlord"          "dont"              "know"             
## [38518] "well"              "find"              "double"           
## [38521] "sharp"             "havent"            "got"              
## [38524] "six"               "legs"              "six"              
## [38527] "eyes"              "neither"           "tell"             
## [38530] "bob"               "theres"            "five"             
## [38533] "ponies"            "stabled"           "must"             
## [38536] "find"              "room"              "somehow"          
## [38539] "nob"               "trotted"           "grin"             
## [38542] "wink"              "well"              "now"              
## [38545] "going"             "say"               "said"             
## [38548] "mr"                "butterbur"         "tapping"          
## [38551] "forehead"          "one"               "thing"            
## [38554] "drives"            "another"           "speak"            
## [38557] "im"                "busy"              "tonight"          
## [38560] "head"              "going"             "round"            
## [38563] "theres"            "party"             "came"             
## [38566] "greenway"          "south"             "last"             
## [38569] "night"             "strange"           "enough"           
## [38572] "begin"             "theres"            "travelling"       
## [38575] "company"           "dwarves"           "going"            
## [38578] "west"              "come"              "evening"          
## [38581] "now"               "theres"            "werent"           
## [38584] "hobbits"           "doubt"             "house"            
## [38587] "weve"              "got"               "room"             
## [38590] "two"               "north"             "wing"             
## [38593] "made"              "special"           "hobbits"          
## [38596] "place"             "built"             "ground"           
## [38599] "floor"             "usually"           "prefer"           
## [38602] "round"             "windows"           "like"             
## [38605] "hope"              "youll"             "comfortable"      
## [38608] "youll"             "wanting"           "supper"           
## [38611] "dont"              "doubt"             "soon"             
## [38614] "may"               "way"               "now"              
## [38617] "led"               "short"             "way"              
## [38620] "passage"           "opened"            "door"             
## [38623] "nice"              "little"            "parlour"          
## [38626] "said"              "hope"              "will"             
## [38629] "suit"              "excuse"            "now"              
## [38632] "im"                "busy"              "time"             
## [38635] "talking"           "must"              "trotting"         
## [38638] "hard"              "work"              "two"              
## [38641] "legs"              "dont"              "get"              
## [38644] "thinner"           "ill"               "look"             
## [38647] "later"             "want"              "anything"         
## [38650] "ring"              "hand"              "bell"             
## [38653] "nob"               "will"              "come"             
## [38656] "dont"              "come"              "ring"             
## [38659] "shout"             "went"              "last"             
## [38662] "left"              "feeling"           "rather"           
## [38665] "breathless"        "seemed"            "capable"          
## [38668] "endless"           "stream"            "talk"             
## [38671] "however"           "busy"              "might"            
## [38674] "found"             "small"             "cosy"             
## [38677] "room"              "bit"               "bright"           
## [38680] "fire"              "burning"           "hearth"           
## [38683] "front"             "low"               "comfortable"      
## [38686] "chairs"            "round"             "table"            
## [38689] "already"           "spread"            "white"            
## [38692] "cloth"             "large"             "hand"             
## [38695] "bell"              "nob"               "hobbit"           
## [38698] "servant"           "came"              "bustling"         
## [38701] "long"              "thought"           "ringing"          
## [38704] "brought"           "candles"           "tray"             
## [38707] "full"              "plates"            "will"             
## [38710] "wanting"           "anything"          "drink"            
## [38713] "masters"           "asked"             "shall"            
## [38716] "show"              "bedrooms"          "supper"           
## [38719] "got"               "ready"             "washed"           
## [38722] "middle"            "good"              "deep"             
## [38725] "mugs"              "beer"              "mr"               
## [38728] "butterbur"         "nob"               "came"             
## [38731] "twinkling"         "table"             "laid"             
## [38734] "hot"               "soup"              "cold"             
## [38737] "meats"             "blackberry"        "tart"             
## [38740] "new"               "loaves"            "slabs"            
## [38743] "butter"            "half"              "ripe"             
## [38746] "cheese"            "good"              "plain"            
## [38749] "food"              "good"              "shire"            
## [38752] "show"              "homelike"          "enough"           
## [38755] "dispel"            "last"              "sams"             
## [38758] "misgivings"        "already"           "much"             
## [38761] "relieved"          "excellence"        "beer"             
## [38764] "landlord"          "hovered"           "round"            
## [38767] "link"              "prepared"          "leave"            
## [38770] "dont"              "know"              "whether"          
## [38773] "care"              "join"              "company"          
## [38776] "supped"            "said"              "standing"         
## [38779] "door"              "perhaps"           "rather"           
## [38782] "go"                "beds"              "still"            
## [38785] "company"           "pleased"           "welcome"          
## [38788] "mind"              "dont"              "get"              
## [38791] "outsiders"         "travellers"        "shire"            
## [38794] "say"               "begging"           "pardon"           
## [38797] "often"             "like"              "hear"             
## [38800] "bit"               "news"              "story"            
## [38803] "song"              "may"               "mind"             
## [38806] "please"            "ring"              "bell"             
## [38809] "lack"              "anything"          "refreshed"        
## [38812] "encouraged"        "feel"              "end"              
## [38815] "supper"            "three"             "quarters"         
## [38818] "hours"             "steady"            "going"            
## [38821] "hindered"          "unnecessary"       "talk"             
## [38824] "frodo"             "pippin"            "sam"              
## [38827] "decided"           "join"              "company"          
## [38830] "merry"             "said"              "stuffy"           
## [38833] "shall"             "sit"               "quietly"          
## [38836] "fire"              "bit"               "perhaps"          
## [38839] "go"                "later"             "sniff"            
## [38842] "air"               "mind"              "ps"               
## [38845] "qs"                "dont"              "forget"           
## [38848] "supposed"          "escaping"          "secret"           
## [38851] "still"             "high"              "road"             
## [38854] "far"               "shire"             "right"            
## [38857] "said"              "pippin"            "mind"             
## [38860] "dont"              "get"               "lost"             
## [38863] "dont"              "forget"            "safer"            
## [38866] "indoors"           "company"           "big"              
## [38869] "common"            "room"              "inn"              
## [38872] "gathering"         "large"             "mixed"            
## [38875] "frodo"             "discovered"        "eyes"             
## [38878] "got"               "used"              "light"            
## [38881] "came"              "chiefly"           "blazing"          
## [38884] "log"               "fire"              "three"            
## [38887] "lamps"             "hanging"           "beams"            
## [38890] "dim"               "half"              "veiled"           
## [38893] "smoke"             "barliman"          "butterbur"        
## [38896] "standing"          "near"              "fire"             
## [38899] "talking"           "couple"            "dwarves"          
## [38902] "one"               "two"               "strange"          
## [38905] "looking"           "men"               "benches"          
## [38908] "various"           "folk"              "men"              
## [38911] "bree"              "collection"        "local"            
## [38914] "hobbits"           "sitting"           "chattering"       
## [38917] "together"          "dwarves"           "vague"            
## [38920] "figures"           "difficult"         "make"             
## [38923] "away"              "shadows"           "comers"           
## [38926] "soon"              "shire"             "hobbits"          
## [38929] "entered"           "chorus"            "welcome"          
## [38932] "bree"              "landers"           "strangers"        
## [38935] "especially"        "come"              "greenway"         
## [38938] "stared"            "curiously"         "landlord"         
## [38941] "introduced"        "newcomers"         "bree"             
## [38944] "folk"              "quickly"           "though"           
## [38947] "caught"            "many"              "names"            
## [38950] "seldom"            "sure"              "names"            
## [38953] "belonged"          "men"               "bree"             
## [38956] "seemed"            "rather"            "botanical"        
## [38959] "shire"             "folk"              "rather"           
## [38962] "odd"               "names"             "like"             
## [38965] "rushlight"         "goatleaf"          "heathertoes"      
## [38968] "appledore"         "thistlewool"       "ferny"            
## [38971] "mention"           "butterbur"         "hobbits"          
## [38974] "similar"           "names"             "mugworts"         
## [38977] "instance"          "seemed"            "numerous"         
## [38980] "natural"           "names"             "banks"            
## [38983] "brockhouse"        "longholes"         "sandheaver"       
## [38986] "tunnelly"          "many"              "used"             
## [38989] "shire"             "several"           "underhills"       
## [38992] "saddle"            "imagine"           "sharing"          
## [38995] "name"              "without"           "related"          
## [38998] "took"              "frodo"             "hearts"           
## [39001] "long"              "lost"              "cousin"           
## [39004] "bree"              "hobbits"           "fact"             
## [39007] "friendly"          "inquisitive"       "frodo"            
## [39010] "soon"              "found"             "explanation"      
## [39013] "given"             "gave"              "interested"       
## [39016] "history"           "geography"         "much"             
## [39019] "wagging"           "heads"             "although"         
## [39022] "neither"           "words"             "much"             
## [39025] "used"              "bree"              "dialect"          
## [39028] "said"              "thinking"          "writing"          
## [39031] "book"              "silent"            "astonishment"     
## [39034] "friends"           "wanted"            "collect"          
## [39037] "information"       "hobbits"           "living"           
## [39040] "outside"           "shire"             "especially"       
## [39043] "eastern"           "lands"             "chorus"           
## [39046] "voices"            "broke"             "frodo"            
## [39049] "really"            "wanted"            "write"            
## [39052] "book"              "many"              "ears"             
## [39055] "learned"           "enough"            "several"          
## [39058] "chapters"          "minutes"           "enough"           
## [39061] "given"             "whole"             "list"             
## [39064] "names"             "beginning"         "old"              
## [39067] "barliman"          "go"                "information"      
## [39070] "time"              "frodo"             "show"             
## [39073] "sign"              "writing"           "book"             
## [39076] "spot"              "hobbits"           "returned"         
## [39079] "questions"         "doings"            "shire"            
## [39082] "frodo"             "prove"             "communicative"    
## [39085] "soon"              "found"             "sitting"          
## [39088] "alone"             "comer"             "listening"        
## [39091] "looking"           "around"            "men"              
## [39094] "dwarves"           "mostly"            "talking"          
## [39097] "distant"           "events"            "telling"          
## [39100] "flews"             "kind"              "becoming"         
## [39103] "familiar"          "trouble"           "away"             
## [39106] "south"             "seemed"            "men"              
## [39109] "come"              "greenway"          "move"             
## [39112] "looking"           "lands"             "find"             
## [39115] "peace"             "bree"              "folk"             
## [39118] "sympathetic"       "plainly"           "ready"            
## [39121] "take"              "large"             "number"           
## [39124] "strangers"         "little"            "land"             
## [39127] "one"               "travellers"        "squint"           
## [39130] "eyed"              "ill"               "favoured"         
## [39133] "fellow"            "foretelling"       "people"           
## [39136] "coming"            "north"             "near"             
## [39139] "future"            "room"              "isnt"             
## [39142] "found"             "theyll"            "find"             
## [39145] "theyve"            "right"             "live"             
## [39148] "folk"              "said"              "loudly"           
## [39151] "local"             "inhabitants"       "look"             
## [39154] "pleased"           "prospect"          "hobbits"          
## [39157] "pay"               "much"              "attention"        
## [39160] "moment"            "seem"              "concern"          
## [39163] "hobbits"           "big"               "folk"             
## [39166] "hardly"            "beg"               "lodgings"         
## [39169] "hobbit"            "holes"             "interested"       
## [39172] "sam"               "pippin"            "now"              
## [39175] "feeling"           "quite"             "home"             
## [39178] "chatting"          "gaily"             "events"           
## [39181] "shire"             "pippin"            "roused"           
## [39184] "good"              "deal"              "laughter"         
## [39187] "account"           "collapse"          "roof"             
## [39190] "town"              "hole"              "michel"           
## [39193] "delving"           "will"              "whitfoot"         
## [39196] "mayor"             "fattest"           "hobbit"           
## [39199] "westfarthing"      "buried"            "chalk"            
## [39202] "came"              "like"              "floured"          
## [39205] "dumpling"          "several"           "questions"        
## [39208] "asked"             "made"              "frodo"            
## [39211] "little"            "uneasy"            "one"              
## [39214] "bree"              "landers"           "seemed"           
## [39217] "shire"             "several"           "times"            
## [39220] "wanted"            "know"              "underhills"       
## [39223] "lived"             "related"           "suddenly"         
## [39226] "frodo"             "noticed"           "strange"          
## [39229] "looking"           "weather"           "beaten"           
## [39232] "man"               "sitting"           "shadows"          
## [39235] "near"              "wall"              "also"             
## [39238] "listening"         "intently"          "hobbit"           
## [39241] "talk"              "tall"              "tankard"          
## [39244] "front"             "smoking"           "long"             
## [39247] "stemmed"           "pipe"              "curiously"        
## [39250] "carved"            "legs"              "stretched"        
## [39253] "showing"           "high"              "boots"            
## [39256] "supple"            "leather"           "fitted"           
## [39259] "well"              "seen"              "much"             
## [39262] "wear"              "now"               "caked"            
## [39265] "mud"               "travel"            "stained"          
## [39268] "cloak"             "heavy"             "dark"             
## [39271] "green"             "cloth"             "drawn"            
## [39274] "close"             "spite"             "heat"             
## [39277] "room"              "wore"              "hood"             
## [39280] "overshadowed"      "face"              "gleam"            
## [39283] "eyes"              "seen"              "watched"          
## [39286] "hobbits"           "frodo"             "asked"            
## [39289] "got"               "chance"            "whisper"          
## [39292] "mr"                "butterbur"         "dont"             
## [39295] "think"             "introduced"        "said"             
## [39298] "landlord"          "answering"         "whisper"          
## [39301] "cocking"           "eye"               "without"          
## [39304] "turning"           "head"              "dont"             
## [39307] "rightly"           "know"              "one"              
## [39310] "wandering"         "folk"              "rangers"          
## [39313] "call"              "seldom"            "talks"            
## [39316] "can"               "tell"              "rare"             
## [39319] "tale"              "mind"              "disappears"       
## [39322] "month"             "year"              "pops"             
## [39325] "pretty"            "often"             "last"             
## [39328] "spring"            "havent"            "seen"             
## [39331] "lately"            "right"             "name"             
## [39334] "ive"               "never"             "heard"            
## [39337] "hes"               "known"             "round"            
## [39340] "strider"           "goes"              "great"            
## [39343] "pace"              "long"              "shanks"           
## [39346] "though"            "dont"              "tell"             
## [39349] "nobody"            "cause"             "hurry"            
## [39352] "theres"            "accounting"        "east"             
## [39355] "west"              "say"               "bree"             
## [39358] "meaning"           "rangers"           "shire"            
## [39361] "folk"              "begging"           "pardon"           
## [39364] "funny"             "ask"               "moment"           
## [39367] "mr"                "butterbur"         "called"           
## [39370] "away"              "demand"            "ale"              
## [39373] "last"              "remark"            "remained"         
## [39376] "unexplained"       "frodo"             "found"            
## [39379] "strider"           "now"               "looking"          
## [39382] "heard"             "guessed"           "said"             
## [39385] "presently"         "wave"              "hand"             
## [39388] "nod"               "invited"           "frodo"            
## [39391] "come"              "sit"               "frodo"            
## [39394] "drew"              "near"              "threw"            
## [39397] "back"              "hood"              "showing"          
## [39400] "shaggy"            "head"              "dark"             
## [39403] "hair"              "necked"            "grey"             
## [39406] "pale"              "stem"              "face"             
## [39409] "pair"              "keen"              "grey"             
## [39412] "eyes"              "called"            "strider"          
## [39415] "said"              "low"               "voice"            
## [39418] "pleased"           "meet"              "master"           
## [39421] "underhill"         "old"               "butterbur"        
## [39424] "got"               "name"              "right"            
## [39427] "said"              "frodo"             "stiffly"          
## [39430] "felt"              "far"               "comfortable"      
## [39433] "stare"             "keen"              "eyes"             
## [39436] "well"              "master"            "underhill"        
## [39439] "said"              "strider"           "stop"             
## [39442] "young"             "friends"           "talking"          
## [39445] "much"              "drink"             "fire"             
## [39448] "chance"            "meeting"           "pleasant"         
## [39451] "enough"            "well"              "isnt"             
## [39454] "shire"             "queer"             "folk"             
## [39457] "though"            "say"               "shouldnt"         
## [39460] "may"               "think"             "added"            
## [39463] "wry"               "smile"             "seeing"           
## [39466] "frodos"            "glance"            "even"             
## [39469] "stranger"          "travellers"        "bree"             
## [39472] "lately"            "went"              "watching"         
## [39475] "frodos"            "face"              "frodo"            
## [39478] "returned"          "gaze"              "said"             
## [39481] "nothing"           "strider"           "made"             
## [39484] "sign"              "attention"         "seemed"           
## [39487] "suddenly"          "fixed"             "pippin"           
## [39490] "alarm"             "frodo"             "became"           
## [39493] "aware"             "ridiculous"        "young"            
## [39496] "took"              "encouraged"        "success"          
## [39499] "fat"               "mayor"             "michel"           
## [39502] "delving"           "now"               "actually"         
## [39505] "giving"            "comic"             "account"          
## [39508] "bilbos"            "farewell"          "party"            
## [39511] "already"           "giving"            "imitation"        
## [39514] "speech"            "drawing"           "near"             
## [39517] "astonishing"       "disappearance"     "frodo"            
## [39520] "annoyed"           "harmless"          "enough"           
## [39523] "tale"              "local"             "hobbits"          
## [39526] "doubt"             "just"              "funny"            
## [39529] "story"             "funny"             "people"           
## [39532] "away"              "beyond"            "river"            
## [39535] "old"               "butterbur"         "instance"         
## [39538] "knew"              "thing"             "two"              
## [39541] "probably"          "heard"             "rumours"          
## [39544] "long"              "ago"               "bilbos"           
## [39547] "vanishing"         "bring"             "name"             
## [39550] "baggins"           "minds"             "especially"       
## [39553] "inquiries"         "bree"              "name"             
## [39556] "frodo"             "fidgeted"          "wondering"        
## [39559] "pippin"            "evidently"         "much"             
## [39562] "enjoying"          "attention"         "getting"          
## [39565] "become"            "quite"             "forgetful"        
## [39568] "danger"            "frodo"             "sudden"           
## [39571] "fear"              "present"           "mood"             
## [39574] "might"             "even"              "mention"          
## [39577] "ring"              "might"             "well"             
## [39580] "disastrous"        "better"            "something"        
## [39583] "quick"             "whispered"         "strider"          
## [39586] "ear"               "frodo"             "jumped"           
## [39589] "stood"             "table"             "began"            
## [39592] "talk"              "attention"         "pippins"          
## [39595] "audience"          "disturbed"         "hobbits"          
## [39598] "looked"            "frodo"             "laughed"          
## [39601] "clapped"           "thinking"          "mr"               
## [39604] "underhill"         "taken"             "much"             
## [39607] "ale"               "good"              "frodo"            
## [39610] "suddenly"          "felt"              "foolish"          
## [39613] "found"             "habit"             "making"           
## [39616] "speech"            "fingering"         "things"           
## [39619] "pocket"            "felt"              "ring"             
## [39622] "chain"             "quite"             "unaccountably"    
## [39625] "desire"            "came"              "slip"             
## [39628] "vanish"            "silly"             "situation"        
## [39631] "seemed"            "somehow"           "suggestion"       
## [39634] "came"              "outside"           "someone"          
## [39637] "something"         "room"              "resisted"         
## [39640] "temptation"        "firmly"            "clasped"          
## [39643] "ring"              "hand"              "keep"             
## [39646] "hold"              "prevent"           "escaping"         
## [39649] "mischief"          "rate"              "gave"             
## [39652] "inspiration"       "spoke"             "suitable"         
## [39655] "words"             "said"              "shire"            
## [39658] "much"              "gratified"         "kindness"         
## [39661] "reception"         "venture"           "hope"             
## [39664] "brief"             "visit"             "will"             
## [39667] "help"              "renew"             "old"              
## [39670] "ties"              "friendship"        "shire"            
## [39673] "bree"              "hesitated"         "coughed"          
## [39676] "everyone"          "room"              "now"              
## [39679] "looking"           "song"              "shouted"          
## [39682] "one"               "hobbits"           "song"             
## [39685] "song"              "shouted"           "others"           
## [39688] "come"              "now"               "master"           
## [39691] "sing"              "us"                "something"        
## [39694] "havent"            "heard"             "moment"           
## [39697] "frodo"             "stood"             "gaping"           
## [39700] "desperation"       "began"             "ridiculous"       
## [39703] "song"              "bilbo"             "rather"           
## [39706] "fond"              "indeed"            "rather"           
## [39709] "proud"             "made"              "words"            
## [39712] "inn"               "probably"          "came"             
## [39715] "frodos"            "mind"              "just"             
## [39718] "full"              "words"             "now"              
## [39721] "rule"              "remembered"        "inn"              
## [39724] "merry"             "old"               "inn"              
## [39727] "beneath"           "old"               "grey"             
## [39730] "hill"              "brew"              "beer"             
## [39733] "brown"             "man"               "moon"             
## [39736] "came"              "one"               "night"            
## [39739] "drink"             "fill"              "ostler"           
## [39742] "tipsy"             "cat"               "plays"            
## [39745] "five"              "stringed"          "fiddle"           
## [39748] "runs"              "bow"               "now"              
## [39751] "squeaking"         "high"              "now"              
## [39754] "purring"           "low"               "now"              
## [39757] "sawing"            "middle"            "landlord"         
## [39760] "keeps"             "little"            "dog"              
## [39763] "mighty"            "fond"              "jokes"            
## [39766] "theres"            "good"              "cheer"            
## [39769] "among"             "guests"            "cocks"            
## [39772] "ear"               "jests"             "laughs"           
## [39775] "chokes"            "also"              "keep"             
## [39778] "horned"            "cow"               "proud"            
## [39781] "queen"             "music"             "turns"            
## [39784] "head"              "like"              "ale"              
## [39787] "makes"             "wave"              "tufted"           
## [39790] "tail"              "dance"             "upon"             
## [39793] "green"             "rows"              "silver"           
## [39796] "dishes"            "store"             "silver"           
## [39799] "spoons"            "sunday"            "theres"           
## [39802] "special"           "pair"              "polish"           
## [39805] "care"              "saturday"          "afternoons"       
## [39808] "man"               "moon"              "drinking"         
## [39811] "deep"              "cat"               "began"            
## [39814] "wail"              "dish"              "spoon"            
## [39817] "table"             "danced"            "cow"              
## [39820] "garden"            "madly"             "pranced"          
## [39823] "little"            "dog"               "chased"           
## [39826] "tail"              "man"               "moon"             
## [39829] "took"              "another"           "mug"              
## [39832] "rolled"            "beneath"           "chair"            
## [39835] "dozed"             "dreamed"           "ale"              
## [39838] "till"              "sky"               "stars"            
## [39841] "pale"              "dawn"              "air"              
## [39844] "ostler"            "said"              "tipsy"            
## [39847] "cat"               ""                  ""                 
## [39850] "white"             "horses"            "moon"             
## [39853] "neigh"             "champ"             "silver"           
## [39856] "bits"              "masters"           "drowned"          
## [39859] "wits"              "sunll"             "rising"           
## [39862] "soon"              ""                  "cat"              
## [39865] "fiddle"            "played"            "hey"              
## [39868] "diddle"            "diddle"            "jig"              
## [39871] "wake"              "dead"              "squeaked"         
## [39874] "sawed"             "quickened"         "tune"             
## [39877] "landlord"          "shook"             "man"              
## [39880] "moon"              "three"             "said"             
## [39883] "rolled"            "man"               "slowly"           
## [39886] "hill"              "bundled"           "moon"             
## [39889] "horses"            "galloped"          "rear"             
## [39892] "cow"               "came"              "capering"         
## [39895] "like"              "deer"              "dish"             
## [39898] "ran"               "spoon"             "now"              
## [39901] "quicker"           "fiddle"            "went"             
## [39904] "deedle"            "dum"               "diddle"           
## [39907] "dog"               "began"             "roar"             
## [39910] "cow"               "horses"            "stood"            
## [39913] "heads"             "guests"            "bounded"          
## [39916] "beds"              "danced"            "upon"             
## [39919] "floor"             "ping"              "pong"             
## [39922] "fiddle"            "strings"           "broke"            
## [39925] "cow"               "jumped"            "moon"             
## [39928] "little"            "dog"               "laughed"          
## [39931] "see"               "fun"               "saturday"         
## [39934] "dish"              "went"              "run"              
## [39937] "silver"            "sunday"            "spoon"            
## [39940] "round"             "moon"              "rolled"           
## [39943] "behind"            "hill"              "sun"              
## [39946] "raised"            "head"              "hardly"           
## [39949] "believed"          "fiery"             "eyes"             
## [39952] "though"            "day"               "surprise"         
## [39955] "went"              "back"              "bed"              
## [39958] "loud"              "long"              "applause"         
## [39961] "frodo"             "good"              "voice"            
## [39964] "song"              "tickled"           "fancy"            
## [39967] "wheres"            "old"               "barley"           
## [39970] "cried"             "hear"              "bob"              
## [39973] "learn"             "cat"               "fiddle"           
## [39976] "wed"               "dance"             "called"           
## [39979] "ale"               "began"             "shout"            
## [39982] "lets"              "master"            "come"             
## [39985] "now"               "made"              "frodo"            
## [39988] "another"           "drink"             "begin"            
## [39991] "song"              "many"              "joined"           
## [39994] "tune"              "well"              "known"            
## [39997] "quick"             "picking"           "words"            
## [40000] "now"               "frodos"            "turn"             
## [40003] "feel"              "pleased"           "capered"          
## [40006] "table"             "came"              "second"           
## [40009] "time"              "cow"               "jumped"           
## [40012] "moon"              "leaped"            "air"              
## [40015] "much"              "vigorously"        "came"             
## [40018] "bang"              "tray"              "full"             
## [40021] "mugs"              "slipped"           "rolled"           
## [40024] "table"             "crash"             "clatter"          
## [40027] "bump"              "audience"          "opened"           
## [40030] "mouths"            "wide"              "laughter"         
## [40033] "stopped"           "short"             "gaping"           
## [40036] "silence"           "singer"            "disappeared"      
## [40039] "simply"            "vanished"          "gone"             
## [40042] "slap"              "floor"             "without"          
## [40045] "leaving"           "hole"              "local"            
## [40048] "hobbits"           "stared"            "amazement"        
## [40051] "sprang"            "feet"              "shouted"          
## [40054] "barliman"          "company"           "drew"             
## [40057] "away"              "pippin"            "sam"              
## [40060] "found"             "left"              "alone"            
## [40063] "comer"             "eyed"              "darkly"           
## [40066] "doubtfully"        "distance"          "plain"            
## [40069] "many"              "people"            "regarded"         
## [40072] "now"               "companions"        "travelling"       
## [40075] "magician"          "unknown"           "powers"           
## [40078] "purpose"           "one"               "swarthy"          
## [40081] "bree"              "lander"            "stood"            
## [40084] "looking"           "knowing"           "half"             
## [40087] "mocking"           "expression"        "made"             
## [40090] "feel"              "uncomfortable"     "presently"        
## [40093] "slipped"           "door"              "followed"         
## [40096] "squint"            "eyed"              "southerner"       
## [40099] "two"               "whispering"        "together"         
## [40102] "good"              "deal"              "evening"          
## [40105] "harry"             "gatekeeper"        "also"             
## [40108] "went"              "just"              "behind"           
## [40111] "frodo"             "felt"              "fool"             
## [40114] "knowing"           "else"              "crawled"          
## [40117] "away"              "tables"            "dark"             
## [40120] "comer"             "strider"           "sat"              
## [40123] "unmoved"           "giving"            "sign"             
## [40126] "thoughts"          "frodo"             "leaned"           
## [40129] "back"              "wall"              "took"             
## [40132] "ring"              "came"              "finger"           
## [40135] "tell"              "suppose"           "handling"         
## [40138] "pocket"            "sang"              "somehow"          
## [40141] "slipped"           "stuck"             "hand"             
## [40144] "jerk"              "save"              "fall"             
## [40147] "moment"            "wondered"          "ring"             
## [40150] "played"            "trick"             "perhaps"          
## [40153] "tried"             "reveal"            "response"         
## [40156] "wish"              "command"           "felt"             
## [40159] "room"              "like"              "looks"            
## [40162] "men"               "gone"              "well"             
## [40165] "said"              "strider"           "reappeared"       
## [40168] "worse"             "anything"          "friends"          
## [40171] "said"              "put"               "foot"             
## [40174] "say"               "finger"            "dont"             
## [40177] "know"              "mean"              "said"             
## [40180] "frodo"             "annoyed"           "alarmed"          
## [40183] "oh"                "yes"               "answered"         
## [40186] "strider"           "better"            "wait"             
## [40189] "uproar"            "died"              "please"           
## [40192] "mr"                "baggins"           "like"             
## [40195] "quiet"             "word"              "asked"            
## [40198] "frodo"             "ignoring"          "sudden"           
## [40201] "use"               "proper"            "name"             
## [40204] "matter"            "importance"        "us"               
## [40207] "answered"          "strider"           "looking"          
## [40210] "frodo"             "eye"               "may"              
## [40213] "hear"              "something"         "advantage"        
## [40216] "well"              "said"              "frodo"            
## [40219] "trying"            "appear"            "unconcerned"      
## [40222] "ill"               "talk"              "later"            
## [40225] "meanwhile"         "argument"          "going"            
## [40228] "fireplace"         "mr"                "butterbur"        
## [40231] "come"              "trotting"          "now"              
## [40234] "trying"            "listen"            "several"          
## [40237] "conflicting"       "accounts"          "event"            
## [40240] "time"              "saw"               "mr"               
## [40243] "butterbur"         "said"              "hobbit"           
## [40246] "leastways"         "didnt"             "see"              
## [40249] "take"              "meaning"           "just"             
## [40252] "vanished"          "thin"              "air"              
## [40255] "manner"            "speaking"          "dont"             
## [40258] "say"               "mr"                "mugwort"          
## [40261] "said"              "landlord"          "looking"          
## [40264] "puzzled"           "yes"               "replied"          
## [40267] "mugwort"           "mean"              "say"              
## [40270] "whats"             ""                  "theres"           
## [40273] "mistake"           "somewhere"         "said"             
## [40276] "butterbur"         "shaking"           "head"             
## [40279] "much"              "mr"                "underhill"        
## [40282] "go"                "vanishing"         "thin"             
## [40285] "air"               "thick"             "air"              
## [40288] "likely"            "room"              "well"             
## [40291] "now"               "cried"             "several"          
## [40294] "voices"            "know"              "hes"              
## [40297] "welcome"           "go"                "will"             
## [40300] "long"              "pays"              "morning"          
## [40303] "theres"            "mr"                "took"             
## [40306] "now"               "hes"               "vanished"         
## [40309] "well"              "saw"               "saw"              
## [40312] "saw"               "didnt"             "said"             
## [40315] "mugwort"           "obstinately"       "say"              
## [40318] "theres"            "mistake"           "repeated"         
## [40321] "butterbur"         "picking"           "tray"             
## [40324] "gathering"         "broken"            "crockery"         
## [40327] "course"            "theres"            "mistake"          
## [40330] "said"              "frodo"             "havent"           
## [40333] "vanished"          "ive"               "just"             
## [40336] "words"             "strider"           "comer"            
## [40339] "came"              "forward"           "firelight"        
## [40342] "company"           "backed"            "away"             
## [40345] "even"              "perturbed"         "least"            
## [40348] "satisfied"         "explanation"       "crawled"          
## [40351] "away"              "quickly"           "tables"           
## [40354] "fallen"            "hobbits"           "men"              
## [40357] "bree"              "went"              "huff"             
## [40360] "fancy"             "entertainment"     "evening"          
## [40363] "one"               "two"               "gave"             
## [40366] "frodo"             "black"             "look"             
## [40369] "departed"          "muttering"         "among"            
## [40372] "dwarves"           "two"               "three"            
## [40375] "strange"           "men"               "still"            
## [40378] "remained"          "got"               "said"             
## [40381] "good"              "night"             "landlord"         
## [40384] "frodo"             "friends"           "long"             
## [40387] "one"               "left"              "strider"          
## [40390] "sat"               "unnoticed"         "wall"             
## [40393] "mr"                "butterbur"         "seem"             
## [40396] "much"              "put"               "reckoned"         
## [40399] "probably"          "house"             "full"             
## [40402] "many"              "future"            "nights"           
## [40405] "present"           "mystery"           "thoroughly"       
## [40408] "discussed"         "now"               "mr"               
## [40411] "underhill"         "asked"             "frightening"      
## [40414] "customers"         "breaking"          "crocks"           
## [40417] "acrobatics"        "sorry"             "caused"           
## [40420] "trouble"           "said"              "frodo"            
## [40423] "quite"             "unintentional"     "assure"           
## [40426] "unfortunate"       "accident"          "right"            
## [40429] "mr"                "underhill"         "youre"            
## [40432] "going"             "tumbling"          "conjuring"        
## [40435] "whatever"          "youd"              "best"             
## [40438] "warn"              "folk"              "beforehand"       
## [40441] "warn"              "bit"               "suspicious"       
## [40444] "round"             "anything"          "way"              
## [40447] "uncanny"           "understand"        "dont"             
## [40450] "take"              "sudden"            "shant"            
## [40453] "anything"          "sort"              "mr"               
## [40456] "butterbur"         "promise"           "now"              
## [40459] "think"             "ill"               "getting"          
## [40462] "bed"               "shall"             "making"           
## [40465] "early"             "start"             "will"             
## [40468] "see"               "ponies"            "ready"            
## [40471] "eight"             "oclock"            "good"             
## [40474] "go"                "like"              "word"             
## [40477] "private"           "mr"                "underhill"        
## [40480] "something"         "just"              "come"             
## [40483] "back"              "mind"              "tell"             
## [40486] "hope"              "youll"             "take"             
## [40489] "amiss"             "ive"               "seen"             
## [40492] "thing"             "two"               "ill"              
## [40495] "come"              "along"             "room"             
## [40498] "youre"             "willing"           "certainly"        
## [40501] "said"              "frodo"             "heart"            
## [40504] "sank"              "wondered"          "many"             
## [40507] "private"           "talks"             "got"              
## [40510] "bed"               "reveal"            "people"           
## [40513] "league"            "began"             "suspect"          
## [40516] "even"              "old"               "butterburs"       
## [40519] "fat"               "face"              "concealing"       
## [40522] "dark"              "designs"           "chapter"          
## [40525] "strider"           "frodo"             "pippin"           
## [40528] "sam"               "made"              "way"              
## [40531] "back"              "parlour"           "light"            
## [40534] "merry"             "fire"              "burned"           
## [40537] "low"               "puffed"            "embers"           
## [40540] "blaze"             "thrown"            "couple"           
## [40543] "faggots"           "discovered"        "strider"          
## [40546] "come"              "calmly"            "sitting"          
## [40549] "chair"             "door"              "hallo"            
## [40552] "said"              "pippin"            "want"             
## [40555] "called"            "strider"           "answered"         
## [40558] "though"            "may"               "forgotten"        
## [40561] "friend"            "promised"          "quiet"            
## [40564] "talk"              "said"              "might"            
## [40567] "hear"              "something"         "advantage"        
## [40570] "believe"           "said"              "frodo"            
## [40573] "say"               "several"           "things"           
## [40576] "answered"          "strider"           "course"           
## [40579] "price"             "mean"              "asked"            
## [40582] "frodo"             "sharply"           "dont"             
## [40585] "alarmed"           "mean"              "just"             
## [40588] "will"              "tell"              "know"             
## [40591] "give"              "good"              "advice"           
## [40594] "shall"             "want"              "reward"           
## [40597] "will"              "pray"              "said"             
## [40600] "frodo"             "suspected"         "now"              
## [40603] "fallen"            "rascal"            "thought"          
## [40606] "uncomfortably"     "brought"           "little"           
## [40609] "money"             "hardly"            "satisfy"          
## [40612] "rogue"             "spare"             "can"              
## [40615] "afford"            "answered"          "strider"          
## [40618] "slow"              "smile"             "guessed"          
## [40621] "frodos"            "thoughts"          "just"             
## [40624] "must"              "take"              "along"            
## [40627] "wish"              "leave"             "oh"               
## [40630] "indeed"            "replied"           "frodo"            
## [40633] "surprised"         "much"              "relieved"         
## [40636] "even"              "wanted"            "another"          
## [40639] "companion"         "agree"             "thing"            
## [40642] "knew"              "good"              "deal"             
## [40645] "business"          "excellent"         "exclaimed"        
## [40648] "strider"           "crossing"          "legs"             
## [40651] "sitting"           "back"              "comfortably"      
## [40654] "seem"              "coming"            "senses"           
## [40657] "good"              "much"              "careless"         
## [40660] "far"               "well"              "will"             
## [40663] "tell"              "know"              "leave"            
## [40666] "reward"            "may"               "glad"             
## [40669] "grant"             "heard"             "go"               
## [40672] "said"              "frodo"             "know"             
## [40675] "much"              "many"              "dark"             
## [40678] "things"            "said"              "strider"          
## [40681] "grimly"            "business"          "got"              
## [40684] "went"              "door"              "opened"           
## [40687] "quickly"           "looked"            "shut"             
## [40690] "quietly"           "sat"               "quick"            
## [40693] "ears"              "went"              "lowering"         
## [40696] "voice"             "though"            "disappear"        
## [40699] "hunted"            "many"              "wild"             
## [40702] "wary"              "things"            "can"              
## [40705] "usually"           "avoid"             "seen"             
## [40708] "wish"              "now"               "behind"           
## [40711] "hedge"             "evening"           "road"             
## [40714] "west"              "bree"              "four"             
## [40717] "hobbits"           "came"              "downlands"        
## [40720] "need"              "repeat"            "said"             
## [40723] "old"               "bombadil"          "one"              
## [40726] "another"           "one"               "thing"            
## [40729] "interested"        "please"            "remember"         
## [40732] "said"              "one"               "name"             
## [40735] "baggins"           "must"              "mentioned"        
## [40738] "mr"                "underhill"         "name"             
## [40741] "must"              "given"             "interested"       
## [40744] "much"              "followed"          "slipped"          
## [40747] "gate"              "just"              "behind"           
## [40750] "maybe"             "mr"                "baggins"          
## [40753] "honest"            "reason"            "leaving"          
## [40756] "name"              "behind"            "advise"           
## [40759] "friends"           "careful"           "dont"             
## [40762] "see"               "interest"          "name"             
## [40765] "one"               "bree"              "said"             
## [40768] "frodo"             "angrily"           "still"            
## [40771] "learn"             "interests"         "mr"               
## [40774] "strider"           "may"               "honest"           
## [40777] "reason"            "spying"            "eavesdropping"    
## [40780] "advise"            "explain"           "well"             
## [40783] "answered"          "said"              "strider"          
## [40786] "laughing"          "explanation"       "simple"           
## [40789] "looking"           "hobbit"            "called"           
## [40792] "frodo"             "baggins"           "wanted"           
## [40795] "find"              "quickly"           "learned"          
## [40798] "carrying"          "shire"             "well"             
## [40801] "secret"            "concerned"         "friends"          
## [40804] "now"               "dont"              "mistake"          
## [40807] "cried"             "frodo"             "rose"             
## [40810] "seat"              "sam"               "jumped"           
## [40813] "scowl"             "shall"             "take"             
## [40816] "care"              "secret"            "care"             
## [40819] "needed"            "leaned"            "forward"          
## [40822] "looked"            "watch"             "every"            
## [40825] "shadow"            "said"              "low"              
## [40828] "voice"             "black"             "horsemen"         
## [40831] "passed"            "bree"              "monday"           
## [40834] "one"               "came"              "greenway"         
## [40837] "say"               "another"           "appeared"         
## [40840] "later"             "coming"            "greenway"         
## [40843] "south"             "silence"           "last"             
## [40846] "frodo"             "spoke"             "pippin"           
## [40849] "sam"               "guessed"           "way"              
## [40852] "gatekeeper"        "greeted"           "us"               
## [40855] "said"              "landlord"          "seems"            
## [40858] "heard"             "something"         "press"            
## [40861] "us"                "join"              "company"          
## [40864] "earth"             "behave"            "foolishly"        
## [40867] "stayed"            "quiet"             "better"           
## [40870] "said"              "strider"           "stopped"          
## [40873] "going"             "common"            "room"             
## [40876] "innkeeper"         "let"               "see"              
## [40879] "take"              "message"           "think"            
## [40882] "began"             "frodo"             "dont"             
## [40885] "think"             "harm"              "old"              
## [40888] "butterbur"         "altogether"        "like"             
## [40891] "mysterious"        "vagabonds"         "sort"             
## [40894] "frodo"             "gave"              "puzzled"          
## [40897] "look"              "well"              "rather"           
## [40900] "rascally"          "look"              "said"             
## [40903] "strider"           "curl"              "lip"              
## [40906] "queer"             "gleam"             "eye"              
## [40909] "hope"              "shall"             "get"              
## [40912] "know"              "one"               "another"          
## [40915] "better"            "hope"              "will"             
## [40918] "explain"           "happened"          "end"              
## [40921] "song"              "little"            "prank"            
## [40924] "sheer"             "accident"          "interrupted"      
## [40927] "frodo"             "wonder"            "said"             
## [40930] "strider"           "accident"          "accident"         
## [40933] "made"              "position"          "dangerous"        
## [40936] "hardly"            "already"           "said"             
## [40939] "frodo"             "knew"              "horsemen"         
## [40942] "pursuing"          "now"               "rate"             
## [40945] "seem"              "missed"            "gone"             
## [40948] "away"              "must"              "count"            
## [40951] "said"              "strider"           "sharply"          
## [40954] "will"              "return"            "coming"           
## [40957] "others"            "know"              "number"           
## [40960] "know"              "riders"            "paused"           
## [40963] "eyes"              "cold"              "hard"             
## [40966] "folk"              "bree"              "trusted"          
## [40969] "went"              "bill"              "ferny"            
## [40972] "instance"          "evil"              "name"             
## [40975] "bree"              "land"              "queer"            
## [40978] "folk"              "call"              "house"            
## [40981] "must"              "noticed"           "among"            
## [40984] "company"           "swarthy"           "sneering"         
## [40987] "fellow"            "close"             "one"              
## [40990] "southern"          "strangers"         "slipped"          
## [40993] "together"          "just"              "accident"         
## [40996] "southerners"       "mean"              "well"             
## [40999] "ferny"             "sell"              "anything"         
## [41002] "anybody"           "make"              "mischief"         
## [41005] "amusement"         "will"              "ferny"            
## [41008] "sell"              "accident"          "got"              
## [41011] "said"              "frodo"             "still"            
## [41014] "determined"        "understand"        "striders"         
## [41017] "hints"             "news"              "course"           
## [41020] "answered"          "strider"           "account"          
## [41023] "performance"       "interesting"       "certain"          
## [41026] "people"            "hardly"            "need"             
## [41029] "told"              "real"              "name"             
## [41032] "seems"             "likely"            "will"             
## [41035] "hear"              "night"             "enough"           
## [41038] "can"               "like"              "reward"           
## [41041] "take"              "guide"             "may"              
## [41044] "say"               "know"              "lands"            
## [41047] "shire"             "misty"             "mountains"        
## [41050] "wandered"          "many"              "years"            
## [41053] "older"             "look"              "might"            
## [41056] "prove"             "useful"            "will"             
## [41059] "leave"             "open"              "road"             
## [41062] "tonight"           "horsemen"          "will"             
## [41065] "watch"             "night"             "day"              
## [41068] "may"               "escape"            "bree"             
## [41071] "allowed"           "go"                "forward"          
## [41074] "sun"               "wont"              "go"               
## [41077] "far"               "will"              "come"             
## [41080] "wild"              "dark"              "place"            
## [41083] "help"              "wish"              "find"             
## [41086] "terrible"          "hobbits"           "looked"           
## [41089] "saw"               "surprise"          "face"             
## [41092] "drawn"             "pain"              "hands"            
## [41095] "clenched"          "arms"              "chair"            
## [41098] "room"              "quiet"             "still"            
## [41101] "light"             "seemed"            "grown"            
## [41104] "dim"               "sat"               "unseeing"         
## [41107] "eyes"              "walking"           "distant"          
## [41110] "memory"            "listening"         "sounds"           
## [41113] "night"             "far"               "away"             
## [41116] "cried"             "moment"            "drawing"          
## [41119] "hand"              "across"            "brow"             
## [41122] "perhaps"           "know"              "pursuers"         
## [41125] "fear"              "fear"              "enough"           
## [41128] "yet"               "tomorrow"          "will"             
## [41131] "escape"            "can"               "strider"          
## [41134] "can"               "take"              "paths"            
## [41137] "seldom"            "trodden"           "will"             
## [41140] "heavy"             "silence"           "frodo"            
## [41143] "made"              "answer"            "mind"             
## [41146] "confused"          "doubt"             "fear"             
## [41149] "sam"               "frowned"           "looked"           
## [41152] "master"            "last"              "broke"            
## [41155] "leave"             "mr"                "frodo"            
## [41158] "id"                "say"               "strider"          
## [41161] "warns"             "says"              "take"             
## [41164] "care"              "say"               "yes"              
## [41167] "lets"              "begin"             "comes"            
## [41170] "wild"              "never"             "heard"            
## [41173] "good"              "folk"              "knows"            
## [41176] "something"         "thats"             "plain"            
## [41179] "like"              "reason"            "let"              
## [41182] "go"                "leading"           "us"               
## [41185] "dark"              "place"             "far"              
## [41188] "help"              "puts"              "pippin"           
## [41191] "fidgeted"          "looked"            "uncomfortable"    
## [41194] "strider"           "reply"             "sam"              
## [41197] "turned"            "keen"              "eyes"             
## [41200] "frodo"             "frodo"             "caught"           
## [41203] "glance"            "looked"            "away"             
## [41206] "said"              "slowly"            "dont"             
## [41209] "agree"             "think"             "think"            
## [41212] "really"            "choose"            "look"             
## [41215] "began"             "talk"              "like"             
## [41218] "bree"              "folk"              "voice"            
## [41221] "changed"           "still"             "sam"              
## [41224] "seems"             "right"             "dont"             
## [41227] "see"               "warn"              "us"               
## [41230] "take"              "care"              "yet"              
## [41233] "ask"               "us"                "take"             
## [41236] "trust"             "disguise"          "really"           
## [41239] "know"              "business"          "know"             
## [41242] "lesson"            "caution"           "well"             
## [41245] "learned"           "said"              "strider"          
## [41248] "grim"              "smile"             "caution"          
## [41251] "one"               "thing"             "wavering"         
## [41254] "another"           "will"              "never"            
## [41257] "get"               "rivendell"         "now"              
## [41260] "trust"             "chance"            "must"             
## [41263] "make"              "mind"              "will"             
## [41266] "answer"            "questions"         "will"             
## [41269] "help"              "believe"           "story"            
## [41272] "trust"             "already"           "still"            
## [41275] "moment"            "came"              "knock"            
## [41278] "door"              "mr"                "butterbur"        
## [41281] "arrived"           "candles"           "behind"           
## [41284] "nob"               "cans"              "hot"              
## [41287] "water"             "strider"           "withdrew"         
## [41290] "dark"              "corner"            "ive"              
## [41293] "come"              "bid"               "good"             
## [41296] "night"             "said"              "landlord"         
## [41299] "putting"           "candles"           "table"            
## [41302] "nob"               "take"              "water"            
## [41305] "rooms"             "came"              "shut"             
## [41308] "door"              "like"              "began"            
## [41311] "hesitating"        "looking"           "troubled"         
## [41314] "ive"               "done"              "harm"             
## [41317] "im"                "sorry"             "indeed"           
## [41320] "one"               "thing"             "drives"           
## [41323] "another"           "youll"             "admit"            
## [41326] "im"                "busy"              "man"              
## [41329] "first"             "one"               "thing"            
## [41332] "another"           "week"              "jogged"           
## [41335] "memory"            "saying"            "goes"             
## [41338] "late"              "hope"              "see"              
## [41341] "asked"             "look"              "hobbits"          
## [41344] "shire"             "one"               "name"             
## [41347] "baggins"           "particular"        "got"              
## [41350] "asked"             "frodo"             "ah"               
## [41353] "know"              "best"              "said"             
## [41356] "landlord"          "knowingly"         "wont"             
## [41359] "give"              "away"              "told"             
## [41362] "baggins"           "going"             "name"             
## [41365] "underhill"         "given"             "description"      
## [41368] "fits"              "well"              "enough"           
## [41371] "may"               "say"               "indeed"           
## [41374] "lets"              "said"              "frodo"            
## [41377] "unwisely"          "interrupting"      "stout"            
## [41380] "little"            "fellow"            "red"              
## [41383] "cheeks"            "said"              "mr"               
## [41386] "butterbur"         "solemnly"          "pippin"           
## [41389] "chuckled"          "sam"               "looked"           
## [41392] "indignant"         "wont"              "help"             
## [41395] "much"              "goes"              "hobbits"          
## [41398] "barley"            "says"              "continued"        
## [41401] "mr"                "butterbur"         "glance"           
## [41404] "pippin"            "one"               "taller"           
## [41407] "fairer"            "cleft"             "chin"             
## [41410] "perky"             "chap"              "bright"           
## [41413] "eye"               "begging"           "pardon"           
## [41416] "said"              "said"              "asked"            
## [41419] "frodo"             "eagerly"           "ah"               
## [41422] "gandalf"           "know"              "mean"             
## [41425] "wizard"            "say"               "hes"              
## [41428] "good"              "friend"            "mine"             
## [41431] "whether"           "now"               "dont"             
## [41434] "know"              "hell"              "say"              
## [41437] "see"               "turn"              "ale"              
## [41440] "sour"              "block"             "wood"             
## [41443] "shouldnt"          "wonder"            "hes"              
## [41446] "bit"               "hasty"             "still"            
## [41449] "whats"             "done"              "cant"             
## [41452] "undone"            "well"              "done"             
## [41455] "said"              "frodo"             "getting"          
## [41458] "impatient"         "slow"              "unravelling"      
## [41461] "butterburs"        "thoughts"          "said"             
## [41464] "landlord"          "pausing"           "snapping"         
## [41467] "fingers"           "ah"                "yes"              
## [41470] "old"               "gandalf"           "three"            
## [41473] "months"            "back"              "walked"           
## [41476] "right"             "room"              "without"          
## [41479] "knock"             "barley"            "says"             
## [41482] "im"                "morning"           "will"             
## [41485] "something"         "youve"             "name"             
## [41488] "said"              "im"                "hurry"            
## [41491] "said"              "ive"               "time"             
## [41494] "want"              "message"           "took"             
## [41497] "shire"             "anyone"            "can"              
## [41500] "send"              "trust"             "go"               
## [41503] "can"               "find"              "someone"          
## [41506] "said"              "tomorrow"          "maybe"            
## [41509] "day"               "make"              "tomorrow"         
## [41512] "says"              "gave"              "letter"           
## [41515] "addressed"         "plain"             "enough"           
## [41518] "said"              "mr"                "butterbur"        
## [41521] "producing"         "letter"            "pocket"           
## [41524] "reading"           "address"           "slowly"           
## [41527] "proudly"           "valued"            "reputation"       
## [41530] "lettered"          "man"               "mr"               
## [41533] "frodo"             "baggins"           "bag"              
## [41536] "end"               "hobbiton"          "shire"            
## [41539] "letter"            "gandalf"           "cried"            
## [41542] "frodo"             "ah"                "said"             
## [41545] "mr"                "butterbur"         "right"            
## [41548] "name"              "baggins"           "said"             
## [41551] "frodo"             "better"            "give"             
## [41554] "letter"            "explain"           "never"            
## [41557] "sent"              "thats"             "came"             
## [41560] "tell"              "suppose"           "though"           
## [41563] "youve"             "taken"             "long"             
## [41566] "time"              "come"              "point"            
## [41569] "poor"              "mr"                "butterbur"        
## [41572] "looked"            "troubled"          "youre"            
## [41575] "right"             "master"            "said"             
## [41578] "beg"               "pardon"            "im"               
## [41581] "mortal"            "afraid"            "gandalf"          
## [41584] "will"              "say"               "harm"             
## [41587] "comes"             "didnt"             "keep"             
## [41590] "back"              "purpose"           "put"              
## [41593] "safe"              "couldnt"           "find"             
## [41596] "nobody"            "willing"           "go"               
## [41599] "shire"             "next"              "day"              
## [41602] "day"               "none"              "folk"             
## [41605] "spare"             "one"               "thing"            
## [41608] "another"           "drove"             "mind"             
## [41611] "im"                "busy"              "man"              
## [41614] "ill"               "can"               "set"              
## [41617] "matters"           "right"             "theres"           
## [41620] "help"              "can"               "give"             
## [41623] "youve"             "name"              "leaving"          
## [41626] "letter"            "aside"             "promised"         
## [41629] "gandalf"           "less"              "barley"           
## [41632] "says"              "friend"            "mine"             
## [41635] "shire"             "may"               "coming"           
## [41638] "way"               "long"              "another"          
## [41641] "hell"              "calling"           "underhill"        
## [41644] "mind"              "need"              "ask"              
## [41647] "questions"         "im"                "may"              
## [41650] "trouble"           "may"               "need"             
## [41653] "help"              "whatever"          "can"              
## [41656] "ill"               "grateful"          "says"             
## [41659] "trouble"           "far"               "seemingly"        
## [41662] "mean"              "asked"             "frodo"            
## [41665] "black"             "men"               "said"             
## [41668] "landlord"          "lowering"          "voice"            
## [41671] "theyre"            "looking"           "baggins"          
## [41674] "mean"              "well"              "im"               
## [41677] "hobbit"            "monday"            "dogs"             
## [41680] "yammering"         "geese"             "screaming"        
## [41683] "uncanny"           "called"            "nob"              
## [41686] "came"              "told"              "two"              
## [41689] "black"             "men"               "door"             
## [41692] "asking"            "hobbit"            "called"           
## [41695] "baggins"           "nobs"              "hair"             
## [41698] "stood"             "end"               "bid"              
## [41701] "black"             "fellows"           "slammed"          
## [41704] "door"              "theyve"            "asking"           
## [41707] "question"          "way"               "archet"           
## [41710] "hear"              "ranger"            "strider"          
## [41713] "hes"               "asking"            "questions"        
## [41716] "tried"             "get"               "see"              
## [41719] "youd"              "bite"              "sup"              
## [41722] "said"              "strider"           "suddenly"         
## [41725] "coming"            "forward"           "light"            
## [41728] "much"              "trouble"           "saved"            
## [41731] "let"               "barliman"          "landlord"         
## [41734] "jumped"            "surprise"          "cried"            
## [41737] "youre"             "always"            "popping"          
## [41740] "want"              "now"               "hes"              
## [41743] "leave"             "said"              "frodo"            
## [41746] "came"              "offer"             "help"             
## [41749] "well"              "know"              "business"         
## [41752] "maybe"             "said"              "mr"               
## [41755] "butterbur"         "looking"           "suspiciously"     
## [41758] "strider"           "plight"            "wouldnt"          
## [41761] "take"              "ranger"            "take"             
## [41764] "asked"             "strider"           "fat"              
## [41767] "innkeeper"         "remembers"         "name"             
## [41770] "people"            "shout"             "day"              
## [41773] "stay"              "pony"              "ever"             
## [41776] "go"                "home"              "long"             
## [41779] "road"              "will"              "go"               
## [41782] "keep"              "black"             "men"              
## [41785] "leave"             "bree"              "wouldnt"          
## [41788] "money"             "said"              "mr"               
## [41791] "butterbur"         "looking"           "really"           
## [41794] "scared"            "cant"              "stay"             
## [41797] "quiet"             "bit"               "mr"               
## [41800] "underhill"         "queer"             "goings"           
## [41803] "black"             "men"               "come"             
## [41806] "id"                "like"              "know"             
## [41809] "im"                "sorry"             "cant"             
## [41812] "explain"           "answered"          "frodo"            
## [41815] "tired"             "worried"           "long"             
## [41818] "tale"              "mean"              "help"             
## [41821] "warn"              "will"              "danger"           
## [41824] "long"              "house"             "black"            
## [41827] "riders"            "sure"              "think"            
## [41830] "fear"              "come"              "come"             
## [41833] "mordor"            "said"              "strider"          
## [41836] "low"               "voice"             "mordor"           
## [41839] "barliman"          "means"             "anything"         
## [41842] "save"              "us"                "cried"            
## [41845] "mr"                "butterbur"         "turning"          
## [41848] "pale"              "name"              "evidently"        
## [41851] "known"             "worst"             "news"             
## [41854] "come"              "bree"              "time"             
## [41857] "said"              "frodo"             "still"            
## [41860] "willing"           "help"              "said"             
## [41863] "mr"                "butterbur"         "ever"             
## [41866] "though"            "dont"              "know"             
## [41869] "likes"             "can"               "faltered"         
## [41872] "shadow"            "east"              "said"             
## [41875] "strider"           "quietly"           "much"             
## [41878] "barliman"          "every"             "little"           
## [41881] "helps"             "can"               "let"              
## [41884] "mr"                "underhill"         "stay"             
## [41887] "tonight"           "mr"                "underhill"        
## [41890] "can"               "forget"            "name"             
## [41893] "baggins"           "till"              "far"              
## [41896] "away"              "ill"               "said"             
## [41899] "butterbur"         "theyll"            "find"             
## [41902] "hes"               "without"           "help"             
## [41905] "im"                "afraid"            "pity"             
## [41908] "mr"                "baggins"           "drew"             
## [41911] "attention"         "evening"           "say"              
## [41914] "story"             "mr"                "bilbos"           
## [41917] "going"             "heard"             "tonight"          
## [41920] "bree"              "even"              "nob"              
## [41923] "guessing"          "slow"              "pate"             
## [41926] "others"            "bree"              "quicker"          
## [41929] "uptake"            "well"              "can"              
## [41932] "hope"              "riders"            "wont"             
## [41935] "come"              "back"              "yet"              
## [41938] "said"              "frodo"             "hope"             
## [41941] "indeed"            "said"              "butterbur"        
## [41944] "spooks"            "spooks"            "wont"             
## [41947] "get"               "pony"              "easy"             
## [41950] "dont"              "worry"             "till"             
## [41953] "morning"           "nobll"             "say"              
## [41956] "word"              "black"             "man"              
## [41959] "shall"             "pass"              "doors"            
## [41962] "can"               "stand"             "legs"             
## [41965] "folkll"            "keep"              "watch"            
## [41968] "tonight"           "best"              "get"              
## [41971] "sleep"             "can"               "case"             
## [41974] "must"              "called"            "dawn"             
## [41977] "said"              "frodo"             "must"             
## [41980] "get"               "early"             "possible"         
## [41983] "breakfast"         "six"               "thirty"           
## [41986] "please"            "right"             "ill"              
## [41989] "see"               "orders"            "said"             
## [41992] "landlord"          "good"              "night"            
## [41995] "mr"                "baggins"           "underhill"        
## [41998] "say"               "good"              "night"            
## [42001] "now"               "bless"             "wheres"           
## [42004] "mr"                "brandybuck"        "dont"             
## [42007] "know"              "said"              "frodo"            
## [42010] "sudden"            "anxiety"           "forgotten"        
## [42013] "merry"             "getting"           "late"             
## [42016] "afraid"            "said"              "something"        
## [42019] "going"             "breath"            "air"              
## [42022] "well"              "want"              "looking"          
## [42025] "mistake"           "party"             "might"            
## [42028] "holiday"           "said"              "butterbur"        
## [42031] "must"              "go"                "bar"              
## [42034] "doors"             "quick"             "ill"              
## [42037] "see"               "friend"            "let"              
## [42040] "comes"             "id"                "better"           
## [42043] "send"              "nob"               "look"             
## [42046] "good"              "night"             "last"             
## [42049] "mr"                "butterbur"         "went"             
## [42052] "another"           "doubtful"          "look"             
## [42055] "strider"           "shake"             "head"             
## [42058] "footsteps"         "retreated"         "passage"          
## [42061] "well"              "said"              "strider"          
## [42064] "going"             "open"              "letter"           
## [42067] "frodo"             "looked"            "carefully"        
## [42070] "seal"              "broke"             "seemed"           
## [42073] "certainly"         "gandalfs"          "inside"           
## [42076] "written"           "wizards"           "strong"           
## [42079] "graceful"          "script"            "following"        
## [42082] "message"           "prancing"          "pony"             
## [42085] "bree"              "midyears"          "day"              
## [42088] "shire"             "year"              "dear"             
## [42091] "frodo"             "bad"               "news"             
## [42094] "reached"           "must"              "go"               
## [42097] "better"            "leave"             "bag"              
## [42100] "end"               "soon"              "get"              
## [42103] "shire"             "end"               "july"             
## [42106] "latest"            "will"              "return"           
## [42109] "soon"              "can"               "will"             
## [42112] "follow"            "find"              "gone"             
## [42115] "leave"             "message"           "pass"             
## [42118] "bree"              "can"               "trust"            
## [42121] "landlord"          "butterbur"         "may"              
## [42124] "meet"              "friend"            "mine"             
## [42127] "road"              "man"               "lean"             
## [42130] "dark"              "tall"              "called"           
## [42133] "strider"           "knows"             "business"         
## [42136] "will"              "help"              "make"             
## [42139] "rivendell"         "hope"              "may"              
## [42142] "meet"              "come"              "elrond"           
## [42145] "will"              "advise"            "haste"            
## [42148] "gandalf"           "ps"                "use"              
## [42151] "far"               "reason"            "whatever"         
## [42154] "travel"            "night"             "pps"              
## [42157] "make"              "sure"              "real"             
## [42160] "strider"           "many"              "strange"          
## [42163] "men"               "roads"             "true"             
## [42166] "name"              "aragorn"           "gold"             
## [42169] "glitter"           "wander"            "lost"             
## [42172] "old"               "strong"            "wither"           
## [42175] "deep"              "roots"             "reached"          
## [42178] "frost"             "ashes"             "fire"             
## [42181] "shall"             "woken"             "light"            
## [42184] "shadows"           "shall"             "spring"           
## [42187] "renewed"           "shall"             "blade"            
## [42190] "broken"            "crownless"         "shall"            
## [42193] "king"              "ppps"              "hope"             
## [42196] "butterbur"         "sends"             "promptly"         
## [42199] "worthy"            "man"               "memory"           
## [42202] "like"              "lumber"            "roam"             
## [42205] "thing"             "wanted"            "always"           
## [42208] "buried"            "forgets"           "shall"            
## [42211] "roast"             "fare"              "well"             
## [42214] "frodo"             "read"              "letter"           
## [42217] "passed"            "pippin"            "sam"              
## [42220] "really"            "old"               "butterbur"        
## [42223] "made"              "mess"              "things"           
## [42226] "said"              "deserves"          "roasting"         
## [42229] "got"               "might"             "safe"             
## [42232] "rivendell"         "now"               "can"              
## [42235] "happened"          "gandalf"           "writes"           
## [42238] "going"             "great"             "danger"           
## [42241] "many"              "years"             "said"             
## [42244] "strider"           "frodo"             "turned"           
## [42247] "looked"            "thoughtfully"      "wondering"        
## [42250] "gandalfs"          "second"            "postscript"       
## [42253] "didnt"             "tell"              "gandalfs"         
## [42256] "friend"            "asked"             "saved"            
## [42259] "time"              "believed"          "till"             
## [42262] "now"               "said"              "strider"          
## [42265] "knew"              "nothing"           "letter"           
## [42268] "knew"              "persuade"          "trust"            
## [42271] "without"           "proofs"            "help"             
## [42274] "case"              "intend"            "tell"             
## [42277] "study"             "first"             "make"             
## [42280] "sure"              "enemy"             "set"              
## [42283] "traps"             "now"               "soon"             
## [42286] "made"              "mind"              "ready"            
## [42289] "tell"              "whatever"          "asked"            
## [42292] "must"              "admit"             "added"            
## [42295] "queer"             "laugh"             "hoped"            
## [42298] "take"              "sake"              "hunted"           
## [42301] "man"               "sometimes"         "wearies"          
## [42304] "distrust"          "longs"             "friendship"       
## [42307] "believe"           "looks"             "first"            
## [42310] "sight"             "rate"              "laughed"          
## [42313] "pippin"            "sudden"            "relief"           
## [42316] "reading"           "gandalfs"          "letter"           
## [42319] "handsome"          "handsome"          "say"              
## [42322] "shire"             "daresay"           "shall"            
## [42325] "look"              "much"              "lying"            
## [42328] "days"              "hedges"            "ditches"          
## [42331] "take"              "days"              "weeks"            
## [42334] "years"             "wandering"         "wild"             
## [42337] "make"              "look"              "like"             
## [42340] "strider"           "answered"          "die"              
## [42343] "first"             "unless"            "made"             
## [42346] "sterner"           "stuff"             "look"             
## [42349] "pippin"            "subsided"          "sam"              
## [42352] "daunted"           "still"             "eyed"             
## [42355] "strider"           "dubiously"         "know"             
## [42358] "strider"           "gandalf"           "speaks"           
## [42361] "demanded"          "never"             "mentioned"        
## [42364] "gandalf"           "till"              "letter"           
## [42367] "came"              "might"             "play"             
## [42370] "acting"            "spy"               "can"              
## [42373] "see"               "trying"            "get"              
## [42376] "us"                "go"                "might"            
## [42379] "done"              "real"              "strider"          
## [42382] "took"              "clothes"           "say"              
## [42385] "stout"             "fellow"            "answered"         
## [42388] "strider"           "afraid"            "answer"           
## [42391] "sam"               "gamgee"            "killed"           
## [42394] "real"              "strider"           "kill"             
## [42397] "killed"            "already"           "without"          
## [42400] "much"              "talk"              "ring"             
## [42403] "now"               "stood"             "seemed"           
## [42406] "suddenly"          "grow"              "taller"           
## [42409] "eyes"              "gleamed"           "light"            
## [42412] "keen"              "commanding"        "throwing"         
## [42415] "back"              "cloak"             "laid"             
## [42418] "hand"              "hilt"              "sword"            
## [42421] "hung"              "concealed"         "side"             
## [42424] "dare"              "move"              "sam"              
## [42427] "sat"               "wide"              "mouthed"          
## [42430] "staring"           "dumbly"            "real"             
## [42433] "strider"           "fortunately"       "said"             
## [42436] "looking"           "face"              "softened"         
## [42439] "sudden"            "smile"             "aragorn"          
## [42442] "son"               "arathorn"          "life"             
## [42445] "death"             "can"               "save"             
## [42448] "will"              "long"              "silence"          
## [42451] "last"              "frodo"             "spoke"            
## [42454] "hesitation"        "believed"          "friend"           
## [42457] "letter"            "came"              "said"             
## [42460] "least"             "wished"            "frightened"       
## [42463] "several"           "times"             "tonight"          
## [42466] "never"             "way"               "servants"         
## [42469] "enemy"             "imagine"           "think"            
## [42472] "one"               "spies"             "well"             
## [42475] "seem"              "fairer"            "feel"             
## [42478] "fouler"            "understand"        "see"              
## [42481] "laughed"           "strider"           "look"             
## [42484] "foul"              "feel"              "fair"             
## [42487] "gold"              "glitter"           "wander"           
## [42490] "lost"              "verses"            "apply"            
## [42493] "asked"             "frodo"             "make"             
## [42496] "know"              "gandalfs"          "letter"           
## [42499] "never"             "seen"              "know"             
## [42502] "answered"          "aragorn"           "verses"           
## [42505] "go"                "name"              "drew"             
## [42508] "sword"             "saw"               "blade"            
## [42511] "indeed"            "broken"            "foot"             
## [42514] "hilt"              "much"              "use"              
## [42517] "sam"               "said"              "strider"          
## [42520] "time"              "near"              "shall"            
## [42523] "forged"            "anew"              "sam"              
## [42526] "said"              "nothing"           "well"             
## [42529] "said"              "strider"           "sams"             
## [42532] "permission"        "will"              "call"             
## [42535] "settled"           "strider"           "shall"            
## [42538] "guide"             "shall"             "rough"            
## [42541] "road"              "tomorrow"          "even"             
## [42544] "allowed"           "leave"             "bree"             
## [42547] "unhindered"        "can"               "hardly"           
## [42550] "hope"              "now"               "leave"            
## [42553] "unnoticed"         "shall"             "try"              
## [42556] "get"               "lost"              "soon"             
## [42559] "possible"          "know"              "one"              
## [42562] "two"               "ways"              "bree"             
## [42565] "land"              "main"              "road"             
## [42568] "shake"             "pursuit"           "shall"            
## [42571] "make"              "weathertop"        "weathertop"       
## [42574] "said"              "sam"               "whats"            
## [42577] "hill"              "just"              "north"            
## [42580] "road"              "half"              "way"              
## [42583] "rivendell"         "commands"          "wide"             
## [42586] "view"              "round"             "shall"            
## [42589] "chance"            "look"              "us"               
## [42592] "gandalf"           "will"              "make"             
## [42595] "point"             "follows"           "us"               
## [42598] "weathertop"        "journey"           "will"             
## [42601] "become"            "difficult"         "shall"            
## [42604] "choose"            "various"           "dangers"          
## [42607] "last"              "see"               "gandalf"          
## [42610] "asked"             "frodo"             "know"             
## [42613] "strider"           "looked"            "grave"            
## [42616] "know"              "said"              "came"             
## [42619] "west"              "spring"            "often"            
## [42622] "kept"              "watch"             "borders"          
## [42625] "shire"             "last"              "years"            
## [42628] "busy"              "elsewhere"         "seldom"           
## [42631] "left"              "unguarded"         "last"             
## [42634] "met"               "first"             "may"              
## [42637] "sam"               "ford"              "brandywine"       
## [42640] "told"              "business"          "gone"             
## [42643] "well"              "starting"          "rivendell"        
## [42646] "last"              "week"              "september"        
## [42649] "knew"              "side"              "went"             
## [42652] "away"              "journey"           "proved"           
## [42655] "ill"               "plainly"           "news"             
## [42658] "reached"           "hand"              "help"             
## [42661] "troubled"          "first"             "time"             
## [42664] "since"             "known"             "messages"         
## [42667] "even"              "come"              "returned"         
## [42670] "many"              "days"              "ago"              
## [42673] "heard"             "ill"               "news"             
## [42676] "tidings"           "gone"              "far"              
## [42679] "wide"              "gandalf"           "missing"          
## [42682] "horsemen"          "seen"              "elven"            
## [42685] "folk"              "gildor"            "told"             
## [42688] "later"             "told"              "left"             
## [42691] "home"              "news"              "leaving"          
## [42694] "buckland"          "watching"          "east"             
## [42697] "road"              "anxiously"         "think"            
## [42700] "black"             "riders"            "anything"         
## [42703] "gandalfs"          "absence"           "mean"             
## [42706] "asked"             "frodo"             "know"             
## [42709] "anything"          "else"              "hindered"         
## [42712] "except"            "enemy"             "said"             
## [42715] "strider"           "give"              "hope"             
## [42718] "gandalf"           "greater"           "shire"            
## [42721] "folk"              "know"              "rule"             
## [42724] "can"               "see"               "jokes"            
## [42727] "toys"              "business"          "will"             
## [42730] "greatest"          "task"              "pippin"           
## [42733] "yawned"            "sorry"             "said"             
## [42736] "dead"              "tired"             "spite"            
## [42739] "danger"            "worry"             "must"             
## [42742] "go"                "bed"               "sleep"            
## [42745] "sit"               "silly"             "fellow"           
## [42748] "merry"             "last"              "straw"            
## [42751] "go"                "dark"              "look"             
## [42754] "moment"            "heard"             "door"             
## [42757] "slam"              "feet"              "came"             
## [42760] "running"           "along"             "passage"          
## [42763] "merry"             "came"              "rush"             
## [42766] "followed"          "nob"               "shut"             
## [42769] "door"              "hastily"           "leaned"           
## [42772] "breath"            "stared"            "alarm"            
## [42775] "moment"            "gasped"            "seen"             
## [42778] "frodo"             "seen"              "black"            
## [42781] "riders"            "black"             "riders"           
## [42784] "cried"             "frodo"             "village"          
## [42787] "stayed"            "indoors"           "hour"             
## [42790] "come"              "back"              "went"             
## [42793] "stroll"            "come"              "back"             
## [42796] "standing"          "just"              "outside"          
## [42799] "light"             "lamp"              "looking"          
## [42802] "stars"             "suddenly"          "shivered"         
## [42805] "felt"              "something"         "horrible"         
## [42808] "creeping"          "near"              "son"              
## [42811] "deeper"            "shade"             "among"            
## [42814] "shadows"           "across"            "road"             
## [42817] "just"              "beyond"            "edge"             
## [42820] "lamplight"         "slid"              "away"             
## [42823] "dark"              "without"           "sound"            
## [42826] "horse"             "way"               "go"               
## [42829] "asked"             "strider"           "suddenly"         
## [42832] "sharply"           "merry"             "started"          
## [42835] "noticing"          "stranger"          "first"            
## [42838] "time"              "go"                "said"             
## [42841] "frodo"             "friend"            "gandalfs"         
## [42844] "will"              "explain"           "later"            
## [42847] "seemed"            "make"              "road"             
## [42850] "eastward"          "continued"         "merry"            
## [42853] "tried"             "follow"            "course"           
## [42856] "vanished"          "almost"            "went"             
## [42859] "round"             "corner"            "far"              
## [42862] "last"              "house"             "road"             
## [42865] "strider"           "looked"            "merry"            
## [42868] "wonder"            "stout"             "heart"            
## [42871] "said"              "foolish"           "dont"             
## [42874] "know"              "said"              "merry"            
## [42877] "neither"           "brave"             "silly"            
## [42880] "think"             "hardly"            "help"             
## [42883] "seemed"            "drawn"             "somehow"          
## [42886] "anyway"            "went"              "suddenly"         
## [42889] "heard"             "voices"            "hedge"            
## [42892] "one"               "muttering"         "whispering"       
## [42895] "hissing"           "couldnt"           "hear"             
## [42898] "word"              "said"              "creep"            
## [42901] "closer"            "began"             "tremble"          
## [42904] "felt"              "terrified"         "turned"           
## [42907] "back"              "just"              "going"            
## [42910] "bolt"              "home"              "something"        
## [42913] "came"              "behind"            "fell"             
## [42916] "found"             "sir"               "put"              
## [42919] "nob"               "mr"                "butterbur"        
## [42922] "sent"              "lantern"           "went"             
## [42925] "west"              "gate"              "back"             
## [42928] "towards"           "south"             "gate"             
## [42931] "just"              "nigh"              "bill"             
## [42934] "fernys"            "house"             "thought"          
## [42937] "see"               "something"         "road"             
## [42940] "couldnt"           "swear"             "looked"           
## [42943] "two"               "men"               "stooping"         
## [42946] "something"         "lilting"           "gave"             
## [42949] "shout"             "got"               "spot"             
## [42952] "signs"             "mr"                "brandybuck"       
## [42955] "lying"             "roadside"          "seemed"           
## [42958] "asleep"            "thought"           "fallen"           
## [42961] "deep"              "water"             "says"             
## [42964] "shook"             "queer"             "soon"             
## [42967] "roused"            "got"               "ran"              
## [42970] "back"              "like"              "hare"             
## [42973] "afraid"            "thats"             "true"             
## [42976] "said"              "merry"             "though"           
## [42979] "dont"              "know"              "said"             
## [42982] "ugly"              "dream"             "cant"             
## [42985] "remember"          "went"              "pieces"           
## [42988] "dont"              "know"              "came"             
## [42991] "said"              "strider"           "black"            
## [42994] "breath"            "riders"            "must"             
## [42997] "left"              "horses"            "outside"          
## [43000] "passed"            "back"              "south"            
## [43003] "gate"              "secret"            "will"             
## [43006] "know"              "news"              "now"              
## [43009] "visited"           "bill"              "ferny"            
## [43012] "probably"          "southerner"        "spy"              
## [43015] "well"              "something"         "may"              
## [43018] "happen"            "night"             "leave"            
## [43021] "bree"              "will"              "happen"           
## [43024] "said"              "merry"             "will"             
## [43027] "attack"            "inn"               "think"            
## [43030] "said"              "strider"           "yet"              
## [43033] "case"              "way"               "dark"             
## [43036] "loneliness"        "strongest"         "will"             
## [43039] "openly"            "attack"            "house"            
## [43042] "lights"            "many"              "people"           
## [43045] "desperate"         "long"              "leagues"          
## [43048] "eriador"           "still"             "lie"              
## [43051] "us"                "power"             "terror"           
## [43054] "already"           "bree"              "clutch"           
## [43057] "will"              "drive"             "wretches"         
## [43060] "evil"              "work"              "ferny"            
## [43063] "strangers"         "maybe"             "gatekeeper"       
## [43066] "words"             "harry"             "west"             
## [43069] "gate"              "monday"            "watching"         
## [43072] "white"             "shaking"           "left"             
## [43075] "seem"              "enemies"           "round"            
## [43078] "said"              "frodo"             "stay"             
## [43081] "go"                "rooms"             "sure"             
## [43084] "found"             "hobbit"            "rooms"            
## [43087] "windows"           "looking"           "north"            
## [43090] "close"             "ground"            "will"             
## [43093] "remain"            "together"          "bar"              
## [43096] "window"            "door"              "first"            
## [43099] "nob"               "will"              "fetch"            
## [43102] "luggage"           "strider"           "gone"             
## [43105] "frodo"             "gave"              "merry"            
## [43108] "rapid"             "account"           "happened"         
## [43111] "since"             "supper"            "merry"            
## [43114] "still"             "reading"           "pondering"        
## [43117] "gandalfs"          "letter"            "strider"          
## [43120] "nob"               "returned"          "well"             
## [43123] "masters"           "said"              "nob"              
## [43126] "ive"               "ruffled"           "clothes"          
## [43129] "put"               "bolster"           "middle"           
## [43132] "bed"               "made"              "nice"             
## [43135] "imitation"         "head"              "brown"            
## [43138] "woollen"           "mat"               "mr"               
## [43141] "bag"               "underhill"         "sir"              
## [43144] "added"             "grin"              "pippin"           
## [43147] "laughed"           "life"              "like"             
## [43150] "said"              "will"              "happen"           
## [43153] "penetrated"        "disguise"          "shall"            
## [43156] "see"               "said"              "strider"          
## [43159] "let"               "us"                "hope"             
## [43162] "hold"              "fort"              "till"             
## [43165] "morning"           "good"              "night"            
## [43168] "said"              "nob"               "went"             
## [43171] "take"              "part"              "watch"            
## [43174] "doors"             "bags"              "gear"             
## [43177] "piled"             "parlour"           "floor"            
## [43180] "pushed"            "low"               "chair"            
## [43183] "door"              "shut"              "window"           
## [43186] "peering"           "frodo"             "saw"              
## [43189] "night"             "still"             "clear"            
## [43192] "sickle"            "swinging"          "bright"           
## [43195] "shoulders"         "bree"              "hill"             
## [43198] "closed"            "barred"            "heavy"            
## [43201] "inside"            "shutters"          "drew"             
## [43204] "curtains"          "together"          "strider"          
## [43207] "built"             "fire"              "blew"             
## [43210] "candles"           "hobbits"           "lay"              
## [43213] "blankets"          "feet"              "towards"          
## [43216] "hearth"            "strider"           "settled"          
## [43219] "chair"             "door"              "talked"           
## [43222] "little"            "merry"             "still"            
## [43225] "several"           "questions"         "ask"              
## [43228] "jumped"            "moon"              "chuckled"         
## [43231] "merry"             "rolled"            "blanket"          
## [43234] "ridiculous"        "frodo"             "wish"             
## [43237] "see"               "worthies"          "bree"             
## [43240] "will"              "discussing"        "hundred"          
## [43243] "years"             "hence"             "hope"             
## [43246] "said"              "strider"           "fell"             
## [43249] "silent"            "one"               "one"              
## [43252] "hobbits"           "dropped"           "sleep"            
## [43255] "chapter"           "knife"             "dark"             
## [43258] "prepared"          "sleep"             "inn"              
## [43261] "bree"              "darkness"          "lay"              
## [43264] "buckland"          "mist"              "strayed"          
## [43267] "dells"             "along"             "river"            
## [43270] "bank"              "house"             "crickhollow"      
## [43273] "stood"             "silent"            "fatty"            
## [43276] "bolger"            "opened"            "door"             
## [43279] "cautiously"        "peered"            "feeling"          
## [43282] "fear"              "growing"           "day"              
## [43285] "unable"            "rest"              "go"               
## [43288] "bed"               "brooding"          "threat"           
## [43291] "breathless"        "night"             "air"              
## [43294] "stared"            "gloom"             "black"            
## [43297] "shadow"            "moved"             "trees"            
## [43300] "gate"              "seemed"            "open"             
## [43303] "accord"            "close"             "without"          
## [43306] "sound"             "terror"            "seized"           
## [43309] "shrank"            "back"              "moment"           
## [43312] "stood"             "trembling"         "hall"             
## [43315] "shut"              "locked"            "door"             
## [43318] "night"             "deepened"          "came"             
## [43321] "soft"              "sound"             "horses"           
## [43324] "led"               "stealth"           "along"            
## [43327] "lane"              "outside"           "gate"             
## [43330] "stopped"           "three"             "black"            
## [43333] "figures"           "entered"           "like"             
## [43336] "shades"            "night"             "creeping"         
## [43339] "across"            "ground"            "one"              
## [43342] "went"              "door"              "one"              
## [43345] "corner"            "house"             "either"           
## [43348] "side"              "stood"             "still"            
## [43351] "shadows"           "stones"            "night"            
## [43354] "went"              "slowly"            "house"            
## [43357] "quiet"             "trees"             "seemed"           
## [43360] "waiting"           "breathlessly"      "faint"            
## [43363] "stir"              "leaves"            "cock"             
## [43366] "crowed"            "far"               "away"             
## [43369] "cold"              "hour"              "dawn"             
## [43372] "passing"           "figure"            "door"             
## [43375] "moved"             "dark"              "without"          
## [43378] "moon"              "stars"             "drawn"            
## [43381] "blade"             "gleamed"           "chill"            
## [43384] "light"             "unsheathed"        "blow"             
## [43387] "soft"              "heavy"             "door"             
## [43390] "shuddered"         "open"              "name"             
## [43393] "mordor"            "said"              "voice"            
## [43396] "thin"              "menacing"          "second"           
## [43399] "blow"              "door"              "yielded"          
## [43402] "fell"              "back"              "timbers"          
## [43405] "burst"             "lock"              "broken"           
## [43408] "black"             "figures"           "passed"           
## [43411] "swiftly"           "moment"            "among"            
## [43414] "trees"             "nearby"            "horn"             
## [43417] "rang"              "rent"              "night"            
## [43420] "like"              "fire"              "hill"             
## [43423] "top"               "awake"             "fear"             
## [43426] "fire"              "foes"              "awake"            
## [43429] "fatty"             "bolger"            "idle"             
## [43432] "soon"              "saw"               "dark"             
## [43435] "shapes"            "creep"             "garden"           
## [43438] "knew"              "must"              "run"              
## [43441] "perish"            "run"               "back"             
## [43444] "door"              "garden"            "fields"           
## [43447] "reached"           "nearest"           "house"            
## [43450] "mile"              "away"              "collapsed"        
## [43453] "doorstep"          "crying"            "havent"           
## [43456] "got"               "time"              "anyone"           
## [43459] "make"              "babbling"          "last"             
## [43462] "got"               "idea"              "enemies"          
## [43465] "buckland"          "strange"           "invasion"         
## [43468] "old"               "forest"            "lost"             
## [43471] "time"              "fear"              "fire"             
## [43474] "foes"              "brandybucks"       "blowing"          
## [43477] "horn"              "call"              "buckland"         
## [43480] "sounded"           "hundred"           "years"            
## [43483] "since"             "white"             "wolves"           
## [43486] "came"              "fell"              "winter"           
## [43489] "brandywine"        "frozen"            "awake"            
## [43492] "awake"             "far"               "away"             
## [43495] "answering"         "horns"             "heard"            
## [43498] "alarm"             "spreading"         "black"            
## [43501] "figures"           "fled"              "house"            
## [43504] "one"               "let"               "fall"             
## [43507] "hobbit"            "cloak"             "step"             
## [43510] "ran"               "lane"              "noise"            
## [43513] "hoofs"             "broke"             "gathering"        
## [43516] "gallop"            "went"              "hammering"        
## [43519] "away"              "darkness"          "crickhollow"      
## [43522] "sound"             "horns"             "blowing"          
## [43525] "voices"            "crying"            "feet"             
## [43528] "running"           "black"             "riders"           
## [43531] "rode"              "like"              "gale"             
## [43534] "north"             "gate"              "let"              
## [43537] "little"            "people"            "blow"             
## [43540] "sauron"            "deal"              "later"            
## [43543] "meanwhile"         "another"           "errand"           
## [43546] "knew"              "now"               "house"            
## [43549] "empty"             "ring"              "gone"             
## [43552] "rode"              "guards"            "gate"             
## [43555] "vanished"          "shire"             "early"            
## [43558] "night"             "frodo"             "woke"             
## [43561] "deep"              "sleep"             "suddenly"         
## [43564] "sound"             "presence"          "disturbed"        
## [43567] "saw"               "strider"           "sitting"          
## [43570] "alert"             "chair"             "eyes"             
## [43573] "gleamed"           "light"             "fire"             
## [43576] "tended"            "burning"           "brightly"         
## [43579] "made"              "sign"              "movement"         
## [43582] "frodo"             "soon"              "went"             
## [43585] "sleep"             "dreams"            "troubled"         
## [43588] "noise"             "wind"              "galloping"        
## [43591] "hoofs"             "wind"              "seemed"           
## [43594] "curling"           "round"             "house"            
## [43597] "shaking"           "far"               "heard"            
## [43600] "horn"              "blowing"           "wildly"           
## [43603] "opened"            "eyes"              "heard"            
## [43606] "cock"              "crowing"           "lustily"          
## [43609] "inn"               "yard"              "strider"          
## [43612] "drawn"             "curtains"          "pushed"           
## [43615] "back"              "shutters"          "clang"            
## [43618] "first"             "grey"              "light"            
## [43621] "day"               "room"              "cold"             
## [43624] "air"               "coming"            "open"             
## [43627] "window"            "soon"              "strider"          
## [43630] "roused"            "led"               "way"              
## [43633] "bedrooms"          "saw"               "glad"             
## [43636] "taken"             "advice"            "windows"          
## [43639] "forced"            "open"              "swinging"         
## [43642] "curtains"          "flapping"          "beds"             
## [43645] "tossed"            "bolsters"          "slashed"          
## [43648] "flung"             "upon"              "floor"            
## [43651] "brown"             "mat"               "torn"             
## [43654] "pieces"            "strider"           "immediately"      
## [43657] "went"              "fetch"             "landlord"         
## [43660] "poor"              "mr"                "butterbur"        
## [43663] "looked"            "sleepy"            "frightened"       
## [43666] "hardly"            "closed"            "eyes"             
## [43669] "night"             "said"              "never"            
## [43672] "heard"             "sound"             "never"            
## [43675] "thing"             "happened"          "time"             
## [43678] "cried"             "raising"           "hands"            
## [43681] "horror"            "guests"            "unable"           
## [43684] "sleep"             "beds"              "good"             
## [43687] "bolsters"          "ruined"            "coming"           
## [43690] "dark"              "times"             "said"             
## [43693] "strider"           "present"           "may"              
## [43696] "left"              "peace"             "got"              
## [43699] "rid"               "us"                "will"             
## [43702] "leave"             "never"             "mind"             
## [43705] "breakfast"         "drink"             "bite"             
## [43708] "standing"          "will"              "shall"            
## [43711] "packed"            "minutes"           "mr"               
## [43714] "butterbur"         "hurried"           "see"              
## [43717] "ponies"            "got"               "ready"            
## [43720] "fetch"             "bite"              "soon"             
## [43723] "came"              "back"              "dismay"           
## [43726] "ponies"            "vanished"          "stable"           
## [43729] "doors"             "opened"            "night"            
## [43732] "gone"              "merrys"            "ponies"           
## [43735] "every"             "horse"             "beast"            
## [43738] "place"             "frodo"             "crushed"          
## [43741] "news"              "hope"              "reach"            
## [43744] "rivendell"         "foot"              "pursued"          
## [43747] "mounted"           "enemies"           "might"            
## [43750] "well"              "set"               "moon"             
## [43753] "strider"           "sat"               "silent"           
## [43756] "looking"           "hobbits"           "weighing"         
## [43759] "strength"          "courage"           "ponies"           
## [43762] "help"              "us"                "escape"           
## [43765] "horsemen"          "said"              "last"             
## [43768] "thoughtfully"      "guessed"           "frodo"            
## [43771] "mind"              "go"                "much"             
## [43774] "slower"            "foot"              "roads"            
## [43777] "mean"              "take"              "going"            
## [43780] "walk"              "case"              "food"             
## [43783] "stores"            "trouble"           "count"            
## [43786] "getting"           "anything"          "eat"              
## [43789] "rivendell"         "except"            "take"             
## [43792] "us"                "take"              "plenty"           
## [43795] "spare"             "may"               "delayed"          
## [43798] "forced"            "go"                "round"            
## [43801] "far"               "direct"            "way"              
## [43804] "much"              "prepared"          "carry"            
## [43807] "backs"             "much"              "must"             
## [43810] "said"              "pippin"            "sinking"          
## [43813] "heart"             "trying"            "show"             
## [43816] "tougher"           "looked"            "felt"             
## [43819] "can"               "carry"             "enough"           
## [43822] "two"               "said"              "sam"              
## [43825] "defiantly"         "cant"              "anything"         
## [43828] "done"              "mr"                "butterbur"        
## [43831] "asked"             "frodo"             "cant"             
## [43834] "get"               "couple"            "ponies"           
## [43837] "village"           "even"              "one"              
## [43840] "just"              "baggage"           "dont"             
## [43843] "suppose"           "hire"              "might"            
## [43846] "able"              "buy"               "added"            
## [43849] "doubtfully"        "wondering"         "afford"           
## [43852] "doubt"             "said"              "landlord"         
## [43855] "unhappily"         "two"               "three"            
## [43858] "riding"            "ponies"            "bree"             
## [43861] "stabled"           "yard"              "theyre"           
## [43864] "gone"              "animals"           "horses"           
## [43867] "ponies"            "draught"           "bree"             
## [43870] "wont"              "sale"              "ill"              
## [43873] "can"               "ill"               "rout"             
## [43876] "bob"               "send"              "round"            
## [43879] "soon"              "may"               "yes"              
## [43882] "said"              "strider"           "reluctantly"      
## [43885] "better"            "afraid"            "shall"            
## [43888] "try"               "get"               "one"              
## [43891] "pony"              "least"             "ends"             
## [43894] "hope"              "starting"          "early"            
## [43897] "slipping"          "away"              "quietly"          
## [43900] "might"             "well"              "blown"            
## [43903] "horn"              "announce"          "departure"        
## [43906] "part"              "plan"              "doubt"            
## [43909] "one"               "crumb"             "comfort"          
## [43912] "said"              "merry"             "crumb"            
## [43915] "hope"              "can"               "breakfast"        
## [43918] "wait"              "sit"               "lets"             
## [43921] "get"               "hold"              "nob"              
## [43924] "end"               "three"             "hours"            
## [43927] "delay"             "bob"               "came"             
## [43930] "back"              "report"            "horse"            
## [43933] "pony"              "got"               "love"             
## [43936] "money"             "neighbourhood"     "except"           
## [43939] "one"               "bill"              "ferny"            
## [43942] "one"               "might"             "possibly"         
## [43945] "sell"              "poor"              "old"              
## [43948] "half"              "starved"           "creature"         
## [43951] "said"              "bob"               "wont"             
## [43954] "part"              "less"              "thrice"           
## [43957] "worth"             "seeing"            "youre"            
## [43960] "placed"            "knows"             "bill"             
## [43963] "ferny"             "bill"              "ferny"            
## [43966] "said"              "frodo"             "isnt"             
## [43969] "trick"             "wouldnt"           "beast"            
## [43972] "bolt"              "back"              "stuff"            
## [43975] "help"              "tracking"          "us"               
## [43978] "something"         "wonder"            "said"             
## [43981] "strider"           "imagine"           "animal"           
## [43984] "running"           "home"              "got"              
## [43987] "away"              "fancy"             "afterthought"     
## [43990] "kind"              "master"            "fernys"           
## [43993] "just"              "way"               "increasing"       
## [43996] "profits"           "affair"            "chief"            
## [43999] "danger"            "poor"              "beast"            
## [44002] "probably"          "deaths"            "door"             
## [44005] "seem"              "choice"            "want"             
## [44008] "bill"              "fernys"            "price"            
## [44011] "twelve"            "silver"            "pennies"          
## [44014] "indeed"            "least"             "three"            
## [44017] "times"             "ponys"             "value"            
## [44020] "pans"              "proved"            "bony"             
## [44023] "underfed"          "dispirited"        "animal"           
## [44026] "look"              "like"              "dying"            
## [44029] "just"              "yet"               "mr"               
## [44032] "butterbur"         "paid"              "offered"          
## [44035] "merry"             "another"           "eighteen"         
## [44038] "pence"             "compensation"      "lost"             
## [44041] "animals"           "honest"            "man"              
## [44044] "well"              "things"            "reckoned"         
## [44047] "bree"              "thirty"            "silver"           
## [44050] "pennies"           "sore"              "blow"             
## [44053] "cheated"           "bill"              "ferny"            
## [44056] "made"              "harder"            "bear"             
## [44059] "matter"            "fact"              "came"             
## [44062] "right"             "side"              "end"              
## [44065] "turned"            "later"             "one"              
## [44068] "horse"             "actually"          "stolen"           
## [44071] "others"            "driven"            "bolted"           
## [44074] "terror"            "found"             "wandering"        
## [44077] "different"         "corners"           "bree"             
## [44080] "land"              "merrys"            "ponies"           
## [44083] "escaped"           "altogether"        "eventually"       
## [44086] "good"              "deal"              "sense"            
## [44089] "made"              "way"               "downs"            
## [44092] "search"            "fatty"             "lumpkin"          
## [44095] "came"              "care"              "tom"              
## [44098] "bombadil"          "well"              "news"             
## [44101] "events"            "bree"              "came"             
## [44104] "toms"              "ears"              "sent"             
## [44107] "mr"                "butterbur"         "thus"             
## [44110] "got"               "five"              "good"             
## [44113] "beasts"            "fair"              "price"            
## [44116] "work"              "harder"            "bree"             
## [44119] "bob"               "treated"           "well"             
## [44122] "whole"             "lucky"             "missed"           
## [44125] "dark"              "dangerous"         "journey"          
## [44128] "never"             "came"              "rivendell"        
## [44131] "however"           "meanwhile"         "mr"               
## [44134] "butterbur"         "knew"              "money"            
## [44137] "gone"              "good"              "bad"              
## [44140] "troubles"          "great"             "commotion"        
## [44143] "soon"              "remaining"         "guests"           
## [44146] "astir"             "heard"             "news"             
## [44149] "raid"              "inn"               "southern"         
## [44152] "travellers"        "lost"              "several"          
## [44155] "horses"            "blamed"            "innkeeper"        
## [44158] "loudly"            "became"            "known"            
## [44161] "one"               "number"            "also"             
## [44164] "disappeared"       "night"             "none"             
## [44167] "bill"              "fernys"            "squint"           
## [44170] "eyed"              "companion"         "suspicion"        
## [44173] "fell"              "pick"              "horse"            
## [44176] "thief"             "bring"             "house"            
## [44179] "said"              "butterbur"         "angrily"          
## [44182] "pay"               "damage"            "come"             
## [44185] "shouting"          "go"                "ask"              
## [44188] "ferny"             "handsome"          "friend"           
## [44191] "appeared"          "nobodys"           "friend"           
## [44194] "nobody"            "recollect"         "joined"           
## [44197] "party"             "breakfast"         "hobbits"          
## [44200] "re"                "pack"              "get"              
## [44203] "together"          "supplies"          "longer"           
## [44206] "journey"           "now"               "expecting"        
## [44209] "close"             "ten"               "oclock"           
## [44212] "last"              "got"               "time"             
## [44215] "whole"             "bree"              "buzzing"          
## [44218] "excitement"        "frodos"            "vanishing"        
## [44221] "trick"             "appearance"        "black"            
## [44224] "horsemen"          "robbing"           "stables"          
## [44227] "least"             "news"              "strider"          
## [44230] "ranger"            "joined"            "mysterious"       
## [44233] "hobbits"           "made"              "tale"             
## [44236] "last"              "many"              "uneventful"       
## [44239] "years"             "inhabitants"       "bree"             
## [44242] "staddle"           "many"              "even"             
## [44245] "combe"             "archet"            "crowded"          
## [44248] "road"              "see"               "travellers"       
## [44251] "start"             "guests"            "inn"              
## [44254] "doors"             "hanging"           "windows"          
## [44257] "strider"           "changed"           "mind"             
## [44260] "decided"           "leave"             "bree"             
## [44263] "main"              "road"              "attempt"          
## [44266] "set"               "across"            "country"          
## [44269] "make"              "matters"           "worse"            
## [44272] "half"              "inhabitants"       "follow"           
## [44275] "see"               "prevent"           "trespassing"      
## [44278] "said"              "farewell"          "nob"              
## [44281] "bob"               "took"              "leave"            
## [44284] "mr"                "butterbur"         "many"             
## [44287] "thanks"            "hope"              "shall"            
## [44290] "meet"              "day"               "things"           
## [44293] "merry"             "said"              "frodo"            
## [44296] "like"              "nothing"           "better"           
## [44299] "stay"              "house"             "peace"            
## [44302] "tramped"           "anxious"           "downhearted"      
## [44305] "eyes"              "crowd"             "faces"            
## [44308] "friendly"          "words"             "shouted"          
## [44311] "strider"           "seemed"            "held"             
## [44314] "awe"               "bree"              "landers"          
## [44317] "stared"            "shut"              "mouths"           
## [44320] "drew"              "away"              "walked"           
## [44323] "front"             "frodo"             "next"             
## [44326] "came"              "merry"             "pippin"           
## [44329] "last"              "came"              "sam"              
## [44332] "leading"           "pony"              "laden"            
## [44335] "much"              "baggage"           "heart"            
## [44338] "give"              "already"           "looked"           
## [44341] "less"              "dejected"          "approved"         
## [44344] "change"            "fortunes"          "sam"              
## [44347] "chewing"           "apple"             "thoughtfully"     
## [44350] "pocket"            "full"              "parting"          
## [44353] "present"           "nob"               "bob"              
## [44356] "apples"            "walking"           "pipe"             
## [44359] "sitting"           "said"              "reckon"           
## [44362] "ill"               "miss"              "long"             
## [44365] "hobbits"           "took"              "notice"           
## [44368] "inquisitive"       "heads"             "peeped"           
## [44371] "doors"             "popped"            "walls"            
## [44374] "fences"            "passed"            "drew"             
## [44377] "near"              "gate"              "frodo"            
## [44380] "saw"               "dark"              "ill"              
## [44383] "kept"              "house"             "behind"           
## [44386] "thick"             "hedge"             "last"             
## [44389] "house"             "village"           "one"              
## [44392] "windows"           "caught"            "glimpse"          
## [44395] "sallow"            "face"              "sly"              
## [44398] "slanting"          "eyes"              "vanished"         
## [44401] "thats"             "southerner"        "hiding"           
## [44404] "thought"           "looks"             "half"             
## [44407] "like"              "goblin"            "hedge"            
## [44410] "another"           "man"               "staring"          
## [44413] "boldly"            "heavy"             "black"            
## [44416] "brows"             "dark"              "scornful"         
## [44419] "eyes"              "large"             "mouth"            
## [44422] "curled"            "sneer"             "smoking"          
## [44425] "short"             "black"             "pipe"             
## [44428] "approached"        "took"              "mouth"            
## [44431] "spat"              "morning"           "longshanks"       
## [44434] "said"              "early"             "found"            
## [44437] "friends"           "last"              "strider"          
## [44440] "nodded"            "answer"            "morning"          
## [44443] "little"            "friends"           "said"             
## [44446] "others"            "suppose"           "know"             
## [44449] "youve"             "taken"             "thats"            
## [44452] "stick"             "naught"            "strider"          
## [44455] "though"            "ive"               "heard"            
## [44458] "names"             "pretty"            "watch"            
## [44461] "tonight"           "sammie"            "dont"             
## [44464] "go"                "ill"               "treating"         
## [44467] "poor"              "old"               "pony"             
## [44470] "pah"               "spat"              "sam"              
## [44473] "turned"            "quickly"           "ferny"            
## [44476] "said"              "put"               "ugly"             
## [44479] "face"              "sight"             "will"             
## [44482] "get"               "hurt"              "sudden"           
## [44485] "flick"             "quick"             "lightning"        
## [44488] "apple"             "left"              "hand"             
## [44491] "hit"               "bill"              "square"           
## [44494] "nose"              "ducked"            "late"             
## [44497] "curses"            "came"              "behind"           
## [44500] "hedge"             "waste"             "good"             
## [44503] "apple"             "said"              "sam"              
## [44506] "regretfully"       "strode"            "last"             
## [44509] "left"              "village"           "behind"           
## [44512] "escort"            "children"          "stragglers"       
## [44515] "followed"          "got"               "tired"            
## [44518] "turned"            "back"              "south"            
## [44521] "gate"              "passing"           "kept"             
## [44524] "along"             "road"              "miles"            
## [44527] "bent"              "left"              "curving"          
## [44530] "back"              "eastward"          "line"             
## [44533] "rounded"           "feet"              "bree"             
## [44536] "hill"              "began"             "run"              
## [44539] "swiftly"           "downwards"         "wooded"           
## [44542] "country"           "left"              "see"              
## [44545] "houses"            "hobbit"            "holes"            
## [44548] "staddle"           "gentler"           "south"            
## [44551] "eastern"           "slopes"            "hill"             
## [44554] "deep"              "hollow"            "away"             
## [44557] "north"             "road"              "wisps"            
## [44560] "rising"            "smoke"             "showed"           
## [44563] "combe"             "lay"               "archet"           
## [44566] "hidden"            "trees"             "beyond"           
## [44569] "road"              "run"               "way"              
## [44572] "left"              "bree"              "hill"             
## [44575] "standing"          "tall"              "brown"            
## [44578] "behind"            "came"              "narrow"           
## [44581] "track"             "led"               "towards"          
## [44584] "north"             "leave"             "open"             
## [44587] "take"              "cover"             "said"             
## [44590] "strider"           "short"             "cut"              
## [44593] "hope"              "said"              "pippin"           
## [44596] "last"              "short"             "cut"              
## [44599] "woods"             "nearly"            "ended"            
## [44602] "disaster"          "ah"                "got"              
## [44605] "laughed"           "strider"           "cuts"             
## [44608] "short"             "long"              "dont"             
## [44611] "go"                "wrong"             "took"             
## [44614] "look"              "road"              "one"              
## [44617] "sight"             "led"               "way"              
## [44620] "quickly"           "towards"           "wooded"           
## [44623] "valley"            "plan"              "far"              
## [44626] "understand"        "without"           "knowing"          
## [44629] "country"           "go"                "towards"          
## [44632] "archet"            "first"             "bear"             
## [44635] "right"             "pass"              "east"             
## [44638] "steer"             "straight"          "wild"             
## [44641] "lands"             "weathertop"        "hill"             
## [44644] "way"               "went"              "well"             
## [44647] "cut"               "great"             "loop"             
## [44650] "road"              "bent"              "southwards"       
## [44653] "avoid"             "midgewater"        "marshes"          
## [44656] "course"            "pass"              "marshes"          
## [44659] "striders"          "description"       "encouraging"      
## [44662] "however"           "meanwhile"         "walking"          
## [44665] "unpleasant"        "indeed"            "disturbing"       
## [44668] "events"            "night"             "enjoyed"          
## [44671] "pan"               "journey"           "better"           
## [44674] "time"              "sun"               "shining"          
## [44677] "clear"             "hot"               "woods"            
## [44680] "valley"            "still"             "leafy"            
## [44683] "full"              "colour"            "seemed"           
## [44686] "peaceful"          "wholesome"         "strider"          
## [44689] "guided"            "confidently"       "among"            
## [44692] "many"              "crossing"          "paths"            
## [44695] "although"          "left"              "soon"             
## [44698] "loss"              "taking"            "wandering"        
## [44701] "course"            "many"              "turns"            
## [44704] "doublings"         "put"               "pursuit"          
## [44707] "bill"              "ferny"             "will"             
## [44710] "watched"           "left"              "road"             
## [44713] "certain"           "said"              "though"           
## [44716] "dont"              "think"             "will"             
## [44719] "follow"            "us"                "knows"            
## [44722] "land"              "round"             "well"             
## [44725] "enough"            "knows"             "match"            
## [44728] "wood"              "may"               "tell"             
## [44731] "others"            "afraid"            "dont"             
## [44734] "suppose"           "far"               "away"             
## [44737] "think"             "made"              "archet"           
## [44740] "much"              "better"            "whether"          
## [44743] "striders"          "skill"             "reason"           
## [44746] "saw"               "sign"              "heard"            
## [44749] "sound"             "living"            "thing"            
## [44752] "day"               "neither"           "two"              
## [44755] "footed"            "except"            "birds"            
## [44758] "four"              "footed"            "except"           
## [44761] "one"               "fox"               "squirrels"        
## [44764] "next"              "day"               "began"            
## [44767] "steer"             "steady"            "course"           
## [44770] "eastwards"         "still"             "quiet"            
## [44773] "peaceful"          "third"             "day"              
## [44776] "bree"              "came"              "chetwood"         
## [44779] "land"              "falling"           "steadily"         
## [44782] "ever"              "since"             "turned"           
## [44785] "aside"             "road"              "now"              
## [44788] "entered"           "wide"              "flat"             
## [44791] "expanse"           "country"           "much"             
## [44794] "difficult"         "manage"            "far"              
## [44797] "beyond"            "borders"           "bree"             
## [44800] "land"              "pathless"          "wilderness"       
## [44803] "drawing"           "near"              "midge"            
## [44806] "water"             "marshes"           "ground"           
## [44809] "now"               "became"            "damp"             
## [44812] "places"            "boggy"             "came"             
## [44815] "upon"              "pools"             "wide"             
## [44818] "stretches"         "reeds"             "rushes"           
## [44821] "filled"            "warbling"          "little"           
## [44824] "hidden"            "birds"             "pick"             
## [44827] "way"               "carefully"         "keep"             
## [44830] "dry"               "footed"            "proper"           
## [44833] "course"            "first"             "made"             
## [44836] "fan"               "progress"          "went"             
## [44839] "passage"           "became"            "slower"           
## [44842] "dangerous"         "marshes"           "bewildering"      
## [44845] "treacherous"       "permanent"         "trail"            
## [44848] "even"              "rangers"           "find"             
## [44851] "shifting"          "quagmires"         "flies"            
## [44854] "began"             "torment"           "air"              
## [44857] "full"              "clouds"            "tiny"             
## [44860] "midges"            "crept"             "sleeves"          
## [44863] "breeches"          "hair"              "eaten"            
## [44866] "alive"             "cried"             "pippin"           
## [44869] "midgewater"        "midges"            "water"            
## [44872] "live"              "cant"              "get"              
## [44875] "hobbit"            "asked"             "sam"              
## [44878] "scratching"        "neck"              "spent"            
## [44881] "miserable"         "day"               "lonely"           
## [44884] "unpleasant"        "country"           "camping"          
## [44887] "place"             "damp"              "cold"             
## [44890] "uncomfortable"     "biting"            "insects"          
## [44893] "let"               "sleep"             "also"             
## [44896] "abominable"        "creatures"         "haunting"         
## [44899] "reeds"             "tussocks"          "sound"            
## [44902] "evil"              "relatives"         "cricket"          
## [44905] "thousands"         "squeaked"          "round"            
## [44908] "neek"              "breek"             "breek"            
## [44911] "neek"              "unceasingly"       "night"            
## [44914] "hobbits"           "nearly"            "frantic"          
## [44917] "next"              "day"               "fourth"           
## [44920] "little"            "better"            "night"            
## [44923] "almost"            "comfortless"       "though"           
## [44926] "neekerbreekers"    "sam"               "called"           
## [44929] "left"              "behind"            "midges"           
## [44932] "still"             "pursued"           "frodo"            
## [44935] "lay"               "tired"             "unable"           
## [44938] "close"             "eyes"              "seemed"           
## [44941] "far"               "away"              "came"             
## [44944] "light"             "eastern"           "sky"              
## [44947] "flashed"           "faded"             "many"             
## [44950] "times"             "dawn"              "still"            
## [44953] "hours"             ""                  ""                 
## [44956] "light"             "said"              "strider"          
## [44959] "risen"             "standing"          "gazing"           
## [44962] "ahead"             "night"             "know"             
## [44965] "strider"           "answered"          "distant"          
## [44968] "make"              "like"              "lightning"        
## [44971] "leaps"             "hill"              "tops"             
## [44974] "frodo"             "lay"               "long"             
## [44977] "still"             "see"               "white"            
## [44980] "flashes"           "tall"              "dark"             
## [44983] "figure"            "strider"           "standing"         
## [44986] "silent"            "watchful"          "last"             
## [44989] "passed"            "uneasy"            "sleep"            
## [44992] "gone"              "far"               "fifth"            
## [44995] "day"               "left"              "last"             
## [44998] "straggling"        "pools"             "reed"             
## [45001] "beds"              "marshes"           "behind"           
## [45004] "land"              "began"             "steadily"         
## [45007] "rise"              "away"              "distance"         
## [45010] "eastward"          "now"               "see"              
## [45013] "line"              "hills"             "highest"          
## [45016] "right"             "line"              "little"           
## [45019] "separated"         "others"            "conical"          
## [45022] "top"               "slightly"          "flattened"        
## [45025] "summit"            "weathertop"        "said"             
## [45028] "strider"           "old"               "road"             
## [45031] "left"              "far"               "away"             
## [45034] "right"             "runs"              "south"            
## [45037] "passes"            "far"               "foot"             
## [45040] "might"             "reach"             "noon"             
## [45043] "tomorrow"          "go"                "straight"         
## [45046] "towards"           "suppose"           "better"           
## [45049] "mean"              "asked"             "frodo"            
## [45052] "mean"              "get"               "certain"          
## [45055] "shall"             "find"              "close"            
## [45058] "road"              "surely"            "hoping"           
## [45061] "find"              "gandalf"           "yes"              
## [45064] "hope"              "faint"             "comes"            
## [45067] "way"               "may"               "pass"             
## [45070] "bree"              "may"               "know"             
## [45073] "anyway"            "unless"            "luck"             
## [45076] "arrive"            "almost"            "together"         
## [45079] "shall"             "miss"              "one"              
## [45082] "another"           "will"              "safe"             
## [45085] "us"                "wait"              "long"             
## [45088] "riders"            "fail"              "find"             
## [45091] "us"                "wilderness"        "likely"           
## [45094] "make"              "weathertop"        "commands"         
## [45097] "wide"              "view"              "round"            
## [45100] "indeed"            "many"              "birds"            
## [45103] "beasts"            "country"           "see"              
## [45106] "us"                "stand"             "hill"             
## [45109] "top"               "birds"             "trusted"          
## [45112] "spies"             "evil"              "hobbits"          
## [45115] "looked"            "anxiously"         "distant"          
## [45118] "hills"             "sam"               "looked"           
## [45121] "pale"              "sky"               "fearing"          
## [45124] "see"               "hawks"             "eagles"           
## [45127] "hovering"          "bright"            "unfriendly"       
## [45130] "eyes"              "make"              "feel"             
## [45133] "uncomfortable"     "lonesome"          "strider"          
## [45136] "said"              "advise"            "us"               
## [45139] "asked"             "frodo"             "think"            
## [45142] "answered"          "strider"           "slowly"           
## [45145] "quite"             "sure"              "think"            
## [45148] "best"              "thing"             "go"               
## [45151] "straight"          "eastward"          "can"              
## [45154] "make"              "line"              "hills"            
## [45157] "weathertop"        "can"               "strike"           
## [45160] "path"              "know"              "runs"             
## [45163] "feet"              "will"              "bring"            
## [45166] "us"                "weathertop"        "north"            
## [45169] "less"              "openly"            "shall"            
## [45172] "see"               "shall"             "see"              
## [45175] "day"               "plodded"           "along"            
## [45178] "cold"              "early"             "evening"          
## [45181] "came"              "land"              "became"           
## [45184] "drier"             "barren"            "mists"            
## [45187] "vapours"           "lay"               "behind"           
## [45190] "marshes"           "melancholy"        "birds"            
## [45193] "piping"            "wailing"           "round"            
## [45196] "red"               "sun"               "sank"             
## [45199] "slowly"            "western"           "shadows"          
## [45202] "empty"             "silence"           "fell"             
## [45205] "hobbits"           "thought"           "soft"             
## [45208] "light"             "sunset"            "glancing"         
## [45211] "cheerful"          "windows"           "bag"              
## [45214] "end"               "far"               "away"             
## [45217] "days"              "end"               "came"             
## [45220] "stream"            "wandered"          "hills"            
## [45223] "lose"              "stagnant"          "marshland"        
## [45226] "went"              "along"             "banks"            
## [45229] "light"             "lasted"            "already"          
## [45232] "night"             "last"              "halted"           
## [45235] "made"              "camp"              "stunted"          
## [45238] "alder"             "trees"             "shores"           
## [45241] "stream"            "ahead"             "loomed"           
## [45244] "now"               "dusky"             "sky"              
## [45247] "bleak"             "treeless"          "backs"            
## [45250] "hills"             "night"             "set"              
## [45253] "watch"             "strider"           "seemed"           
## [45256] "sleep"             "moon"              "waxing"           
## [45259] "early"             "night"             "hours"            
## [45262] "cold"              "grey"              "light"            
## [45265] "lay"               "land"              "next"             
## [45268] "morning"           "set"               "soon"             
## [45271] "sunrise"           "frost"             "air"              
## [45274] "sky"               "pale"              "clear"            
## [45277] "blue"              "hobbits"           "felt"             
## [45280] "refreshed"         "night"             "unbroken"         
## [45283] "sleep"             "already"           "getting"          
## [45286] "used"              "much"              "walking"          
## [45289] "short"             "commons"           "shorter"          
## [45292] "rate"              "shire"             "thought"          
## [45295] "barely"            "enough"            "keep"             
## [45298] "legs"              "pippin"            "declared"         
## [45301] "frodo"             "looking"           "twice"            
## [45304] "hobbit"            "odd"               "said"             
## [45307] "frodo"             "tightening"        "belt"             
## [45310] "considering"       "actually"          "good"             
## [45313] "deal"              "less"              "hope"             
## [45316] "thinning"          "process"           "will"             
## [45319] "go"                "indefinitely"      "shall"            
## [45322] "become"            "wraith"            "speak"            
## [45325] "things"            "said"              "strider"          
## [45328] "quickly"           "surprising"        "earnestness"      
## [45331] "hills"             "drew"              "nearer"           
## [45334] "made"              "undulating"        "ridge"            
## [45337] "often"             "rising"            "almost"           
## [45340] "thousand"          "feet"              "falling"          
## [45343] "low"               "clefts"            "passes"           
## [45346] "leading"           "eastern"           "land"             
## [45349] "beyond"            "along"             "crest"            
## [45352] "ridge"             "hobbits"           "see"              
## [45355] "looked"            "remains"           "green"            
## [45358] "grown"             "walls"             "dikes"            
## [45361] "clefts"            "still"             "stood"            
## [45364] "ruins"             "old"               "works"            
## [45367] "stone"             "night"             "reached"          
## [45370] "feet"              "westward"          "slopes"           
## [45373] "camped"            "night"             "fifth"            
## [45376] "october"           "six"               "days"             
## [45379] "bree"              "morning"           "found"            
## [45382] "first"             "time"              "since"            
## [45385] "left"              "chetwood"          "track"            
## [45388] "plain"             "see"               "turned"           
## [45391] "right"             "followed"          "southwards"       
## [45394] "ran"               "cunningly"         "taking"           
## [45397] "line"              "seemed"            "chosen"           
## [45400] "keep"              "much"              "hidden"           
## [45403] "possible"          "view"              "hill"             
## [45406] "tops"              "flats"             "west"             
## [45409] "dived"             "dells"             "hugged"           
## [45412] "steep"             "banks"             "passed"           
## [45415] "flatter"           "open"              "ground"           
## [45418] "either"            "side"              "lines"            
## [45421] "large"             "boulders"          "hewn"             
## [45424] "stones"            "screened"          "travellers"       
## [45427] "almost"            "like"              "hedge"            
## [45430] "wonder"            "made"              "path"             
## [45433] "said"              "merry"             "walked"           
## [45436] "along"             "one"               "avenues"          
## [45439] "stones"            "unusually"         "large"            
## [45442] "closely"           "set"               "sure"             
## [45445] "like"              "well"              "rather"           
## [45448] "barrow"            "wightish"          "look"             
## [45451] "barrow"            "weathertop"        "barrow"           
## [45454] "weathertop"        "hills"             "answered"         
## [45457] "strider"           "men"               "west"             
## [45460] "live"              "though"            "latter"           
## [45463] "days"              "defended"          "hills"            
## [45466] "evil"              "came"              "angmar"           
## [45469] "path"              "made"              "serve"            
## [45472] "forts"             "along"             "walls"            
## [45475] "long"              "first"             "days"             
## [45478] "north"             "kingdom"           "built"            
## [45481] "great"             "watch"             "tower"            
## [45484] "weathertop"        "amon"              "sûl"              
## [45487] "called"            "burned"            "broken"           
## [45490] "nothing"           "remains"           "now"              
## [45493] "tumbled"           "ring"              "like"             
## [45496] "rough"             "crown"             "old"              
## [45499] "hills"             "head"              "yet"              
## [45502] "tall"              "fair"              "told"             
## [45505] "elendil"           "stood"             "watching"         
## [45508] "coming"            "gil"               "galad"            
## [45511] "west"              "days"              "last"             
## [45514] "alliance"          "hobbits"           "gazed"            
## [45517] "strider"           "seemed"            "learned"          
## [45520] "old"               "lore"              "well"             
## [45523] "ways"              "wild"              "gil"              
## [45526] "galad"             "asked"             "merry"            
## [45529] "strider"           "answer"            "seemed"           
## [45532] "lost"              "thought"           "suddenly"         
## [45535] "low"               "voice"             "murmured"         
## [45538] "gil"               "galad"             "elven"            
## [45541] "king"              "harpers"           "sadly"            
## [45544] "sing"              "last"              "whose"            
## [45547] "realm"             "fair"              "free"             
## [45550] "mountains"         "sea"               "sword"            
## [45553] "long"              "lance"             "keen"             
## [45556] "shining"           "helm"              "afar"             
## [45559] "seen"              "countless"         "stars"            
## [45562] "heavens"           "field"             "mirrored"         
## [45565] "silver"            "shield"            "long"             
## [45568] "ago"               "rode"              "away"             
## [45571] "dwelleth"          "none"              "can"              
## [45574] "say"               "darkness"          "fell"             
## [45577] "star"              "mordor"            "shadows"          
## [45580] "others"            "turned"            "amazement"        
## [45583] "voice"             "sams"              "dont"             
## [45586] "stop"              "said"              "merry"            
## [45589] "thats"             "know"              "stammered"        
## [45592] "sam"               "blushing"          "learned"          
## [45595] "mr"                "bilbo"             "lad"              
## [45598] "used"              "tell"              "tales"            
## [45601] "like"              "knowing"           "always"           
## [45604] "one"               "hearing"           "elves"            
## [45607] "mr"                "bilbo"             "taught"           
## [45610] "letters"           "mighty"            "book"             
## [45613] "learned"           "dear"              "old"              
## [45616] "mr"                "bilbo"             "wrote"            
## [45619] "poetry"            "wrote"             "just"             
## [45622] "said"              "make"              "said"             
## [45625] "strider"           "pan"               "lay"              
## [45628] "called"            "fall"              "gil"              
## [45631] "galad"             "ancient"           "tongue"           
## [45634] "bilbo"             "must"              "translated"       
## [45637] "never"             "knew"              "lot"              
## [45640] "said"              "sam"               "mordor"           
## [45643] "didnt"             "learn"             "part"             
## [45646] "gave"              "shivers"           "never"            
## [45649] "thought"           "going"             "way"              
## [45652] "going"             "mordor"            "cried"            
## [45655] "pippin"            "hope"              "wont"             
## [45658] "come"              "speak"             "name"             
## [45661] "loudly"            "said"              "strider"          
## [45664] "already"           "mid"               "day"              
## [45667] "drew"              "near"              "southern"         
## [45670] "end"               "path"              "saw"              
## [45673] "pale"              "clear"             "light"            
## [45676] "october"           "sun"               "grey"             
## [45679] "green"             "bank"              "leading"          
## [45682] "like"              "bridge"            "northward"        
## [45685] "slope"             "hill"              "decided"          
## [45688] "make"              "top"               "daylight"         
## [45691] "broad"             "concealment"       "longer"           
## [45694] "possible"          "hope"              "enemy"            
## [45697] "spy"               "observing"         "nothing"          
## [45700] "seen"              "moving"            "hill"             
## [45703] "gandalf"           "anywhere"          "sign"             
## [45706] "western"           "flank"             "weathertop"       
## [45709] "found"             "sheltered"         "hollow"           
## [45712] "bottom"            "bowl"              "shaped"           
## [45715] "dell"              "grassy"            "sides"            
## [45718] "left"              "sam"               "pippin"           
## [45721] "pony"              "packs"             "luggage"          
## [45724] "three"             "went"              "half"             
## [45727] "hours"             "plodding"          "climb"            
## [45730] "strider"           "reached"           "crown"            
## [45733] "hill"              "frodo"             "merry"            
## [45736] "followed"          "tired"             "breathless"       
## [45739] "last"              "slope"             "steep"            
## [45742] "rocky"             "top"               "found"            
## [45745] "strider"           "said"              "wide"             
## [45748] "ring"              "ancient"           "stonework"        
## [45751] "now"               "crumbling"         "covered"          
## [45754] "age"               "long"              "grass"            
## [45757] "centre"            "cairn"             "broken"           
## [45760] "stones"            "piled"             "blackened"        
## [45763] "fire"              "turf"              "burned"           
## [45766] "roots"             "within"            "ring"             
## [45769] "grass"             "scorched"          "shrivelled"       
## [45772] "flames"            "swept"             "hill"             
## [45775] "top"               "sign"              "living"           
## [45778] "thing"             "standing"          "upon"             
## [45781] "rim"               "ruined"            "circle"           
## [45784] "saw"               "round"             "wide"             
## [45787] "prospect"          "pan"               "lands"            
## [45790] "empty"             "featureless"       "except"           
## [45793] "patches"           "woodland"          "away"             
## [45796] "south"             "beyond"            "caught"           
## [45799] "glint"             "distant"           "water"            
## [45802] "beneath"           "southern"          "side"             
## [45805] "ran"               "like"              "ribbon"           
## [45808] "old"               "road"              "coming"           
## [45811] "west"              "winding"           "faded"            
## [45814] "behind"            "ridge"             "dark"             
## [45817] "land"              "east"              "nothing"          
## [45820] "moving"            "following"         "line"             
## [45823] "eastward"          "eyes"              "saw"              
## [45826] "mountains"         "nearer"            "foothills"        
## [45829] "brown"             "sombre"            "behind"           
## [45832] "stood"             "taller"            "shapes"           
## [45835] "grey"              "behind"            "high"             
## [45838] "white"             "peaks"             "glimmering"       
## [45841] "among"             "clouds"            "well"             
## [45844] "said"              "merry"             "cheerless"        
## [45847] "uninviting"        "looks"             "water"            
## [45850] "shelter"           "sign"              "gandalf"          
## [45853] "dont"              "blame"             "waiting"          
## [45856] "ever"              "came"              "wonder"           
## [45859] "said"              "strider"           "looking"          
## [45862] "round"             "thoughtfully"      "even"             
## [45865] "day"               "two"               "behind"           
## [45868] "us"                "bree"              "arrived"          
## [45871] "first"             "can"               "ride"             
## [45874] "swiftly"           "need"              "presses"          
## [45877] "suddenly"          "stooped"           "looked"           
## [45880] "stone"             "top"               "cairn"            
## [45883] "flatter"           "others"            "whiter"           
## [45886] "escaped"           "fire"              "picked"           
## [45889] "examined"          "turning"           "fingers"          
## [45892] "handled"           "recently"          "said"             
## [45895] "think"             "marks"             "flat"             
## [45898] "side"              "frodo"             "saw"              
## [45901] "scratches"         "seems"             "stroke"           
## [45904] "dot"               "three"             "strokes"          
## [45907] "said"              "stroke"            "left"             
## [45910] "might"             "rune"              "thin"             
## [45913] "branches"          "said"              "strider"          
## [45916] "might"             "sign"              "left"             
## [45919] "gandalf"           "though"            "one"              
## [45922] "sure"              "scratches"         "fine"             
## [45925] "certainly"         "look"              "fresh"            
## [45928] "marks"             "might"             "mean"             
## [45931] "something"         "quite"             "different"        
## [45934] "nothing"           "us"                "rangers"          
## [45937] "use"               "runes"             "come"             
## [45940] "sometimes"         "mean"              "even"             
## [45943] "gandalf"           "made"              "asked"            
## [45946] "merry"             "say"               "answered"         
## [45949] "strider"           "stood"             "sign"             
## [45952] "gandalf"           "october"           "third"            
## [45955] "three"             "days"              "ago"              
## [45958] "now"               "also"              "show"             
## [45961] "hurry"             "danger"            "hand"             
## [45964] "time"              "dare"              "write"            
## [45967] "anything"          "longer"            "plainer"          
## [45970] "must"              "wary"              "wish"             
## [45973] "feel"              "sure"              "made"             
## [45976] "marks"             "whatever"          "may"              
## [45979] "mean"              "said"              "frodo"            
## [45982] "great"             "comfort"           "know"             
## [45985] "way"               "front"             "us"               
## [45988] "behind"            "us"                "perhaps"          
## [45991] "said"              "strider"           "believe"          
## [45994] "danger"            "scorching"         "flames"           
## [45997] "now"               "light"             "saw"              
## [46000] "three"             "nights"            "ago"              
## [46003] "eastern"           "sky"               "comes"            
## [46006] "back"              "mind"              "guess"            
## [46009] "attacked"          "hill"              "top"              
## [46012] "result"            "tell"              "longer"           
## [46015] "must"              "now"               "look"             
## [46018] "make"              "way"               "rivendell"        
## [46021] "best"              "can"               "far"              
## [46024] "rivendell"         "asked"             "merry"            
## [46027] "gazing"            "round"             "wearily"          
## [46030] "world"             "looked"            "wild"             
## [46033] "wide"              "weathertop"        "dont"             
## [46036] "know"              "road"              "ever"             
## [46039] "measured"          "miles"             "beyond"           
## [46042] "forsaken"          "inn"               "days"             
## [46045] "journey"           "east"              "bree"             
## [46048] "answered"          "strider"           "say"              
## [46051] "far"               "say"               "otherwise"        
## [46054] "strange"           "road"              "folk"             
## [46057] "glad"              "reach"             "journeys"         
## [46060] "end"               "whether"           "time"             
## [46063] "long"              "short"             "know"             
## [46066] "long"              "take"              "feet"             
## [46069] "fair"              "weather"           "ill"              
## [46072] "fortune"           "twelve"            "days"             
## [46075] "ford"              "bruinen"           "road"             
## [46078] "crosses"           "loudwater"         "runs"             
## [46081] "rivendell"         "least"             "fortnights"       
## [46084] "journey"           "us"                "think"            
## [46087] "shall"             "able"              "use"              
## [46090] "road"              "fortnight"         "said"             
## [46093] "frodo"             "lot"               "may"              
## [46096] "happen"            "time"              "may"              
## [46099] "said"              "strider"           "stood"            
## [46102] "silent"            "hill"              "top"              
## [46105] "near"              "southward"         "edge"             
## [46108] "lonely"            "place"             "frodo"            
## [46111] "first"             "time"              "fully"            
## [46114] "realized"          "homelessness"      "danger"           
## [46117] "wished"            "bitterly"          "fortune"          
## [46120] "left"              "quiet"             "beloved"          
## [46123] "shire"             "stared"            "hateful"          
## [46126] "road"              "leading"           "back"             
## [46129] "westward"          "home"              "suddenly"         
## [46132] "aware"             "two"               "black"            
## [46135] "specks"            "moving"            "slowly"           
## [46138] "along"             "going"             "westward"         
## [46141] "looking"           "saw"               "three"            
## [46144] "others"            "creeping"          "eastward"         
## [46147] "meet"              "gave"              "cry"              
## [46150] "clutched"          "striders"          "arm"              
## [46153] "look"              "said"              "pointing"         
## [46156] "downwards"         "strider"           "flung"            
## [46159] "ground"            "behind"            "ruined"           
## [46162] "circle"            "pulling"           "frodo"            
## [46165] "beside"            "merry"             "threw"            
## [46168] "alongside"         "whispered"         "know"             
## [46171] "fear"              "worst"             "answered"         
## [46174] "strider"           "slowly"            "crawled"          
## [46177] "edge"              "ring"              "peered"           
## [46180] "cleft"             "two"               "jagged"           
## [46183] "stones"            "light"             "longer"           
## [46186] "bright"            "clear"             "morning"          
## [46189] "faded"             "clouds"            "creeping"         
## [46192] "east"              "now"               "overtaken"        
## [46195] "sun"               "began"             "go"               
## [46198] "see"               "black"             "specks"           
## [46201] "neither"           "frodo"             "merry"            
## [46204] "make"              "shapes"            "certain"          
## [46207] "yet"               "something"         "told"             
## [46210] "far"               "black"             "riders"           
## [46213] "assembling"        "road"              "beyond"           
## [46216] "foot"              "hill"              "yes"              
## [46219] "said"              "strider"           "whose"            
## [46222] "keener"            "sight"             "left"             
## [46225] "doubt"             "enemy"             "hastily"          
## [46228] "crept"             "away"              "slipped"          
## [46231] "north"             "side"              "hill"             
## [46234] "find"              "companions"        "sam"              
## [46237] "peregrin"          "idle"              "explored"         
## [46240] "small"             "dell"              "surrounding"      
## [46243] "slopes"            "far"               "away"             
## [46246] "found"             "spring"            "clear"            
## [46249] "water"             "hillside"          "near"             
## [46252] "footprints"        "day"               "two"              
## [46255] "old"               "dell"              "found"            
## [46258] "recent"            "traces"            "fire"             
## [46261] "signs"             "hasty"             "camp"             
## [46264] "fallen"            "rocks"             "edge"             
## [46267] "dell"              "nearest"           "hill"             
## [46270] "behind"            "sam"               "came"             
## [46273] "upon"              "small"             "store"            
## [46276] "firewood"          "neatly"            "stacked"          
## [46279] "wonder"            "old"               "gandalf"          
## [46282] "said"              "pippin"            "whoever"          
## [46285] "put"               "stuff"             "meant"            
## [46288] "come"              "back"              "seems"            
## [46291] "strider"           "greatly"           "interested"       
## [46294] "discoveries"       "wish"              "waited"           
## [46297] "explored"          "ground"            "said"             
## [46300] "hurrying"          "spring"            "examine"          
## [46303] "footprints"        "just"              "feared"           
## [46306] "said"              "came"              "back"             
## [46309] "sam"               "pippin"            "trampled"         
## [46312] "soft"              "ground"            "marks"            
## [46315] "spoilt"            "confused"          "rangers"          
## [46318] "lately"            "left"              "firewood"         
## [46321] "behind"            "also"              "several"          
## [46324] "newer"             "tracks"            "made"             
## [46327] "rangers"           "least"             "one"              
## [46330] "set"               "made"              "day"              
## [46333] "two"               "ago"               "heavy"            
## [46336] "boots"             "least"             "one"              
## [46339] "now"               "certain"           "think"            
## [46342] "many"              "booted"            "feet"             
## [46345] "paused"            "stood"             "anxious"          
## [46348] "thought"           "hobbits"           "saw"              
## [46351] "mind"              "vision"            "cloaked"          
## [46354] "booted"            "riders"            "horsemen"         
## [46357] "already"           "found"             "dell"             
## [46360] "sooner"            "strider"           "led"              
## [46363] "somewhere"         "else"              "better"           
## [46366] "sam"               "viewed"            "hollow"           
## [46369] "great"             "dislike"           "now"              
## [46372] "heard"             "news"              "enemies"          
## [46375] "road"              "miles"             "away"             
## [46378] "hadnt"             "better"            "clear"            
## [46381] "quick"             "mr"                "strider"          
## [46384] "asked"             "impatiently"       "getting"          
## [46387] "late"              "dont"              "like"             
## [46390] "hole"              "makes"             "heart"            
## [46393] "sink"              "somehow"           "yes"              
## [46396] "certainly"         "must"              "decide"           
## [46399] "answered"          "strider"           "looking"          
## [46402] "considering"       "time"              "weather"          
## [46405] "well"              "sam"               "said"             
## [46408] "last"              "like"              "place"            
## [46411] "either"            "think"             "anywhere"         
## [46414] "better"            "reach"             "nightfall"        
## [46417] "least"             "sight"             "moment"           
## [46420] "moved"             "much"              "likely"           
## [46423] "seen"              "spies"             "go"               
## [46426] "right"             "way"               "back"             
## [46429] "north"             "side"              "line"             
## [46432] "hills"             "land"              "much"             
## [46435] "road"              "watched"           "cross"            
## [46438] "tried"             "take"              "cover"            
## [46441] "thickets"          "away"              "south"            
## [46444] "north"             "side"              "road"             
## [46447] "beyond"            "hills"             "country"          
## [46450] "bare"              "flat"              "miles"            
## [46453] "can"               "riders"            "see"              
## [46456] "asked"             "merry"             "mean"             
## [46459] "seem"              "usually"           "used"             
## [46462] "noses"             "rather"            "eyes"             
## [46465] "smelling"          "us"                "smelling"         
## [46468] "right"             "word"              "least"            
## [46471] "daylight"          "made"              "us"               
## [46474] "lie"               "flat"              "saw"              
## [46477] "now"               "talk"              "seen"             
## [46480] "move"              "careless"          "hill"             
## [46483] "top"               "answered"          "strider"          
## [46486] "anxious"           "find"              "sign"             
## [46489] "gandalf"           "mistake"           "three"            
## [46492] "us"                "go"                "stand"            
## [46495] "long"              "black"             "horses"           
## [46498] "can"               "see"               "riders"           
## [46501] "can"               "use"               "men"              
## [46504] "creatures"         "spies"             "found"            
## [46507] "bree"              "see"               "world"            
## [46510] "light"             "shapes"            "cast"             
## [46513] "shadows"           "minds"             "noon"             
## [46516] "sun"               "destroys"          "dark"             
## [46519] "perceive"          "many"              "signs"            
## [46522] "forms"             "hidden"            "us"               
## [46525] "feared"            "times"             "smell"            
## [46528] "blood"             "living"            "things"           
## [46531] "desiring"          "hating"            "senses"           
## [46534] "sight"             "smell"             "can"              
## [46537] "feel"              "presence"          "troubled"         
## [46540] "hearts"            "soon"              "came"             
## [46543] "saw"               "feel"              "keenly"           
## [46546] "also"              "added"             "voice"            
## [46549] "sank"              "whisper"           "ring"             
## [46552] "draws"             "escape"            "said"             
## [46555] "frodo"             "looking"           "round"            
## [46558] "wildly"            "move"              "shall"            
## [46561] "seen"              "hunted"            "stay"             
## [46564] "shall"             "draw"              "strider"          
## [46567] "laid"              "hand"              "shoulder"         
## [46570] "still"             "hope"              "said"             
## [46573] "alone"             "let"               "us"               
## [46576] "take"              "wood"              "set"              
## [46579] "ready"             "fire"              "sign"             
## [46582] "little"            "shelter"           "defence"          
## [46585] "fire"              "shall"             "serve"            
## [46588] "sauron"            "can"               "put"              
## [46591] "fire"              "evil"              "uses"             
## [46594] "can"               "things"            "riders"           
## [46597] "love"              "fear"              "wield"            
## [46600] "fire"              "friend"            "wilderness"       
## [46603] "maybe"             "muttered"          "sam"              
## [46606] "also"              "good"              "way"              
## [46609] "saying"            "can"               "think"            
## [46612] "bar"               "shouting"          "lowest"           
## [46615] "sheltered"         "corner"            "dell"             
## [46618] "lit"               "fire"              "prepared"         
## [46621] "meal"              "shades"            "evening"          
## [46624] "began"             "fall"              "grew"             
## [46627] "cold"              "suddenly"          "aware"            
## [46630] "great"             "hunger"            "eaten"            
## [46633] "anything"          "since"             "breakfast"        
## [46636] "dared"             "make"              "frugal"           
## [46639] "supper"            "lands"             "ahead"            
## [46642] "empty"             "save"              "birds"            
## [46645] "beasts"            "unfriendly"        "places"           
## [46648] "deserted"          "races"             "world"            
## [46651] "rangers"           "passed"            "times"            
## [46654] "beyond"            "hills"             "stay"             
## [46657] "wanderers"         "rare"              "evil"             
## [46660] "sort"              "trolls"            "might"            
## [46663] "stray"             "times"             "northern"         
## [46666] "valleys"           "misty"             "mountains"        
## [46669] "road"              "travellers"        "found"            
## [46672] "often"             "dwarves"           "hurrying"         
## [46675] "along"             "business"          "help"             
## [46678] "words"             "spare"             "strangers"        
## [46681] "dont"              "see"               "food"             
## [46684] "can"               "made"              "last"             
## [46687] "said"              "frodo"             "careful"          
## [46690] "enough"            "last"              "days"             
## [46693] "supper"            "feast"             "used"             
## [46696] "two"               "weeks"             "still"            
## [46699] "go"                "perhaps"           "food"             
## [46702] "wild"              "said"              "strider"          
## [46705] "berry"             "root"              "herb"             
## [46708] "skill"             "hunter"            "need"             
## [46711] "need"              "afraid"            "starving"         
## [46714] "winter"            "comes"             "gathering"        
## [46717] "catching"          "food"              "long"             
## [46720] "weary"             "work"              "need"             
## [46723] "haste"             "tighten"           "belts"            
## [46726] "think"             "hope"              "tables"           
## [46729] "elronds"           "house"             "cold"             
## [46732] "increased"         "darkness"          "came"             
## [46735] "peering"           "edge"              "dell"             
## [46738] "see"               "nothing"           "grey"             
## [46741] "land"              "now"               "vanishing"        
## [46744] "quickly"           "shadow"            "sky"              
## [46747] "cleared"           "slowly"            "filled"           
## [46750] "twinkling"         "stars"             "frodo"            
## [46753] "companions"        "huddled"           "round"            
## [46756] "fire"              "wrapped"           "every"            
## [46759] "garment"           "blanket"           "possessed"        
## [46762] "strider"           "content"           "single"           
## [46765] "cloak"             "sat"               "little"           
## [46768] "apart"             "drawing"           "thoughtfully"     
## [46771] "pipe"              "night"             "fell"             
## [46774] "light"             "fire"              "began"            
## [46777] "shine"             "brightly"          "began"            
## [46780] "tell"              "tales"             "keep"             
## [46783] "minds"             "fear"              "knew"             
## [46786] "many"              "histories"         "legends"          
## [46789] "long"              "ago"               "elves"            
## [46792] "men"               "good"              "evil"             
## [46795] "deeds"             "elder"             "days"             
## [46798] "wondered"          "old"               "learned"          
## [46801] "lore"              "tell"              "us"               
## [46804] "gil"               "galad"             "said"             
## [46807] "merry"             "suddenly"          "paused"           
## [46810] "end"               "story"             "elf"              
## [46813] "kingdoms"          "know"              "old"              
## [46816] "lay"               "spoke"             "indeed"           
## [46819] "answered"          "strider"           "also"             
## [46822] "frodo"             "concerns"          "us"               
## [46825] "closely"           "merry"             "pippin"           
## [46828] "looked"            "frodo"             "staring"          
## [46831] "fire"              "know"              "little"           
## [46834] "gandalf"           "told"              "said"             
## [46837] "frodo"             "slowly"            "gil"              
## [46840] "galad"             "last"              "great"            
## [46843] "elf"               "kings"             "middle"           
## [46846] "earth"             "gil"               "galad"            
## [46849] "starlight"         "tongue"            "elendil"          
## [46852] "elf"               "friend"            "went"             
## [46855] "land"              "said"              "strider"          
## [46858] "interrupting"      "think"             "tale"             
## [46861] "told"              "now"               "servants"         
## [46864] "enemy"             "hand"              "win"              
## [46867] "house"             "elrond"            "may"              
## [46870] "hear"              "told"              "full"             
## [46873] "tell"              "us"                "tale"             
## [46876] "old"               "days"              "begged"           
## [46879] "sam"               "tale"              "elves"            
## [46882] "fading"            "time"              "dearly"           
## [46885] "like"              "hear"              "elves"            
## [46888] "dark"              "seems"             "press"            
## [46891] "round"             "close"             "will"             
## [46894] "tell"              "tale"              "tinúviel"         
## [46897] "said"              "strider"           "brief"            
## [46900] "long"              "tale"              "end"              
## [46903] "known"             "none"              "now"              
## [46906] "except"            "elrond"            "remember"         
## [46909] "aright"            "told"              "old"              
## [46912] "fair"              "tale"              "though"           
## [46915] "sad"               "tales"             "middle"           
## [46918] "earth"             "yet"               "may"              
## [46921] "lift"              "hearts"            "silent"           
## [46924] "time"              "began"             "speak"            
## [46927] "chant"             "softly"            "leaves"           
## [46930] "long"              "grass"             "green"            
## [46933] "hemlock"           "umbels"            "tall"             
## [46936] "fair"              "glade"             "light"            
## [46939] "seen"              "stars"             "shadow"           
## [46942] "shimmering"        "tinúviel"          "dancing"          
## [46945] "music"             "pipe"              "unseen"           
## [46948] "light"             "stars"             "hair"             
## [46951] "raiment"           "glimmering"        "beren"            
## [46954] "came"              "mountains"         "cold"             
## [46957] "lost"              "wandered"          "leaves"           
## [46960] "elven"             "river"             "rolled"           
## [46963] "walked"            "alone"             "sorrowing"        
## [46966] "peered"            "hemlock"           "leaves"           
## [46969] "saw"               "wander"            "flowers"          
## [46972] "gold"              "upon"              "mantle"           
## [46975] "sleeves"           "hair"              "like"             
## [46978] "shadow"            "following"         "enchantment"      
## [46981] "healed"            "weary"             "feet"             
## [46984] "hills"             "doomed"            "roam"             
## [46987] "forth"             "hastened"          "strong"           
## [46990] "fleet"             "grasped"           "moonbeams"        
## [46993] "glistening"        "woven"             "woods"            
## [46996] "elvenhome"         "tightly"           "fled"             
## [46999] "dancing"           "feet"              "left"             
## [47002] "lonely"            "still"             "roam"             
## [47005] "silent"            "forest"            "listening"        
## [47008] "heard"             "oft"               "flying"           
## [47011] "sound"             "feet"              "light"            
## [47014] "linden"            "leaves"            "music"            
## [47017] "welling"           "underground"       "hidden"           
## [47020] "hollows"           "quavering"         "now"              
## [47023] "withered"          "lay"               "hemlock"          
## [47026] "sheaves"           "one"               "one"              
## [47029] "sighing"           "sound"             "whispering"       
## [47032] "fell"              "beechen"           "leaves"           
## [47035] "wintry"            "woodland"          "wavering"         
## [47038] "sought"            "ever"              "wandering"        
## [47041] "far"               "leaves"            "years"            
## [47044] "thickly"           "strewn"            "light"            
## [47047] "moon"              "ray"               "star"             
## [47050] "frosty"            "heavens"           "shivering"        
## [47053] "mantle"            "glinted"           "moon"             
## [47056] "hill"              "top"               "high"             
## [47059] "far"               "danced"            "feet"             
## [47062] "strewn"            "mist"              "silver"           
## [47065] "quivering"         "winter"            "passed"           
## [47068] "came"              "song"              "released"         
## [47071] "sudden"            "spring"            "like"             
## [47074] "rising"            "lark"              "falling"          
## [47077] "rain"              "melting"           "water"            
## [47080] "bubbling"          "saw"               "elven"            
## [47083] "flowers"           "spring"            "feet"             
## [47086] "healed"            "longed"            "dance"            
## [47089] "sing"              "upon"              "grass"            
## [47092] "untroubling"       "fled"              "swift"            
## [47095] "came"              "tinúviel"          "tinúviel"         
## [47098] "called"            "elvish"            "name"             
## [47101] "halted"            "listening"         "one"              
## [47104] "moment"            "stood"             "spell"            
## [47107] "voice"             "laid"              "beren"            
## [47110] "came"              "doom"              "fell"             
## [47113] "tinúviel"          "arms"              "lay"              
## [47116] "glistening"        "beren"             "looked"           
## [47119] "eyes"              "within"            "shadows"          
## [47122] "hair"              "trembling"         "starlight"        
## [47125] "skies"             "saw"               "mirrored"         
## [47128] "shimmering"        "tinúviel"          "elven"            
## [47131] "fair"              "immortal"          "maiden"           
## [47134] "elven"             "wise"              "cast"             
## [47137] "shadowy"           "hair"              "arms"             
## [47140] "like"              "silver"            "glimmering"       
## [47143] "long"              "way"               "fate"             
## [47146] "bore"              "oer"               "stony"            
## [47149] "mountains"         "cold"              "grey"             
## [47152] "halls"             "iron"              "darkling"         
## [47155] "door"              "woods"             "nightshade"       
## [47158] "morrowless"        "sundering"         "seas"             
## [47161] "lay"               "yet"               "last"             
## [47164] "met"               "long"              "ago"              
## [47167] "passed"            "away"              "forest"           
## [47170] "singing"           "sorrowless"        "strider"          
## [47173] "sighed"            "paused"            "spoke"            
## [47176] ""                  ""                  "song"             
## [47179] "said"              "mode"              "called"           
## [47182] "ann"               "thennath"          "among"            
## [47185] "elves"             "hard"              "render"           
## [47188] "common"            "speech"            "rough"            
## [47191] "echo"              "tells"             "meeting"          
## [47194] "beren"             "son"               "barahir"          
## [47197] "lúthien"           "tinúviel"          "beren"            
## [47200] "mortal"            "man"               "lúthien"          
## [47203] "daughter"          "thingol"           "king"             
## [47206] "elves"             "upon"              "middle"           
## [47209] "earth"             "world"             "young"            
## [47212] "fairest"           "maiden"            "ever"             
## [47215] "among"             "children"          "world"            
## [47218] "stars"             "mists"             "northern"         
## [47221] "lands"             "loveliness"        "face"             
## [47224] "shining"           "light"             "days"             
## [47227] "great"             "enemy"             "sauron"           
## [47230] "mordor"            "servant"           "dwelt"            
## [47233] "angband"           "north"             "elves"            
## [47236] "west"              "coming"            "back"             
## [47239] "middle"            "earth"             "made"             
## [47242] "war"               "upon"              "regain"           
## [47245] "silmarils"         "stolen"            "fathers"          
## [47248] "men"               "aided"             "elves"            
## [47251] "enemy"             "victorious"        "barahir"          
## [47254] "slain"             "beren"             "escaping"         
## [47257] "great"             "peril"             "came"             
## [47260] "mountains"         "terror"            "hidden"           
## [47263] "kingdom"           "thingol"           "forest"           
## [47266] "neldoreth"         "beheld"            "lúthien"          
## [47269] "singing"           "dancing"           "glade"            
## [47272] "beside"            "enchanted"         "river"            
## [47275] "esgalduin"         "named"             "tinúviel"         
## [47278] "nightingale"       "language"          "old"              
## [47281] "many"              "sorrows"           "befell"           
## [47284] "afterwards"        "parted"            "long"             
## [47287] "tinúviel"          "rescued"           "beren"            
## [47290] "dungeons"          "sauron"            "together"         
## [47293] "passed"            "great"             "dangers"          
## [47296] "cast"              "even"              "great"            
## [47299] "enemy"             "throne"            "took"             
## [47302] "iron"              "crown"             "one"              
## [47305] "three"             "silmarils"         "brightest"        
## [47308] "jewels"            "bride"             "price"            
## [47311] "lúthien"           "thingol"           "father"           
## [47314] "yet"               "last"              "beren"            
## [47317] "slain"             "wolf"              "came"             
## [47320] "gates"             "angband"           "died"             
## [47323] "arms"              "tinúviel"          "chose"            
## [47326] "mortality"         "die"               "world"            
## [47329] "might"             "follow"            "sung"             
## [47332] "met"               "beyond"            "sundering"        
## [47335] "seas"              "brief"             "time"             
## [47338] "walking"           "alive"             "green"            
## [47341] "woods"             "together"          "passed"           
## [47344] "long"              "ago"               "beyond"           
## [47347] "confines"          "world"             "lúthien"          
## [47350] "tinúviel"          "alone"             "elf"              
## [47353] "kindred"           "died"              "indeed"           
## [47356] "left"              "world"             "lost"             
## [47359] "loved"             "lineage"           "elf"              
## [47362] "lords"             "old"               "descended"        
## [47365] "among"             "men"               "live"             
## [47368] "still"             "lúthien"           "foremother"       
## [47371] "said"              "line"              "shall"            
## [47374] "never"             "fail"              "elrond"           
## [47377] "rivendell"         "kin"               "beren"            
## [47380] "lúthien"           "born"              "dior"             
## [47383] "thingols"          "heir"              "elwing"           
## [47386] "white"             "eärendil"          "wedded"           
## [47389] "sailed"            "ship"              "mists"            
## [47392] "world"             "seas"              "heaven"           
## [47395] "silmaril"          "upon"              "brow"             
## [47398] "eärendil"          "came"              "kings"            
## [47401] "númenor"           "westernesse"       "strider"          
## [47404] "speaking"          "watched"           "strange"          
## [47407] "eager"             "face"              "dimly"            
## [47410] "lit"               "red"               "glow"             
## [47413] "wood"              "fire"              "eyes"             
## [47416] "shone"             "voice"             "rich"             
## [47419] "deep"              "black"             "starry"           
## [47422] "sky"               "suddenly"          "pale"             
## [47425] "light"             "appeared"          "crown"            
## [47428] "weathertop"        "behind"            "waxing"           
## [47431] "moon"              "climbing"          "slowly"           
## [47434] "hill"              "overshadowed"      "stars"            
## [47437] "hill"              "top"               "faded"            
## [47440] "story"             "ended"             "hobbits"          
## [47443] "moved"             "stretched"         "look"             
## [47446] "said"              "merry"             "moon"             
## [47449] "rising"            "must"              "getting"          
## [47452] "late"              "others"            "looked"           
## [47455] "even"              "saw"               "top"              
## [47458] "hill"              "something"         "small"            
## [47461] "dark"              "glimmer"           "moonrise"         
## [47464] "perhaps"           "large"             "stone"            
## [47467] "jutting"           "rock"              "shown"            
## [47470] "pale"              "light"             "sam"              
## [47473] "merry"             "got"               "walked"           
## [47476] "away"              "fire"              "frodo"            
## [47479] "pippin"            "remained"          "seated"           
## [47482] "silence"           "strider"           "watching"         
## [47485] "moonlight"         "hill"              "intently"         
## [47488] "seemed"            "quiet"             "still"            
## [47491] "frodo"             "felt"              "cold"             
## [47494] "dread"             "creeping"          "heart"            
## [47497] "now"               "strider"           "longer"           
## [47500] "speaking"          "huddled"           "closer"           
## [47503] "fire"              "moment"            "sam"              
## [47506] "came"              "running"           "back"             
## [47509] "edge"              "dell"              "dont"             
## [47512] "know"              "said"              "suddenly"         
## [47515] "felt"              "afraid"            "durstnt"          
## [47518] "go"                "outside"           "dell"             
## [47521] "money"             "felt"              "something"        
## [47524] "creeping"          "slope"             "see"              
## [47527] "anything"          "asked"             "frodo"            
## [47530] "springing"         "feet"              "sir"              
## [47533] "saw"               "nothing"           "didnt"            
## [47536] "stop"              "look"              "saw"              
## [47539] "something"         "said"              "merry"            
## [47542] "thought"           "away"              "westwards"        
## [47545] "moonlight"         "falling"           "flats"            
## [47548] "beyond"            "shadow"            "hill"             
## [47551] "tops"              "thought"           "two"              
## [47554] "three"             "black"             "shapes"           
## [47557] "seemed"            "moving"            "way"              
## [47560] "keep"              "close"             "fire"             
## [47563] "faces"             "outward"           "cried"            
## [47566] "strider"           "get"               "longer"           
## [47569] "sticks"            "ready"             "hands"            
## [47572] "breathless"        "time"              "sat"              
## [47575] "silent"            "alert"             "backs"            
## [47578] "turned"            "wood"              "fire"             
## [47581] "gazing"            "shadows"           "encircled"        
## [47584] "nothing"           "happened"          "sound"            
## [47587] "movement"          "night"             "frodo"            
## [47590] "stirred"           "feeling"           "must"             
## [47593] "break"             "silence"           "longed"           
## [47596] "shout"             "aloud"             "hush"             
## [47599] "whispered"         "strider"           "whats"            
## [47602] "gasped"            "pippin"            "moment"           
## [47605] "lip"               "little"            "dell"             
## [47608] "side"              "away"              "hill"             
## [47611] "felt"              "rather"            "saw"              
## [47614] "shadow"            "rise"              "one"              
## [47617] "shadow"            "one"               "strained"         
## [47620] "eyes"              "shadows"           "seemed"           
## [47623] "grow"              "soon"              "doubt"            
## [47626] "three"             "four"              "tall"             
## [47629] "black"             "figures"           "standing"         
## [47632] "slope"             "looking"           "black"            
## [47635] "seemed"            "like"              "black"            
## [47638] "holes"             "deep"              "shade"            
## [47641] "behind"            "frodo"             "thought"          
## [47644] "heard"             "faint"             "hiss"             
## [47647] "venomous"          "breath"            "felt"             
## [47650] "thin"              "piercing"          "chill"            
## [47653] "shapes"            "slowly"            "advanced"         
## [47656] "terror"            "overcame"          "pippin"           
## [47659] "merry"             "threw"             "flat"             
## [47662] "ground"            "sam"               "shrank"           
## [47665] "frodos"            "side"              "frodo"            
## [47668] "hardly"            "less"              "terrified"        
## [47671] "companions"        "quaking"           "bitter"           
## [47674] "cold"              "terror"            "swallowed"        
## [47677] "sudden"            "temptation"        "put"              
## [47680] "ring"              "desire"            "laid"             
## [47683] "hold"              "think"             "nothing"          
## [47686] "else"              "forget"            "barrow"           
## [47689] "message"           "gandalf"           "something"        
## [47692] "seemed"            "compelling"        "disregard"        
## [47695] "warnings"          "longed"            "yield"            
## [47698] "hope"              "escape"            "anything"         
## [47701] "either"            "good"              "bad"              
## [47704] "simply"            "felt"              "must"             
## [47707] "take"              "ring"              "put"              
## [47710] "finger"            "speak"             "felt"             
## [47713] "sam"               "looking"           "knew"             
## [47716] "master"            "great"             "trouble"          
## [47719] "turn"              "towards"           "shut"             
## [47722] "eyes"              "struggled"         "resistance"       
## [47725] "became"            "unbearable"        "last"             
## [47728] "slowly"            "drew"              "chain"            
## [47731] "slipped"           "ring"              "forefinger"       
## [47734] "left"              "hand"              "immediately"      
## [47737] "though"            "everything"        "else"             
## [47740] "remained"          "dim"               "dark"             
## [47743] "shapes"            "became"            "terribly"         
## [47746] "clear"             "able"              "see"              
## [47749] "beneath"           "black"             "wrappings"        
## [47752] "five"              "tall"              "figures"          
## [47755] "two"               "standing"          "lip"              
## [47758] "dell"              "three"             "advancing"        
## [47761] "white"             "faces"             "burned"           
## [47764] "keen"              "merciless"         "eyes"             
## [47767] "mantles"           "long"              "grey"             
## [47770] "robes"             "upon"              "grey"             
## [47773] "hairs"             "helms"             "silver"           
## [47776] "haggard"           "hands"             "swords"           
## [47779] "steel"             "eyes"              "fell"             
## [47782] "pierced"           "rushed"            "towards"          
## [47785] "desperate"         "drew"              "sword"            
## [47788] "seemed"            "flickered"         "red"              
## [47791] "firebrand"         "two"               "figures"          
## [47794] "halted"            "third"             "taller"           
## [47797] "others"            "hair"              "long"             
## [47800] "gleaming"          "helm"              "crown"            
## [47803] "one"               "hand"              "held"             
## [47806] "long"              "sword"             "knife"            
## [47809] "knife"             "hand"              "held"             
## [47812] "glowed"            "pale"              "light"            
## [47815] "sprang"            "forward"           "bore"             
## [47818] "frodo"             "moment"            "frodo"            
## [47821] "threw"             "forward"           "ground"           
## [47824] "heard"             "crying"            "aloud"            
## [47827] "elbereth"          "gilthoniel"        "time"             
## [47830] "struck"            "feet"              "enemy"            
## [47833] "shrill"            "cry"               "rang"             
## [47836] "night"             "felt"              "pain"             
## [47839] "like"              "dart"              "poisoned"         
## [47842] "ice"               "pierce"            "left"             
## [47845] "shoulder"          "even"              "swooned"          
## [47848] "caught"            "swirling"          "mist"             
## [47851] "glimpse"           "strider"           "leaping"          
## [47854] "darkness"          "flaming"           "brand"            
## [47857] "wood"              "either"            "hand"             
## [47860] "last"              "effort"            "frodo"            
## [47863] "dropping"          "sword"             "slipped"          
## [47866] "ring"              "finger"            "closed"           
## [47869] "right"             "hand"              "tight"            
## [47872] "upon"              "chapter"           "flight"           
## [47875] "ford"              "frodo"             "came"             
## [47878] "still"             "clutching"         "ring"             
## [47881] "desperately"       "lying"             "fire"             
## [47884] "now"               "piled"             "high"             
## [47887] "burning"           "brightly"          "three"            
## [47890] "companions"        "bending"           "happened"         
## [47893] "pale"              "king"              "asked"            
## [47896] "wildly"            "overjoyed"         "hear"             
## [47899] "speak"             "answer"            "understand"       
## [47902] "question"          "length"            "gathered"         
## [47905] "sam"               "seen"              "nothing"          
## [47908] "vague"             "shadowy"           "shapes"           
## [47911] "coming"            "towards"           "suddenly"         
## [47914] "horror"            "sam"               "found"            
## [47917] "master"            "vanished"          "moment"           
## [47920] "black"             "shadow"            "rushed"           
## [47923] "past"              "fell"              "heard"            
## [47926] "frodos"            "voice"             "seemed"           
## [47929] "come"              "great"             "distance"         
## [47932] "earth"             "crying"            "strange"          
## [47935] "words"             "saw"               "nothing"          
## [47938] "stumbled"          "body"              "frodo"            
## [47941] "lying"             "dead"              "face"             
## [47944] "downwards"         "grass"             "sword"            
## [47947] "beneath"           "strider"           "ordered"          
## [47950] "pick"              "lay"               "near"             
## [47953] "fire"              "disappeared"       "now"              
## [47956] "good"              "ago"               "sam"              
## [47959] "plainly"           "beginning"         "doubts"           
## [47962] "strider"           "talking"           "returned"         
## [47965] "appearing"         "suddenly"          "shadows"          
## [47968] "started"           "sam"               "drew"             
## [47971] "sword"             "stood"             "frodo"            
## [47974] "strider"           "knelt"             "swiftly"          
## [47977] "side"              "black"             "rider"            
## [47980] "sam"               "said"              "gently"           
## [47983] "league"            "trying"            "discover"         
## [47986] "something"         "movements"         "found"            
## [47989] "nothing"           "think"             "gone"             
## [47992] "attack"            "feeling"           "presence"         
## [47995] "anywhere"          "hand"              "heard"            
## [47998] "frodo"             "tell"              "became"           
## [48001] "full"              "concern"           "shook"            
## [48004] "head"              "sighed"            "ordered"          
## [48007] "pippin"            "merry"             "heat"             
## [48010] "much"              "water"             "small"            
## [48013] "kettles"           "bathe"             "wound"            
## [48016] "keep"              "fire"              "going"            
## [48019] "well"              "keep"              "frodo"            
## [48022] "warm"              "said"              "got"              
## [48025] "walked"            "away"              "called"           
## [48028] "sam"               "think"             "understand"       
## [48031] "things"            "better"            "now"              
## [48034] "said"              "low"               "voice"            
## [48037] "seem"              "five"              "enemy"            
## [48040] "dont"              "know"              "dont"             
## [48043] "think"             "expected"          "resisted"         
## [48046] "drawn"             "time"              "far"              
## [48049] "fear"              "will"              "come"             
## [48052] "another"           "night"             "escape"           
## [48055] "waiting"           "think"             "purpose"          
## [48058] "almost"            "accomplished"      "ring"             
## [48061] "fly"               "much"              "fear"             
## [48064] "sam"               "believe"           "master"           
## [48067] "deadly"            "wound"             "will"             
## [48070] "subdue"            "will"              "shall"            
## [48073] "see"               "sam"               "choked"           
## [48076] "tears"             "dont"              "despair"          
## [48079] "said"              "strider"           "must"             
## [48082] "trust"             "now"               "frodo"            
## [48085] "made"              "sterner"           "stuff"            
## [48088] "guessed"           "though"            "gandalf"          
## [48091] "hinted"            "might"             "prove"            
## [48094] "slain"             "think"             "will"             
## [48097] "resist"            "evil"              "power"            
## [48100] "wound"             "longer"            "enemies"          
## [48103] "expect"            "will"              "can"              
## [48106] "help"              "heal"              "guard"            
## [48109] "well"              "away"              "hurried"          
## [48112] "disappeared"       "darkness"          "frodo"            
## [48115] "dozed"             "though"            "pain"             
## [48118] "wound"             "slowly"            "growing"          
## [48121] "deadly"            "chill"             "spreading"        
## [48124] "shoulder"          "arm"               "side"             
## [48127] "friends"           "watched"           "warming"          
## [48130] "bathing"           "wound"             "night"            
## [48133] "passed"            "slowly"            "wearily"          
## [48136] "dawn"              "growing"           "sky"              
## [48139] "dell"              "filling"           "grey"             
## [48142] "light"             "strider"           "last"             
## [48145] "returned"          "look"              "cried"            
## [48148] "stooping"          "lifted"            "ground"           
## [48151] "black"             "cloak"             "lain"             
## [48154] "hidden"            "darkness"          "foot"             
## [48157] "lower"             "hem"               "slash"            
## [48160] "stroke"            "frodos"            "sword"            
## [48163] "said"              "hurt"              "enemy"            
## [48166] "fear"              "unharmed"          "blades"           
## [48169] "perish"            "pierce"            "dreadful"         
## [48172] "king"              "deadly"            "name"             
## [48175] "elbereth"          "deadly"            "frodo"            
## [48178] "stooped"           "lifted"            "long"             
## [48181] "thin"              "knife"             "cold"             
## [48184] "gleam"             "strider"           "raised"           
## [48187] "saw"               "near"              "end"              
## [48190] "edge"              "notched"           "point"            
## [48193] "broken"            "even"              "held"             
## [48196] "growing"           "light"             "gazed"            
## [48199] "astonishment"      "blade"             "seemed"           
## [48202] "melt"              "vanished"          "like"             
## [48205] "smoke"             "air"               "leaving"          
## [48208] "hilt"              "striders"          "hand"             
## [48211] "alas"              "cried"             "accursed"         
## [48214] "knife"             "gave"              "wound"            
## [48217] "now"               "skill"             "healing"          
## [48220] "match"             "evil"              "weapons"          
## [48223] "will"              "can"               "sat"              
## [48226] "ground"            "taking"            "dagger"           
## [48229] "hilt"              "laid"              "knees"            
## [48232] "sang"              "slow"              "song"             
## [48235] "strange"           "tongue"            "setting"          
## [48238] "aside"             "turned"            "frodo"            
## [48241] "soft"              "tone"              "spoke"            
## [48244] "words"             "others"            "catch"            
## [48247] "pouch"             "belt"              "drew"             
## [48250] "long"              "leaves"            "plant"            
## [48253] "leaves"            "said"              "walked"           
## [48256] "far"               "find"              "plant"            
## [48259] "grow"              "bare"              "hills"            
## [48262] "thickets"          "away"              "south"            
## [48265] "road"              "found"             "dark"             
## [48268] "scent"             "leaves"            "crushed"          
## [48271] "leaf"              "fingers"           "gave"             
## [48274] "sweet"             "pungent"           "fragrance"        
## [48277] "fortunate"         "find"              "healing"          
## [48280] "plant"             "men"               "west"             
## [48283] "brought"           "middle"            "earth"            
## [48286] "athelas"           "named"             "grows"            
## [48289] "now"               "sparsely"          "near"             
## [48292] "places"            "dwelt"             "camped"           
## [48295] "old"               "known"             "north"            
## [48298] "except"            "wander"            "wild"             
## [48301] "great"             "virtues"           "wound"            
## [48304] "healing"           "powers"            "may"              
## [48307] "small"             "threw"             "leaves"           
## [48310] "boiling"           "water"             "bathed"           
## [48313] "frodos"            "shoulder"          "fragrance"        
## [48316] "steam"             "refreshing"        "unhurt"           
## [48319] "felt"              "minds"             "calmed"           
## [48322] "cleared"           "herb"              "also"             
## [48325] "power"             "wound"             "frodo"            
## [48328] "felt"              "pain"              "also"             
## [48331] "sense"             "frozen"            "cold"             
## [48334] "lessen"            "side"              "life"             
## [48337] "return"            "arm"               "raise"            
## [48340] "use"               "hand"              "bitterly"         
## [48343] "regretted"         "foolishness"       "reproached"       
## [48346] "weakness"          "will"              "now"              
## [48349] "perceived"         "putting"           "ring"             
## [48352] "obeyed"            "desire"            "commanding"       
## [48355] "wish"              "enemies"           "wondered"         
## [48358] "remain"            "maimed"            "life"             
## [48361] "now"               "manage"            "continue"         
## [48364] "journey"           "fell"              "weak"             
## [48367] "stand"             "others"            "discussing"       
## [48370] "question"          "quickly"           "decided"          
## [48373] "leave"             "weathertop"        "soon"             
## [48376] "possible"          "think"             "now"              
## [48379] "said"              "strider"           "enemy"            
## [48382] "watching"          "place"             "days"             
## [48385] "gandalf"           "ever"              "came"             
## [48388] "must"              "forced"            "ride"             
## [48391] "away"              "will"              "return"           
## [48394] "case"              "great"             "peril"            
## [48397] "dark"              "since"             "attack"           
## [48400] "last"              "night"             "can"              
## [48403] "hardly"            "meet"              "greater"          
## [48406] "danger"            "wherever"          "go"               
## [48409] "soon"              "daylight"          "full"             
## [48412] "hurried"           "food"              "packed"           
## [48415] "impossible"        "frodo"             "walk"             
## [48418] "divided"           "greater"           "part"             
## [48421] "baggage"           "among"             "four"             
## [48424] "put"               "frodo"             "pony"             
## [48427] "last"              "days"              "poor"             
## [48430] "beast"             "improved"          "wonderfully"      
## [48433] "already"           "seemed"            "fatter"           
## [48436] "stronger"          "begun"             "show"             
## [48439] "affection"         "new"               "masters"          
## [48442] "especially"        "sam"               "bill"             
## [48445] "fernys"            "treatment"         "must"             
## [48448] "hard"              "journey"           "wild"             
## [48451] "seem"              "much"              "better"           
## [48454] "former"            "life"              "started"          
## [48457] "southerly"         "direction"         "mean"             
## [48460] "crossing"          "road"              "quickest"         
## [48463] "way"               "wooded"            "country"          
## [48466] "needed"            "fuel"              "strider"          
## [48469] "said"              "frodo"             "must"             
## [48472] "kept"              "warm"              "especially"       
## [48475] "night"             "fire"              "protection"       
## [48478] "also"              "plan"              "shorten"          
## [48481] "journey"           "cutting"           "across"           
## [48484] "another"           "great"             "loop"             
## [48487] "road"              "east"              "beyond"           
## [48490] "weathertop"        "changed"           "course"           
## [48493] "took"              "wide"              "bend"             
## [48496] "northwards"        "made"              "way"              
## [48499] "slowly"            "cautiously"        "round"            
## [48502] "south"             "western"           "slopes"           
## [48505] "hill"              "came"              "little"           
## [48508] "edge"              "road"              "sign"             
## [48511] "riders"            "even"              "hurrying"         
## [48514] "across"            "heard"             "far"              
## [48517] "away"              "two"               "cries"            
## [48520] "cold"              "voice"             "calling"          
## [48523] "cold"              "voice"             "answering"        
## [48526] "trembling"         "sprang"            "forward"          
## [48529] "made"              "thickets"          "lay"              
## [48532] "ahead"             "land"              "sloped"           
## [48535] "away"              "southwards"        "wild"             
## [48538] "pathless"          "bushes"            "stunted"          
## [48541] "trees"             "grew"              "dense"            
## [48544] "patches"           "wide"              "barren"           
## [48547] "spaces"            "grass"             "scanty"           
## [48550] "coarse"            "grey"              "leaves"           
## [48553] "thickets"          "faded"             "falling"          
## [48556] "cheerless"         "land"              "journey"          
## [48559] "slow"              "gloomy"            "spoke"            
## [48562] "little"            "trudged"           "along"            
## [48565] "frodos"            "heart"             "grieved"          
## [48568] "watched"           "walking"           "beside"           
## [48571] "heads"             "backs"             "bowed"            
## [48574] "burdens"           "even"              "strider"          
## [48577] "seemed"            "tired"             "heavy"            
## [48580] "hearted"           "first"             "days"             
## [48583] "march"             "frodos"            "pain"             
## [48586] "began"             "grow"              "speak"            
## [48589] "long"              "time"              "four"             
## [48592] "days"              "passed"            "without"          
## [48595] "ground"            "scene"             "changing"         
## [48598] "much"              "except"            "behind"           
## [48601] "weathertop"        "slowly"            "sank"             
## [48604] "distant"           "mountains"         "loomed"           
## [48607] "little"            "nearer"            "yet"              
## [48610] "since"             "far"               "cry"              
## [48613] "seen"              "heard"             "sign"             
## [48616] "enemy"             "marked"            "flight"           
## [48619] "followed"          "dreaded"           "dark"             
## [48622] "hours"             "kept"              "watch"            
## [48625] "pairs"             "night"             "expecting"        
## [48628] "time"              "see"               "black"            
## [48631] "shapes"            "stalking"          "grey"             
## [48634] "night"             "dimly"             "lit"              
## [48637] "cloud"             "veiled"            "moon"             
## [48640] "saw"               "nothing"           "heard"            
## [48643] "sound"             "sigh"              "withered"         
## [48646] "leaves"            "grass"             "feel"             
## [48649] "sense"             "present"           "evil"             
## [48652] "assailed"          "attack"            "dell"             
## [48655] "seemed"            "much"              "hope"             
## [48658] "riders"            "already"           "lost"             
## [48661] "trail"             "perhaps"           "waiting"          
## [48664] "make"              "ambush"            "narrow"           
## [48667] "place"             "end"               "fifth"            
## [48670] "day"               "ground"            "began"            
## [48673] "rise"              "slowly"            "wide"             
## [48676] "shallow"           "valley"            "descended"        
## [48679] "strider"           "now"               "turned"           
## [48682] "course"            "north"             "eastwards"        
## [48685] "sixth"             "day"               "reached"          
## [48688] "top"               "long"              "slow"             
## [48691] "climbing"          "slope"             "saw"              
## [48694] "far"               "ahead"             "huddle"           
## [48697] "wooded"            "hills"             "away"             
## [48700] "see"               "road"              "sweeping"         
## [48703] "round"             "feet"              "hills"            
## [48706] "right"             "grey"              "river"            
## [48709] "gleamed"           "pale"              "thin"             
## [48712] "sunshine"          "distance"          "glimpsed"         
## [48715] "yet"               "another"           "river"            
## [48718] "stony"             "valley"            "half"             
## [48721] "veiled"            "mist"              "afraid"           
## [48724] "must"              "go"                "back"             
## [48727] "road"              "said"              "strider"          
## [48730] "now"               "come"              "river"            
## [48733] "hoarwell"          "elves"             "call"             
## [48736] "mitheithel"        "flows"             "ettenmoors"       
## [48739] "troll"             "fells"             "north"            
## [48742] "rivendell"         "joins"             "loudwater"        
## [48745] "away"              "south"             "call"             
## [48748] "greyflood"         "great"             "water"            
## [48751] "finds"             "sea"               "way"              
## [48754] "sources"           "ettenmoors"        "except"           
## [48757] "last"              "bridge"            "road"             
## [48760] "crosses"           "river"             "can"              
## [48763] "see"               "far"               "away"             
## [48766] "asked"             "merry"             "loudwater"        
## [48769] "bruinen"           "rivendell"         "answered"         
## [48772] "strider"           "road"              "runs"             
## [48775] "along"             "edge"              "hills"            
## [48778] "many"              "miles"             "bridge"           
## [48781] "ford"              "bruinen"           "yet"              
## [48784] "thought"           "shall"             "cross"            
## [48787] "water"             "one"               "river"            
## [48790] "time"              "shall"             "fortunate"        
## [48793] "indeed"            "find"              "last"             
## [48796] "bridge"            "held"              "us"               
## [48799] "next"              "day"               "early"            
## [48802] "morning"           "came"              "borders"          
## [48805] "road"              "sam"               "strider"          
## [48808] "went"              "forward"           "found"            
## [48811] "sign"              "travellers"        "riders"           
## [48814] "shadow"            "hills"             "rain"             
## [48817] "strider"           "judged"            "fallen"           
## [48820] "two"               "days"              "washed"           
## [48823] "away"              "footprints"        "horseman"         
## [48826] "passed"            "since"             "far"              
## [48829] "see"               "hurried"           "along"            
## [48832] "speed"             "make"              "mile"             
## [48835] "two"               "saw"               "last"             
## [48838] "bridge"            "ahead"             "bottom"           
## [48841] "short"             "steep"             "slope"            
## [48844] "dreaded"           "see"               "black"            
## [48847] "figures"           "waiting"           "saw"              
## [48850] "none"              "strider"           "made"             
## [48853] "take"              "cover"             "thicket"          
## [48856] "side"              "road"              "went"             
## [48859] "forward"           "explore"           "long"             
## [48862] "came"              "hurrying"          "back"             
## [48865] "can"               "see"               "sign"             
## [48868] "enemy"             "said"              "wonder"           
## [48871] "much"              "means"             "found"            
## [48874] "something"         "strange"           "held"             
## [48877] "hand"              "showed"            "single"           
## [48880] "pale"              "green"             "jewel"            
## [48883] "found"             "mud"               "middle"           
## [48886] "bridge"            "said"              "beryl"            
## [48889] "elf"               "stone"             "whether"          
## [48892] "set"               "let"               "fall"             
## [48895] "chance"            "say"               "brings"           
## [48898] "hope"              "will"              "take"             
## [48901] "sign"              "may"               "pass"             
## [48904] "bridge"            "beyond"            "dare"             
## [48907] "keep"              "road"              "without"          
## [48910] "clearer"           "token"             "went"             
## [48913] "crossed"           "bridge"            "safety"           
## [48916] "hearing"           "sound"             "water"            
## [48919] "swirling"          "three"             "great"            
## [48922] "arches"            "mile"              "came"             
## [48925] "narrow"            "ravine"            "led"              
## [48928] "away"              "northwards"        "steep"            
## [48931] "lands"             "left"              "road"             
## [48934] "strider"           "turned"            "aside"            
## [48937] "soon"              "lost"              "sombre"           
## [48940] "country"           "dark"              "trees"            
## [48943] "winding"           "among"             "feet"             
## [48946] "sullen"            "hills"             "hobbits"          
## [48949] "glad"              "leave"             "cheerless"        
## [48952] "lands"             "perilous"          "road"             
## [48955] "behind"            "new"               "country"          
## [48958] "seemed"            "threatening"       "unfriendly"       
## [48961] "went"              "forward"           "hills"            
## [48964] "steadily"          "rose"              "upon"             
## [48967] "heights"           "ridges"            "caught"           
## [48970] "glimpses"          "ancient"           "walls"            
## [48973] "stone"             "ruins"             "towers"           
## [48976] "ominous"           "look"              "frodo"            
## [48979] "walking"           "time"              "gaze"             
## [48982] "ahead"             "think"             "recalled"         
## [48985] "bilbos"            "account"           "journey"          
## [48988] "threatening"       "towers"            "hills"            
## [48991] "north"             "road"              "country"          
## [48994] "near"              "trolls"            "wood"             
## [48997] "first"             "serious"           "adventure"        
## [49000] "happened"          "frodo"             "guessed"          
## [49003] "now"               "region"            "wondered"         
## [49006] "chance"            "pass"              "near"             
## [49009] "spot"              "lives"             "land"             
## [49012] "asked"             "built"             "towers"           
## [49015] "troll"             "country"           "said"             
## [49018] "strider"           "trolls"            "build"            
## [49021] "one"               "lives"             "land"             
## [49024] "men"               "dwelt"             "ages"             
## [49027] "ago"               "none"              "remain"           
## [49030] "now"               "became"            "evil"             
## [49033] "people"            "legends"           "tell"             
## [49036] "fell"              "shadow"            "angmar"           
## [49039] "destroyed"         "war"               "brought"          
## [49042] "north"             "kingdom"           "end"              
## [49045] "now"               "long"              "ago"              
## [49048] "hills"             "forgotten"         "though"           
## [49051] "shadow"            "still"             "lies"             
## [49054] "land"              "learn"             "tales"            
## [49057] "land"              "empty"             "forgetful"        
## [49060] "asked"             "peregrin"          "birds"            
## [49063] "beasts"            "tell"              "tales"            
## [49066] "son"               "heirs"             "elendil"          
## [49069] "forget"            "things"            "past"             
## [49072] "said"              "strider"           "many"             
## [49075] "things"            "can"               "tell"             
## [49078] "remembered"        "rivendell"         "often"            
## [49081] "rivendell"         "said"              "frodo"            
## [49084] "said"              "strider"           "dwelt"            
## [49087] "still"             "return"            "may"              
## [49090] "heart"             "fate"              "sit"              
## [49093] "peace"             "even"              "fair"             
## [49096] "house"             "elrond"            "hills"            
## [49099] "now"               "began"             "shut"             
## [49102] "road"              "behind"            "held"             
## [49105] "way"               "river"             "bruinen"          
## [49108] "now"               "hidden"            "view"             
## [49111] "travellers"        "came"              "long"             
## [49114] "valley"            "narrow"            "deeply"           
## [49117] "cloven"            "dark"              "silent"           
## [49120] "trees"             "old"               "twisted"          
## [49123] "roots"             "hung"              "cliffs"           
## [49126] "piled"             "behind"            "mounting"         
## [49129] "slopes"            "pine"              "wood"             
## [49132] "hobbits"           "grew"              "weary"            
## [49135] "advanced"          "slowly"            "pick"             
## [49138] "way"               "pathless"          "country"          
## [49141] "encumbered"        "fallen"            "trees"            
## [49144] "tumbled"           "rocks"             "long"             
## [49147] "avoided"           "climbing"          "frodos"           
## [49150] "sake"              "fact"              "difficult"        
## [49153] "find"              "way"               "narrow"           
## [49156] "dales"             "two"               "days"             
## [49159] "country"           "weather"           "turned"           
## [49162] "wet"               "wind"              "began"            
## [49165] "blow"              "steadily"          "west"             
## [49168] "pour"              "water"             "distant"          
## [49171] "seas"              "dark"              "heads"            
## [49174] "hills"             "fine"              "drenching"        
## [49177] "rain"              "nightfall"         "soaked"           
## [49180] "camp"              "cheerless"         "get"              
## [49183] "fire"              "burn"              "next"             
## [49186] "day"               "hills"             "rose"             
## [49189] "still"             "higher"            "steeper"          
## [49192] "forced"            "turn"              "away"             
## [49195] "northwards"        "course"            "strider"          
## [49198] "seemed"            "getting"           "anxious"          
## [49201] "nearly"            "ten"               "days"             
## [49204] "weathertop"        "stock"             "provisions"       
## [49207] "beginning"         "run"               "low"              
## [49210] "went"              "raining"           "night"            
## [49213] "camped"            "stony"             "shelf"            
## [49216] "rock"              "wall"              "behind"           
## [49219] "shallow"           "cave"              "mere"             
## [49222] "scoop"             "cliff"             "frodo"            
## [49225] "restless"          "cold"              "wet"              
## [49228] "made"              "wound"             "painful"          
## [49231] "ever"              "ache"              "sense"            
## [49234] "deadly"            "chill"             "took"             
## [49237] "away"              "sleep"             "lay"              
## [49240] "tossing"           "turning"           "listening"        
## [49243] "fearfully"         "stealthy"          "night"            
## [49246] "noises"            "wind"              "chinks"           
## [49249] "rock"              "water"             "dripping"         
## [49252] "crack"             "sudden"            "rattling"         
## [49255] "fall"              "loosened"          "stone"            
## [49258] "felt"              "black"             "shapes"           
## [49261] "advancing"         "smother"           "sat"              
## [49264] "saw"               "nothing"           "back"             
## [49267] "strider"           "sitting"           "hunched"          
## [49270] "smoking"           "pipe"              "watching"         
## [49273] "lay"               "passed"            "uneasy"           
## [49276] "dream"             "walked"            "grass"            
## [49279] "garden"            "shire"             "seemed"           
## [49282] "faint"             "dim"               "less"             
## [49285] "clear"             "tall"              "black"            
## [49288] "shadows"           "stood"             "looking"          
## [49291] "hedge"             "morning"           "woke"             
## [49294] "find"              "rain"              "stopped"          
## [49297] "clouds"            "still"             "thick"            
## [49300] "breaking"          "pale"              "strips"           
## [49303] "blue"              "appeared"          "wind"             
## [49306] "shifting"          "start"             "early"            
## [49309] "immediately"       "cold"              "comfortless"      
## [49312] "breakfast"         "strider"           "went"             
## [49315] "alone"             "telling"           "others"           
## [49318] "remain"            "shelter"           "cliff"            
## [49321] "came"              "back"              "going"            
## [49324] "climb"             "get"               "look"             
## [49327] "lie"               "land"              "returned"         
## [49330] "reassuring"        "come"              "far"              
## [49333] "north"             "said"              "must"             
## [49336] "find"              "way"               "turn"             
## [49339] "back"              "southwards"        "keep"             
## [49342] "going"             "shall"             "get"              
## [49345] "ettendales"        "far"               "north"            
## [49348] "rivendell"         "troll"             "country"          
## [49351] "little"            "known"             "perhaps"          
## [49354] "find"              "way"               "come"             
## [49357] "round"             "rivendell"         "north"            
## [49360] "take"              "long"              "know"             
## [49363] "way"               "food"              "last"             
## [49366] "somehow"           "must"              "find"             
## [49369] "ford"              "bruinen"           "rest"             
## [49372] "day"               "spent"             "scrambling"       
## [49375] "rocky"             "ground"            "found"            
## [49378] "passage"           "two"               "hills"            
## [49381] "led"               "valley"            "running"          
## [49384] "south"             "east"              "direction"        
## [49387] "wished"            "take"              "towards"          
## [49390] "end"               "day"               "found"            
## [49393] "road"              "barred"            "ridge"            
## [49396] "high"              "land"              "dark"             
## [49399] "edge"              "sky"               "broken"           
## [49402] "many"              "bare"              "points"           
## [49405] "like"              "teeth"             "blunted"          
## [49408] "saw"               "choice"            "going"            
## [49411] "back"              "climbing"          "decided"          
## [49414] "attempt"           "climb"             "proved"           
## [49417] "difficult"         "long"              "frodo"            
## [49420] "obliged"           "dismount"          "struggle"         
## [49423] "along"             "foot"              "even"             
## [49426] "often"             "despaired"         "getting"          
## [49429] "pony"              "indeed"            "finding"          
## [49432] "path"              "burdened"          "light"            
## [49435] "nearly"            "gone"              "exhausted"        
## [49438] "last"              "reached"           "top"              
## [49441] "climbed"           "narrow"            "saddle"           
## [49444] "two"               "higher"            "points"           
## [49447] "land"              "fell"              "steeply"          
## [49450] "away"              "short"             "distance"         
## [49453] "ahead"             "frodo"             "threw"            
## [49456] "lay"               "ground"            "shivering"        
## [49459] "left"              "arm"               "lifeless"         
## [49462] "side"              "shoulder"          "felt"             
## [49465] "icy"               "claws"             "laid"             
## [49468] "upon"              "trees"             "rocks"            
## [49471] "seemed"            "shadowy"           "dim"              
## [49474] "go"                "said"              "merry"            
## [49477] "strider"           "afraid"            "much"             
## [49480] "frodo"             "dreadfully"        "anxious"          
## [49483] "think"             "will"              "able"             
## [49486] "cure"              "rivendell"         "ever"             
## [49489] "get"               "shall"             "see"              
## [49492] "answered"          "strider"           "nothing"          
## [49495] "can"               "wilderness"        "chiefly"          
## [49498] "wound"             "anxious"           "press"            
## [49501] "agree"             "can"               "go"               
## [49504] "tonight"           "matter"            "master"           
## [49507] "asked"             "sam"               "low"              
## [49510] "voice"             "looking"           "appealingly"      
## [49513] "strider"           "wound"             "small"            
## [49516] "already"           "closed"            "theres"           
## [49519] "nothing"           "seen"              "cold"             
## [49522] "white"             "mark"              "shoulder"         
## [49525] "frodo"             "touched"           "weapons"          
## [49528] "enemy"             "said"              "strider"          
## [49531] "poison"            "evil"              "work"             
## [49534] "beyond"            "skill"             "drive"            
## [49537] "give"              "hope"              "sam"              
## [49540] "night"             "cold"              "high"             
## [49543] "ridge"             "lit"               "small"            
## [49546] "fire"              "gnarled"           "roots"            
## [49549] "old"               "pine"              "hung"             
## [49552] "shallow"           "pit"               "looked"           
## [49555] "stone"             "quarried"          "sat"              
## [49558] "huddled"           "together"          "wind"             
## [49561] "blew"              "chill"             "pass"             
## [49564] "heard"             "tree"              "tops"             
## [49567] "lower"             "moaning"           "sighing"          
## [49570] "frodo"             "lay"               "half"             
## [49573] "dream"             "imagining"         "endless"          
## [49576] "dark"              "wings"             "sweeping"         
## [49579] "wings"             "rode"              "pursuers"         
## [49582] "sought"            "hollows"           "hills"            
## [49585] "morning"           "dawned"            "bright"           
## [49588] "fair"              "air"               "clean"            
## [49591] "light"             "pale"              "clear"            
## [49594] "rain"              "washed"            "sky"              
## [49597] "hearts"            "encouraged"        "hey"              
## [49600] "longed"            "sun"               "warm"             
## [49603] "cold"              "stiff"             "limbs"            
## [49606] "soon"              "light"             "strider"          
## [49609] "took"              "merry"             "went"             
## [49612] "survey"            "country"           "height"           
## [49615] "east"              "pass"              "sun"              
## [49618] "risen"             "shining"           "brightly"         
## [49621] "returned"          "comforting"        "news"             
## [49624] "now"               "going"             "less"             
## [49627] "right"             "direction"         "went"             
## [49630] "side"              "ridge"             "mountains"        
## [49633] "left"              "way"               "ahead"            
## [49636] "strider"           "caught"            "glimpse"          
## [49639] "loudwater"         "knew"              "though"           
## [49642] "hidden"            "view"              "road"             
## [49645] "ford"              "far"               "river"            
## [49648] "lay"               "side"              "nearest"          
## [49651] "must"              "make"              "road"             
## [49654] "said"              "hope"              "find"             
## [49657] "path"              "hills"             "whatever"         
## [49660] "danger"            "may"               "beset"            
## [49663] "road"              "way"               "ford"             
## [49666] "soon"              "eaten"             "set"              
## [49669] "climbed"           "slowly"            "southern"         
## [49672] "side"              "ridge"             "way"              
## [49675] "much"              "easier"            "expected"         
## [49678] "slope"             "far"               "less"             
## [49681] "steep"             "side"              "long"             
## [49684] "frodo"             "able"              "ride"             
## [49687] "bill"              "fernys"            "poor"             
## [49690] "old"               "pony"              "developing"       
## [49693] "unexpected"        "talent"            "picking"          
## [49696] "path"              "sparing"           "rider"            
## [49699] "many"              "jolts"             "possible"         
## [49702] "spirits"           "party"             "rose"             
## [49705] "even"              "frodo"             "felt"             
## [49708] "better"            "morning"           "light"            
## [49711] "every"             "now"               "mist"             
## [49714] "seemed"            "obscure"           "sight"            
## [49717] "passed"            "hands"             "eyes"             
## [49720] "pippin"            "little"            "ahead"            
## [49723] "others"            "suddenly"          "turned"           
## [49726] "round"             "called"            "path"             
## [49729] "cried"             "came"              "saw"              
## [49732] "made"              "mistake"           "clearly"          
## [49735] "beginnings"        "path"              "climbed"          
## [49738] "many"              "windings"          "woods"            
## [49741] "faded"             "away"              "hill"             
## [49744] "top"               "behind"            "places"           
## [49747] "now"               "faint"             "overgrown"        
## [49750] "choked"            "fallen"            "stones"           
## [49753] "trees"             "one"               "time"             
## [49756] "seemed"            "much"              "used"             
## [49759] "path"              "made"              "strong"           
## [49762] "arms"              "heavy"             "feet"             
## [49765] "old"               "trees"             "cut"              
## [49768] "broken"            "large"             "rocks"            
## [49771] "cloven"            "heaved"            "aside"            
## [49774] "make"              "way"               "followed"         
## [49777] "track"             "offered"           "much"             
## [49780] "easiest"           "way"               "went"             
## [49783] "cautiously"        "anxiety"           "increased"        
## [49786] "came"              "dark"              "woods"            
## [49789] "path"              "grew"              "plainer"          
## [49792] "broader"           "suddenly"          "coming"           
## [49795] "belt"              "fir"               "trees"            
## [49798] "ran"               "steeply"           "slope"            
## [49801] "turned"            "sharply"           "left"             
## [49804] "round"             "comer"             "rocky"            
## [49807] "shoulder"          "hill"              "came"             
## [49810] "comer"             "looked"            "round"            
## [49813] "saw"               "path"              "ran"              
## [49816] "level"             "strip"             "face"             
## [49819] "low"               "cliff"             "overhung"         
## [49822] "trees"             "stony"             "wall"             
## [49825] "door"              "hanging"           "crookedly"        
## [49828] "ajar"              "upon"              "one"              
## [49831] "great"             "hinge"             "outside"          
## [49834] "door"              "halted"            "cave"             
## [49837] "rock"              "chamber"           "behind"           
## [49840] "gloom"             "inside"            "nothing"          
## [49843] "seen"              "strider"           "sam"              
## [49846] "merry"             "pushing"           "strength"         
## [49849] "managed"           "open"              "door"             
## [49852] "little"            "wider"             "strider"          
## [49855] "merry"             "went"              "go"               
## [49858] "far"               "floor"             "lay"              
## [49861] "many"              "old"               "bones"            
## [49864] "nothing"           "else"              "seen"             
## [49867] "near"              "entrance"          "except"           
## [49870] "great"             "empty"             "jars"             
## [49873] "broken"            "pots"              "surely"           
## [49876] "troll"             "hole"              "ever"             
## [49879] "one"               "said"              "pippin"           
## [49882] "come"              "two"               "let"              
## [49885] "us"                "get"               "away"             
## [49888] "now"               "know"              "made"             
## [49891] "path"              "better"            "get"              
## [49894] "quick"             "need"              "think"            
## [49897] "said"              "strider"           "coining"          
## [49900] "certainly"         "troll"             "hole"             
## [49903] "seems"             "long"              "forsaken"         
## [49906] "dont"              "think"             "need"             
## [49909] "afraid"            "let"               "us"               
## [49912] "go"                "warily"            "shall"            
## [49915] "see"               "path"              "went"             
## [49918] "door"              "turning"           "right"            
## [49921] "across"            "level"             "space"            
## [49924] "plunged"           "thick"             "wooded"           
## [49927] "slope"             "pippin"            "liking"           
## [49930] "show"              "strider"           "still"            
## [49933] "afraid"            "went"              "ahead"            
## [49936] "merry"             "sam"               "strider"          
## [49939] "came"              "behind"            "one"              
## [49942] "side"              "frodos"            "pony"             
## [49945] "path"              "now"               "broad"            
## [49948] "enough"            "four"              "five"             
## [49951] "hobbits"           "walk"              "abreast"          
## [49954] "gone"              "far"               "pippin"           
## [49957] "came"              "running"           "back"             
## [49960] "followed"          "merry"             "looked"           
## [49963] "terrified"         "trolls"            "pippin"           
## [49966] "panted"            "clearing"          "woods"            
## [49969] "far"               "got"               "sight"            
## [49972] "tree"              "trunks"            "large"            
## [49975] "will"              "come"              "look"             
## [49978] "said"              "strider"           "picking"          
## [49981] "stick"             "frodo"             "said"             
## [49984] "nothing"           "sam"               "looked"           
## [49987] "scared"            "sun"               "now"              
## [49990] "high"              "shone"             "half"             
## [49993] "stripped"          "branches"          "trees"            
## [49996] "lit"               "clearing"          "bright"           
## [49999] "patches"           "light"             "halted"           
## [50002] "suddenly"          "edge"              "peered"           
## [50005] "tree"              "trunks"            "holding"          
## [50008] "breath"            "stood"             "trolls"           
## [50011] "three"             "large"             "trolls"           
## [50014] "one"               "stooping"          "two"              
## [50017] "stood"             "staring"           "strider"          
## [50020] "walked"            "forward"           "unconcernedly"    
## [50023] "get"               "old"               "stone"            
## [50026] "said"              "broke"             "stick"            
## [50029] "upon"              "stooping"          "troll"            
## [50032] "nothing"           "happened"          "gasp"             
## [50035] "astonishment"      "hobbits"           "even"             
## [50038] "frodo"             "laughed"           "well"             
## [50041] "said"              "forgetting"        "family"           
## [50044] "history"           "must"              "three"            
## [50047] "caught"            "gandalf"           "quarrelling"      
## [50050] "right"             "way"               "cook"             
## [50053] "thirteen"          "dwarves"           "one"              
## [50056] "hobbit"            "idea"              "anywhere"         
## [50059] "near"              "place"             "said"             
## [50062] "pippin"            "knew"              "story"            
## [50065] "well"              "bilbo"             "frodo"            
## [50068] "told"              "often"             "matter"           
## [50071] "fact"              "never"             "half"             
## [50074] "believed"          "even"              "now"              
## [50077] "looked"            "stone"             "trolls"           
## [50080] "suspicion"         "wondering"         "magic"            
## [50083] "might"             "suddenly"          "bring"            
## [50086] "life"              "forgetting"        "family"           
## [50089] "history"           "ever"              "knew"             
## [50092] "trolls"            "said"              "strider"          
## [50095] "broad"             "daylight"          "bright"           
## [50098] "sun"               "yet"               "come"             
## [50101] "back"              "trying"            "scare"            
## [50104] "tale"              "live"              "trolls"           
## [50107] "waiting"           "us"                "glade"            
## [50110] "case"              "might"             "noticed"          
## [50113] "one"               "old"               "birds"            
## [50116] "nest"              "behind"            "ear"              
## [50119] "unusual"           "ornament"          "live"             
## [50122] "troll"             "laughed"           "frodo"            
## [50125] "felt"              "spirits"           "reviving"         
## [50128] "reminder"          "bilbos"            "first"            
## [50131] "successful"        "adventure"         "heartening"       
## [50134] "sun"               "warm"              "comforting"       
## [50137] "mist"              "eyes"              "seemed"           
## [50140] "lifting"           "little"            "rested"           
## [50143] "time"              "glade"             "took"             
## [50146] "mid"               "day"               "meal"             
## [50149] "right"             "shadow"            "trolls"           
## [50152] "large"             "legs"              "wont"             
## [50155] "somebody"          "give"              "us"               
## [50158] "bit"               "song"              "sun"              
## [50161] "high"              "said"              "merry"            
## [50164] "finished"          "havent"            "song"             
## [50167] "tale"              "days"              "since"            
## [50170] "weathertop"        "said"              "frodo"            
## [50173] "others"            "looked"            "dont"             
## [50176] "worry"             "added"             "feel"             
## [50179] "much"              "better"            "dont"             
## [50182] "think"             "sing"              "perhaps"          
## [50185] "sam"               "dig"               "something"        
## [50188] "memory"            "come"              "sam"              
## [50191] "said"              "merry"             "theres"           
## [50194] "stored"            "head"              "let"              
## [50197] "dont"              "know"              "said"             
## [50200] "sam"               "suit"              "aint"             
## [50203] "call"              "proper"            "poetry"           
## [50206] "understand"        "just"              "bit"              
## [50209] "nonsense"          "old"               "images"           
## [50212] "brought"           "mind"              "standing"         
## [50215] "hands"             "behind"            "back"             
## [50218] "school"            "began"             "sing"             
## [50221] "old"               "tune"              "troll"            
## [50224] "sat"               "alone"             "seat"             
## [50227] "stone"             "munched"           "mumbled"          
## [50230] "bare"              "old"               "bone"             
## [50233] "many"              "year"              "gnawed"           
## [50236] "near"              "meat"              "hard"             
## [50239] "come"              "done"              "gum"              
## [50242] "case"              "hills"             "dwelt"            
## [50245] "alone"             "meat"              "hard"             
## [50248] "come"              "came"              "tom"              
## [50251] "big"               "boots"             "said"             
## [50254] "troll"             "pray"              "yon"              
## [50257] "looks"             "like"              "shin"             
## [50260] "nuncle"            "tim"               "lyin"             
## [50263] "graveyard"         "caveyard"          "paveyard"         
## [50266] "many"              "year"              "tim"              
## [50269] "gone"              "thought"           "lyin"             
## [50272] "graveyard"         "lad"               "said"             
## [50275] "troll"             "bone"              "stole"            
## [50278] "bones"             "lie"               "hole"             
## [50281] "thy"               "nuncle"            "dead"             
## [50284] "lump"              "lead"              "afore"            
## [50287] "found"             "shinbone"          "tinbone"          
## [50290] "thinbone"          "can"               "spare"            
## [50293] "share"             "poor"              "old"              
## [50296] "troll"             "dont"              "need"             
## [50299] "shinbone"          "said"              "tom"              
## [50302] "dont"              "see"               "likes"            
## [50305] "thee"              "without"           "axin"             
## [50308] "leave"             "go"                "makin"            
## [50311] "free"              "shank"             "shin"             
## [50314] "fathers"           "kin"               "hand"             
## [50317] "old"               "bone"              "rover"            
## [50320] "trover"            "though"            "dead"             
## [50323] "belongs"           "hand"              "old"              
## [50326] "bone"              "couple"            "pins"             
## [50329] "says"              "troll"             "grins"            
## [50332] "ill"               "eat"               "thee"             
## [50335] "gnaw"              "thy"               "shins"            
## [50338] "bit"               "fresh"             "meal"             
## [50341] "will"              "go"                "sweet"            
## [50344] "ill"               "try"               "teeth"            
## [50347] "thee"              "now"               "hee"              
## [50350] "now"               "see"               "now"              
## [50353] "im"                "tired"             "gnawing"          
## [50356] "old"               "bones"             "skins"            
## [50359] "ive"               "mind"              "dine"             
## [50362] "thee"              "now"               "just"             
## [50365] "thought"           "dinner"            "caught"           
## [50368] "found"             "hands"             "hold"             
## [50371] "naught"            "mind"              "tom"              
## [50374] "slipped"           "behind"            "gave"             
## [50377] "boot"              "larn"              "warn"             
## [50380] "darn"              "bump"              "boot"             
## [50383] "seat"              "tom"               "thought"          
## [50386] "way"               "larn"              "harder"           
## [50389] "stone"             "flesh"             "bone"             
## [50392] "troll"             "sits"              "hills"            
## [50395] "alone"             "well"              "set"              
## [50398] "boot"              "mountains"         "root"             
## [50401] "seat"              "troll"             "dont"             
## [50404] "feel"              "peel"              "heal"             
## [50407] "old"               "troll"             "laughed"          
## [50410] "heard"             "tom"               "groan"            
## [50413] "knew"              "toes"              "feel"             
## [50416] "toms"              "leg"               "game"             
## [50419] "since"             "home"              "came"             
## [50422] "bootless"          "foot"              "lasting"          
## [50425] "lame"              "troll"             "dont"             
## [50428] "care"              "hes"               "still"            
## [50431] "bone"              "boned"             "owner"            
## [50434] "doner"             "boner"             "trolls"           
## [50437] "old"               "seat"              "still"            
## [50440] "bone"              "boned"             "owner"            
## [50443] "well"              "thats"             "warning"          
## [50446] "us"                "laughed"           "merry"            
## [50449] "well"              "used"              "stick"            
## [50452] "hand"              "strider"           ""                 
## [50455] ""                  "come"              "sam"              
## [50458] "asked"             "pippin"            "ive"              
## [50461] "never"             "heard"             "words"            
## [50464] "sam"               "muttered"          "something"        
## [50467] "inaudible"         "head"              "course"           
## [50470] "said"              "frodo"             "learning"         
## [50473] "lot"               "sam"               "gamgee"           
## [50476] "journey"           "first"             "conspirator"      
## [50479] "now"               "hes"               "jester"           
## [50482] "hell"              "end"               "becoming"         
## [50485] "wizard"            "warrior"           "hope"             
## [50488] "said"              "sam"               "dont"             
## [50491] "want"              "neither"           "afternoon"        
## [50494] "went"              "woods"             "probably"         
## [50497] "following"         "track"             "gandalf"          
## [50500] "bilbo"             "dwarves"           "used"             
## [50503] "many"              "years"             "miles"            
## [50506] "came"              "top"               "high"             
## [50509] "bank"              "road"              "point"            
## [50512] "road"              "left"              "hoarwell"         
## [50515] "far"               "behind"            "narrow"           
## [50518] "valley"            "now"               "clung"            
## [50521] "close"             "feet"              "hills"            
## [50524] "rolling"           "winding"           "eastward"         
## [50527] "among"             "woods"             "heather"          
## [50530] "covered"           "slopes"            "towards"          
## [50533] "ford"              "mountains"         "far"              
## [50536] "bank"              "strider"           "pointed"          
## [50539] "stone"             "grass"             "roughly"          
## [50542] "cut"               "now"               "much"             
## [50545] "weathered"         "still"             "seen"             
## [50548] "dwarf"             "runes"             "secret"           
## [50551] "marks"             "said"              "merry"            
## [50554] "must"              "stone"             "marked"           
## [50557] "place"             "trolls"            "gold"             
## [50560] "hidden"            "much"              "left"             
## [50563] "bilbos"            "share"             "wonder"           
## [50566] "frodo"             "frodo"             "looked"           
## [50569] "stone"             "wished"            "bilbo"            
## [50572] "brought"           "home"              "treasure"         
## [50575] "perilous"          "less"              "easy"             
## [50578] "pan"               "none"              "said"             
## [50581] "bilbo"             "gave"              "away"             
## [50584] "told"              "feel"              "really"           
## [50587] "came"              "robbers"           "road"             
## [50590] "lay"               "quiet"             "long"             
## [50593] "shadows"           "early"             "evening"          
## [50596] "sign"              "travellers"        "seen"             
## [50599] "now"               "possible"          "course"           
## [50602] "take"              "climbed"           "bank"             
## [50605] "turning"           "left"              "went"             
## [50608] "fast"              "soon"              "shoulder"         
## [50611] "hills"             "cut"               "light"            
## [50614] "fast"              "westering"         "sun"              
## [50617] "cold"              "wind"              "flowed"           
## [50620] "meet"              "mountains"         "ahead"            
## [50623] "beginning"         "look"              "place"            
## [50626] "road"              "camp"              "night"            
## [50629] "heard"             "sound"             "brought"          
## [50632] "sudden"            "fear"              "back"             
## [50635] "hearts"            "noise"             "hoofs"            
## [50638] "behind"            "looked"            "back"             
## [50641] "see"               "far"               "many"             
## [50644] "windings"          "rollings"          "road"             
## [50647] "quickly"           "scrambled"         "beaten"           
## [50650] "way"               "deep"              "heather"          
## [50653] "bilberry"          "brushwood"         "slopes"           
## [50656] "came"              "small"             "patch"            
## [50659] "thick"             "growing"           "hazels"           
## [50662] "peered"            "among"             "bushes"           
## [50665] "see"               "road"              "faint"            
## [50668] "grey"              "failing"           "light"            
## [50671] "thirty"            "feel"              "sound"            
## [50674] "hoofs"             "drew"              "nearer"           
## [50677] "going"             "fast"              "light"            
## [50680] "clippety"          "clippely"          "clip"             
## [50683] "faintly"           "blown"             "away"             
## [50686] "breeze"            "seemed"            "catch"            
## [50689] "dim"               "ringing"           "small"            
## [50692] "bells"             "tinkling"          "sound"            
## [50695] "like"              "black"             "riders"           
## [50698] "horse"             "said"              "frodo"            
## [50701] "listening"         "intently"          "hobbits"          
## [50704] "agreed"            "hopefully"         "remained"         
## [50707] "full"              "suspicion"         "fear"             
## [50710] "pursuit"           "long"              "sound"            
## [50713] "behind"            "seemed"            "ominous"          
## [50716] "unfriendly"        "strider"           "now"              
## [50719] "leaning"           "forward"           "stooped"          
## [50722] "ground"            "hand"              "ear"              
## [50725] "look"              "joy"               "face"             
## [50728] "light"             "faded"             "leaves"           
## [50731] "bushes"            "rustled"           "softly"           
## [50734] "clearer"           "nearer"            "now"              
## [50737] "bells"             "jingled"           "clippety"         
## [50740] "clip"              "came"              "quick"            
## [50743] "trotting"          "feet"              "suddenly"         
## [50746] "view"              "came"              "white"            
## [50749] "horse"             "gleaming"          "shadows"          
## [50752] "running"           "swiftly"           "dusk"             
## [50755] "headstall"         "flickered"         "flashed"          
## [50758] "studded"           "gems"              "like"             
## [50761] "living"            "stars"             "riders"           
## [50764] "cloak"             "streamed"          "behind"           
## [50767] "hood"              "thrown"            "back"             
## [50770] "golden"            "hair"              "flowed"           
## [50773] "shimmering"        "wind"              "speed"            
## [50776] "frodo"             "appeared"          "white"            
## [50779] "light"             "shining"           "form"             
## [50782] "raiment"           "rider"             "thin"             
## [50785] "veil"              "strider"           "sprang"           
## [50788] "hiding"            "dashed"            "towards"          
## [50791] "road"              "leaping"           "cry"              
## [50794] "heather"           "even"              "moved"            
## [50797] "called"            "rider"             "reined"           
## [50800] "horse"             "halted"            "looking"          
## [50803] "towards"           "thicket"           "stood"            
## [50806] "saw"               "strider"           "dismounted"       
## [50809] "ran"               "meet"              "calling"          
## [50812] "ai"                "na"                "vedui"            
## [50815] "dúnadan"           "mae"               "govannen"         
## [50818] "speech"            "clear"             "ringing"          
## [50821] "voice"             "left"              "doubt"            
## [50824] "hearts"            "rider"             "elven"            
## [50827] "folk"              "others"            "dwelt"            
## [50830] "wide"              "world"             "voices"           
## [50833] "fair"              "hear"              "seemed"           
## [50836] "note"              "haste"             "fear"             
## [50839] "call"              "saw"               "now"              
## [50842] "speaking"          "quickly"           "urgently"         
## [50845] "strider"           "soon"              "strider"          
## [50848] "beckoned"          "hobbits"           "left"             
## [50851] "bushes"            "hurried"           "road"             
## [50854] "glorfindel"        "dwells"            "house"            
## [50857] "elrond"            "said"              "strider"          
## [50860] "hail"              "well"              "met"              
## [50863] "last"              "said"              "elf"              
## [50866] "lord"              "frodo"             "sent"             
## [50869] "rivendell"         "look"              "feared"           
## [50872] "danger"            "upon"              "road"             
## [50875] "gandalf"           "reached"           "rivendell"        
## [50878] "cried"             "frodo"             "joyfully"         
## [50881] "departed"          "nine"              "days"             
## [50884] "ago"               "answered"          "glorfindel"       
## [50887] "elrond"            "received"          "news"             
## [50890] "troubled"          "kindred"           "journeying"       
## [50893] "land"              "beyond"            "baranduin"        
## [50896] "learned"           "things"            "amiss"            
## [50899] "sent"              "messages"          "swiftly"          
## [50902] "said"              "nine"              "abroad"           
## [50905] "astray"            "bearing"           "great"            
## [50908] "burden"            "without"           "guidance"         
## [50911] "gandalf"           "returned"          "even"             
## [50914] "rivendell"         "can"               "ride"             
## [50917] "openly"            "nine"              "elrond"           
## [50920] "sent"              "north"             "west"             
## [50923] "south"             "thought"           "might"            
## [50926] "turn"              "far"               "aside"            
## [50929] "avoid"             "pursuit"           "become"           
## [50932] "lost"              "wilderness"        "lot"              
## [50935] "take"              "road"              "came"             
## [50938] "bridge"            "mitheithel"        "left"             
## [50941] "token"             "nigh"              "seven"            
## [50944] "days"              "ago"               "three"            
## [50947] "servants"          "sauron"            "upon"             
## [50950] "bridge"            "withdrew"          "pursued"          
## [50953] "westward"          "came"              "also"             
## [50956] "upon"              "two"               "others"           
## [50959] "turned"            "away"              "southward"        
## [50962] "since"             "searched"          "trail"            
## [50965] "two"               "days"              "ago"              
## [50968] "found"             "followed"          "bridge"           
## [50971] "today"             "marked"            "descended"        
## [50974] "hills"             "come"              "time"             
## [50977] "news"              "since"             "must"             
## [50980] "risk"              "peril"             "road"             
## [50983] "go"                "five"              "behind"           
## [50986] "us"                "find"              "trail"            
## [50989] "upon"              "road"              "will"             
## [50992] "ride"              "us"                "like"             
## [50995] "wind"              "four"              "may"              
## [50998] "know"              "fear"              "may"              
## [51001] "find"              "ford"              "already"          
## [51004] "held"              "us"                "glorfindel"       
## [51007] "speaking"          "shades"            "evening"          
## [51010] "deepened"          "frodo"             "felt"             
## [51013] "great"             "weariness"         "come"             
## [51016] "ever"              "since"             "sun"              
## [51019] "began"             "sink"              "mist"             
## [51022] "eyes"              "darkened"          "felt"             
## [51025] "shadow"            "coming"            "faces"            
## [51028] "friends"           "now"               "pain"             
## [51031] "assailed"          "felt"              "cold"             
## [51034] "swayed"            "clutching"         "sams"             
## [51037] "arm"               "master"            "sick"             
## [51040] "wounded"           "said"              "sam"              
## [51043] "angrily"           "cant"              "go"               
## [51046] "riding"            "nightfall"         "needs"            
## [51049] "rest"              "glorfindel"        "caught"           
## [51052] "frodo"             "sank"              "ground"           
## [51055] "taking"            "gently"            "arms"             
## [51058] "looked"            "face"              "grave"            
## [51061] "anxiety"           "briefly"           "strider"          
## [51064] "told"              "attack"            "camp"             
## [51067] "weathertop"        "deadly"            "knife"            
## [51070] "drew"              "hilt"              "kept"             
## [51073] "handed"            "elf"               "glorfindel"       
## [51076] "shuddered"         "took"              "looked"           
## [51079] "intently"          "evil"              "things"           
## [51082] "written"           "hilt"              "said"             
## [51085] "though"            "maybe"             "eyes"             
## [51088] "see"               "keep"              "aragorn"          
## [51091] "till"              "reach"             "house"            
## [51094] "elrond"            "wary"              "handle"           
## [51097] "little"            "may"               "alas"             
## [51100] "wounds"            "weapon"            "beyond"           
## [51103] "skill"             "heal"              "will"             
## [51106] "can"               "urge"              "now"              
## [51109] "go"                "without"           "rest"             
## [51112] "searched"          "wound"             "frodos"           
## [51115] "shoulder"          "fingers"           "face"             
## [51118] "grew"              "graver"            "learned"          
## [51121] "disquieted"        "frodo"             "felt"             
## [51124] "chill"             "lessen"            "side"             
## [51127] "arm"               "little"            "warmth"           
## [51130] "crept"             "shoulder"          "hand"             
## [51133] "pain"              "grew"              "easier"           
## [51136] "dusk"              "evening"           "seemed"           
## [51139] "grow"              "lighter"           "cloud"            
## [51142] "withdrawn"         "saw"               "friends"          
## [51145] "faces"             "clearly"           "measure"          
## [51148] "new"               "hope"              "strength"         
## [51151] "returned"          "shall"             "ride"             
## [51154] "horse"             "said"              "glorfindel"       
## [51157] "will"              "shorten"           "stirrups"         
## [51160] "saddle"            "skins"             "must"             
## [51163] "sit"               "tight"             "can"              
## [51166] "need"              "fear"              "horse"            
## [51169] "will"              "let"               "rider"            
## [51172] "fall"              "command"           "bear"             
## [51175] "pace"              "light"             "smooth"           
## [51178] "danger"            "presses"           "near"             
## [51181] "will"              "bear"              "away"             
## [51184] "speed"             "even"              "black"            
## [51187] "steeds"            "enemy"             "rival"            
## [51190] "will"              "said"              "frodo"            
## [51193] "shall"             "ride"              "carried"          
## [51196] "rivendell"         "anywhere"          "else"             
## [51199] "leaving"           "friends"           "behind"           
## [51202] "danger"            "glorfindel"        "smiled"           
## [51205] "doubt"             "much"              "said"             
## [51208] "friends"           "danger"            "pursuit"          
## [51211] "follow"            "leave"             "us"               
## [51214] "peace"             "think"             "frodo"            
## [51217] "bear"              "brings"            "us"               
## [51220] "peril"             "frodo"             "answer"           
## [51223] "persuaded"         "mount"             "glorfindels"      
## [51226] "white"             "horse"             "pony"             
## [51229] "laden"             "instead"           "great"            
## [51232] "part"              "others"            "burdens"          
## [51235] "now"               "marched"           "lighter"          
## [51238] "time"              "made"              "good"             
## [51241] "speed"             "hobbits"           "began"            
## [51244] "find"              "hard"              "keep"             
## [51247] "swift"             "tireless"          "feet"             
## [51250] "elf"               "led"               "mouth"            
## [51253] "darkness"          "still"             "deep"             
## [51256] "clouded"           "night"             "neither"          
## [51259] "star"              "moon"              "grey"             
## [51262] "dawn"              "allow"             "halt"             
## [51265] "pippin"            "merry"             "sam"              
## [51268] "time"              "nearly"            "asleep"           
## [51271] "stumbling"         "legs"              "even"             
## [51274] "strider"           "seemed"            "sag"              
## [51277] "shoulders"         "weary"             "frodo"            
## [51280] "sat"               "upon"              "horse"            
## [51283] "dark"              "dream"             "cast"             
## [51286] "heather"           "yards"             "road"             
## [51289] "side"              "fell"              "asleep"           
## [51292] "immediately"       "seemed"            "hardly"           
## [51295] "closed"            "eyes"              "glorfindel"       
## [51298] "set"               "watch"             "slept"            
## [51301] "awoke"             "sun"               "now"              
## [51304] "climbed"           "far"               "morning"          
## [51307] "clouds"            "mists"             "night"            
## [51310] "gone"              "drink"             "said"             
## [51313] "glorfindel"        "pouring"           "turn"             
## [51316] "little"            "liquor"            "silver"           
## [51319] "studded"           "flask"             "leather"          
## [51322] "clear"             "spring"            "water"            
## [51325] "taste"             "feel"              "either"           
## [51328] "cool"              "warm"              "mouth"            
## [51331] "strength"          "vigour"            "seemed"           
## [51334] "flow"              "limbs"             "drank"            
## [51337] "eaten"             "draught"           "stale"            
## [51340] "bread"             "dried"             "fruit"            
## [51343] "now"               "left"              "seemed"           
## [51346] "satisfy"           "hunger"            "better"           
## [51349] "many"              "good"              "breakfast"        
## [51352] "shire"             "done"              "rested"           
## [51355] "rather"            "less"              "five"             
## [51358] "hours"             "took"              "road"             
## [51361] "glorfindel"        "still"             "urged"            
## [51364] "allowed"           "two"               "brief"            
## [51367] "halts"             "days"              "march"            
## [51370] "way"               "covered"           "almost"           
## [51373] "twenty"            "miles"             "nightfall"        
## [51376] "came"              "point"             "road"             
## [51379] "bent"              "right"             "ran"              
## [51382] "towards"           "bottom"            "valley"           
## [51385] "now"               "making"            "straight"         
## [51388] "bruinen"           "far"               "sign"             
## [51391] "sound"             "pursuit"           "hobbits"          
## [51394] "see"               "hear"              "often"            
## [51397] "glorfindel"        "halt"              "listen"           
## [51400] "moment"            "lagged"            "behind"           
## [51403] "look"              "anxiety"           "clouded"          
## [51406] "face"              "twice"             "spoke"            
## [51409] "strider"           "elf"               "tongue"           
## [51412] "however"           "anxious"           "guides"           
## [51415] "might"             "plain"             "hobbits"          
## [51418] "go"                "night"             "stumbling"        
## [51421] "along"             "dizzy"             "weariness"        
## [51424] "unable"            "think"             "anything"         
## [51427] "feet"              "legs"              "frodos"           
## [51430] "pain"              "redoubled"         "day"              
## [51433] "things"            "faded"             "shadows"          
## [51436] "ghostly"           "grey"              "almost"           
## [51439] "welcomed"          "coming"            "night"            
## [51442] "world"             "seemed"            "less"             
## [51445] "pale"              "empty"             "hobbits"          
## [51448] "still"             "weary"             "set"              
## [51451] "early"             "next"              "morning"          
## [51454] "many"              "miles"             "yet"              
## [51457] "go"                "ford"              "hobbled"          
## [51460] "forward"           "best"              "pace"             
## [51463] "manage"            "peril"             "will"             
## [51466] "greatest"          "just"              "ere"              
## [51469] "reach"             "river"             "said"             
## [51472] "glorfindel"        "heart"             "warns"            
## [51475] "pursuit"           "now"               "swift"            
## [51478] "behind"            "us"                "danger"           
## [51481] "may"               "waiting"           "ford"             
## [51484] "road"              "still"             "running"          
## [51487] "steadily"          "downhill"          "now"              
## [51490] "places"            "much"              "grass"            
## [51493] "either"            "side"              "hobbits"          
## [51496] "walked"            "ease"              "tired"            
## [51499] "feet"              "late"              "afternoon"        
## [51502] "came"              "place"             "road"             
## [51505] "went"              "suddenly"          "dark"             
## [51508] "shadow"            "tall"              "pine"             
## [51511] "trees"             "plunged"           "deep"             
## [51514] "cutting"           "steep"             "moist"            
## [51517] "walls"             "red"               "stone"            
## [51520] "echoes"            "ran"               "along"            
## [51523] "hurried"           "forward"           "seemed"           
## [51526] "sound"             "many"              "footfalls"        
## [51529] "following"         "gate"              "light"            
## [51532] "road"              "ran"               "end"              
## [51535] "tunnel"            "open"              "bottom"           
## [51538] "sharp"             "incline"           "saw"              
## [51541] "long"              "flat"              "mile"             
## [51544] "beyond"            "ford"              "rivendell"        
## [51547] "side"              "steep"             "brown"            
## [51550] "bank"              "threaded"          "winding"          
## [51553] "path"              "behind"            "tall"             
## [51556] "mountains"         "climbed"           "shoulder"         
## [51559] "shoulder"          "peak"              "beyond"           
## [51562] "peak"              "fading"            "sky"              
## [51565] "still"             "echo"              "following"        
## [51568] "feet"              "cutting"           "behind"           
## [51571] "rushing"           "noise"             "wind"             
## [51574] "rising"            "pouring"           "branches"         
## [51577] "pines"             "one"               "moment"           
## [51580] "glorfindel"        "turned"            "listened"         
## [51583] "sprang"            "forward"           "loud"             
## [51586] "cry"               "fly"               "called"           
## [51589] "fly"               "enemy"             "upon"             
## [51592] "us"                "white"             "horse"            
## [51595] "leaped"            "forward"           "hobbits"          
## [51598] "ran"               "slope"             "glorfindel"       
## [51601] "strider"           "followed"          "rear"             
## [51604] "guard"             "half"              "way"              
## [51607] "across"            "flat"              "suddenly"         
## [51610] "noise"             "horses"            "galloping"        
## [51613] "gate"              "trees"             "just"             
## [51616] "left"              "rode"              "black"            
## [51619] "rider"             "reined"            "horse"            
## [51622] "halted"            "swaying"           "saddle"           
## [51625] "another"           "followed"          "another"          
## [51628] "two"               "ride"              "forward"          
## [51631] "ride"              "cried"             "glorfindel"       
## [51634] "frodo"             "obey"              "strange"          
## [51637] "reluctance"        "seized"            "checking"         
## [51640] "horse"             "walk"              "turned"           
## [51643] "looked"            "back"              "riders"           
## [51646] "seemed"            "sit"               "upon"             
## [51649] "great"             "steeds"            "like"             
## [51652] "threatening"       "statues"           "upon"             
## [51655] "hill"              "dark"              "solid"            
## [51658] "woods"             "land"              "receded"          
## [51661] "mist"              "suddenly"          "knew"             
## [51664] "heart"             "silently"          "commanding"       
## [51667] "wait"              "fear"              "hatred"           
## [51670] "awoke"             "hand"              "left"             
## [51673] "bridle"            "gripped"           "hilt"             
## [51676] "sword"             "red"               "flash"            
## [51679] "drew"              "ride"              "ride"             
## [51682] "cried"             "glorfindel"        "loud"             
## [51685] "clear"             "called"            "horse"            
## [51688] "elf"               "tongue"            "noro"             
## [51691] "lim"               "noro"              "lim"              
## [51694] "asfaloth"          "white"             "horse"            
## [51697] "sprang"            "away"              "sped"             
## [51700] "like"              "wind"              "along"            
## [51703] "last"              "lap"               "road"             
## [51706] "moment"            "black"             "horses"           
## [51709] "leaped"            "hill"              "pursuit"          
## [51712] "riders"            "came"              "terrible"         
## [51715] "cry"               "frodo"             "heard"            
## [51718] "filling"           "woods"             "horror"           
## [51721] "eastfarthing"      "far"               "away"             
## [51724] "answered"          "dismay"            "frodo"            
## [51727] "friends"           "trees"             "rocks"            
## [51730] "away"              "left"              "four"             
## [51733] "riders"            "came"              "flying"           
## [51736] "two"               "rode"              "towards"          
## [51739] "frodo"             "two"               "galloped"         
## [51742] "madly"             "towards"           "ford"             
## [51745] "cut"               "escape"            "seemed"           
## [51748] "run"               "like"              "wind"             
## [51751] "grow"              "swiftly"           "larger"           
## [51754] "darker"            "courses"           "converged"        
## [51757] "frodo"             "looked"            "back"             
## [51760] "moment"            "shoulder"          "longer"           
## [51763] "see"               "friends"           "riders"           
## [51766] "behind"            "falling"           "back"             
## [51769] "even"              "great"             "steeds"           
## [51772] "match"             "speed"             "white"            
## [51775] "elf"               "horse"             "glorfindel"       
## [51778] "looked"            "forward"           "hope"             
## [51781] "faded"             "seemed"            "chance"           
## [51784] "reaching"          "ford"              "cut"              
## [51787] "others"            "lain"              "ambush"           
## [51790] "see"               "clearly"           "now"              
## [51793] "appeared"          "cast"              "aside"            
## [51796] "hoods"             "black"             "cloaks"           
## [51799] "robed"             "white"             "grey"             
## [51802] "swords"            "naked"             "pale"             
## [51805] "hands"             "helms"             "heads"            
## [51808] "cold"              "eyes"              "glittered"        
## [51811] "called"            "fell"              "voices"           
## [51814] "fear"              "now"               "filled"           
## [51817] "frodos"            "mind"              "thought"          
## [51820] "longer"            "sword"             "cry"              
## [51823] "came"              "shut"              "eyes"             
## [51826] "clung"             "horses"            "mane"             
## [51829] "wind"              "whistled"          "ears"             
## [51832] "bells"             "upon"              "harness"          
## [51835] "rang"              "wild"              "shrill"           
## [51838] "breath"            "deadly"            "cold"             
## [51841] "pierced"           "like"              "spear"            
## [51844] "last"              "spurt"             "like"             
## [51847] "flash"             "white"             "fire"             
## [51850] "elf"               "horse"             "speeding"         
## [51853] "wings"             "passed"            "right"            
## [51856] "face"              "foremost"          "rider"            
## [51859] "frodo"             "heard"             "splash"           
## [51862] "water"             "foamed"            "feet"             
## [51865] "felt"              "quick"             "heave"            
## [51868] "surge"             "horse"             "left"             
## [51871] "river"             "struggled"         "stony"            
## [51874] "path"              "climbing"          "steep"            
## [51877] "bank"              "across"            "ford"             
## [51880] "pursuers"          "close"             "behind"           
## [51883] "top"               "bank"              "horse"            
## [51886] "halted"            "turned"            "neighing"         
## [51889] "fiercely"          "nine"              "riders"           
## [51892] "waters"            "edge"              "frodos"           
## [51895] "spirit"            "quailed"           "threat"           
## [51898] "uplifted"          "faces"             "knew"             
## [51901] "nothing"           "prevent"           "crossing"         
## [51904] "easily"            "done"              "felt"             
## [51907] "useless"           "try"               "escape"           
## [51910] "long"              "uncertain"         "path"             
## [51913] "ford"              "edge"              "rivendell"        
## [51916] "riders"            "crossed"           "case"             
## [51919] "felt"              "commanded"         "urgently"         
## [51922] "halt"              "hatred"            "stirred"          
## [51925] "longer"            "strength"          "refuse"           
## [51928] "suddenly"          "foremost"          "rider"            
## [51931] "spurred"           "horse"             "forward"          
## [51934] "checked"           "water"             "reared"           
## [51937] "great"             "effort"            "frodo"            
## [51940] "sat"               "upright"           "brandished"       
## [51943] "sword"             "go"                "back"             
## [51946] "cried"             "go"                "back"             
## [51949] "land"              "mordor"            "follow"           
## [51952] "voice"             "sounded"           "thin"             
## [51955] "shrill"            "ears"              "riders"           
## [51958] "halted"            "frodo"             "power"            
## [51961] "bombadil"          "enemies"           "laughed"          
## [51964] "harsh"             "chilling"          "laughter"         
## [51967] "come"              "back"              "come"             
## [51970] "back"              "called"            "mordor"           
## [51973] "will"              "take"              "go"               
## [51976] "back"              "whispered"         "ring"             
## [51979] "ring"              "cried"             "deadly"           
## [51982] "voices"            "immediately"       "leader"           
## [51985] "urged"             "horse"             "forward"          
## [51988] "water"             "followed"          "closely"          
## [51991] "two"               "others"            "elbereth"         
## [51994] "lúthien"           "fair"              "said"             
## [51997] "frodo"             "last"              "effort"           
## [52000] "lifting"           "sword"             "shall"            
## [52003] "neither"           "ring"              "leader"           
## [52006] "now"               "half"              "across"           
## [52009] "ford"              "stood"             "menacing"         
## [52012] "stirrups"          "raised"            "hand"             
## [52015] "frodo"             "stricken"          "dumb"             
## [52018] "felt"              "tongue"            "cleave"           
## [52021] "mouth"             "heart"             "labouring"        
## [52024] "sword"             "broke"             "fell"             
## [52027] "shaking"           "hand"              "elf"              
## [52030] "horse"             "reared"            "snorted"          
## [52033] "foremost"          "black"             "horses"           
## [52036] "almost"            "set"               "foot"             
## [52039] "upon"              "shore"             "moment"           
## [52042] "came"              "roaring"           "rushing"          
## [52045] "noise"             "loud"              "waters"           
## [52048] "rolling"           "many"              "stones"           
## [52051] "dimly"             "frodo"             "saw"              
## [52054] "river"             "rise"              "along"            
## [52057] "course"            "came"              "plumed"           
## [52060] "cavalry"           "waves"             "white"            
## [52063] "flames"            "seemed"            "frodo"            
## [52066] "flicker"           "crests"            "half"             
## [52069] "fancied"           "saw"               "amid"             
## [52072] "water"             "white"             "riders"           
## [52075] "upon"              "white"             "horses"           
## [52078] "frothing"          "manes"             "three"            
## [52081] "riders"            "still"             "midst"            
## [52084] "ford"              "overwhelmed"       "disappeared"      
## [52087] "buried"            "suddenly"          "angry"            
## [52090] "foam"              "behind"            "drew"             
## [52093] "back"              "dismay"            "last"             
## [52096] "failing"           "senses"            "frodo"            
## [52099] "heard"             "cries"             "seemed"           
## [52102] "saw"               "beyond"            "riders"           
## [52105] "hesitated"         "shore"             "shining"          
## [52108] "figure"            "white"             "light"            
## [52111] "behind"            "ran"               "small"            
## [52114] "shadowy"           "forms"             "waving"           
## [52117] "flames"            "flared"            "red"              
## [52120] "grey"              "mist"              "falling"          
## [52123] "world"             "black"             "horses"           
## [52126] "filled"            "madness"           "leaping"          
## [52129] "forward"           "terror"            "bore"             
## [52132] "riders"            "rushing"           "flood"            
## [52135] "piercing"          "cries"             "drowned"          
## [52138] "roaring"           "river"             "carried"          
## [52141] "away"              "frodo"             "felt"             
## [52144] "falling"           "roaring"           "confusion"        
## [52147] "seemed"            "rise"              "engulf"           
## [52150] "together"          "enemies"           "heard"            
## [52153] "saw"               "book"              "ii"               
## [52156] "chapter"           "many"              "meetings"         
## [52159] "frodo"             "woke"              "found"            
## [52162] "lying"             "bed"               "first"            
## [52165] "thought"           "slept"             "late"             
## [52168] "long"              "unpleasant"        "dream"            
## [52171] "still"             "hovered"           "edge"             
## [52174] "memory"            "perhaps"           "ill"              
## [52177] "ceiling"           "looked"            "strange"          
## [52180] "flat"              "dark"              "beams"            
## [52183] "richly"            "carved"            "lay"              
## [52186] "little"            "longer"            "looking"          
## [52189] "patches"           "sunlight"          "wall"             
## [52192] "listening"         "sound"             "waterfall"        
## [52195] "time"              "said"              "aloud"            
## [52198] "ceiling"           "house"             "elrond"           
## [52201] "ten"               "oclock"            "morning"          
## [52204] "said"              "voice"             "morning"          
## [52207] "october"           "twenty"            "fourth"           
## [52210] "want"              "know"              "gandalf"          
## [52213] "cried"             "frodo"             "sitting"          
## [52216] "old"               "wizard"            "sitting"          
## [52219] "chair"             "open"              "window"           
## [52222] "yes"               "said"              "lucky"            
## [52225] "absurd"            "things"            "done"             
## [52228] "since"             "left"              "home"             
## [52231] "frodo"             "lay"               "felt"             
## [52234] "comfortable"       "peaceful"          "argue"            
## [52237] "case"              "think"             "get"              
## [52240] "better"            "argument"          "fully"            
## [52243] "awake"             "now"               "memory"           
## [52246] "journey"           "returning"         "disastrous"       
## [52249] "short"             "cut"               "old"              
## [52252] "forest"            "accident"          "prancing"         
## [52255] "pony"              "madness"           "putting"          
## [52258] "ring"              "dell"              "weathertop"       
## [52261] "thinking"          "things"            "trying"           
## [52264] "vain"              "bring"             "memory"           
## [52267] "arriving"          "rivendell"         "long"             
## [52270] "silence"           "broken"            "soft"             
## [52273] "puffs"             "gandalfs"          "pipe"             
## [52276] "blew"              "white"             "smoke"            
## [52279] "rings"             "window"            "wheres"           
## [52282] "sam"               "frodo"             "asked"            
## [52285] "length"            "others"            "right"            
## [52288] "yes"               "safe"              "sound"            
## [52291] "answered"          "gandalf"           "sam"              
## [52294] "sent"              "get"               "rest"             
## [52297] "half"              "hour"              "ago"              
## [52300] "happened"          "ford"              "said"             
## [52303] "frodo"             "seemed"            "dim"              
## [52306] "somehow"           "still"             "yes"              
## [52309] "beginning"         "fade"              "answered"         
## [52312] "gandalf"           "wound"             "overcoming"       
## [52315] "last"              "hours"             "beyond"           
## [52318] "aid"               "strength"          "dear"             
## [52321] "hobbit"            "showed"            "barrow"           
## [52324] "touch"             "go"                "perhaps"          
## [52327] "dangerous"         "moment"            "wish"             
## [52330] "held"              "weathertop"        "seem"             
## [52333] "know"              "great"             "deal"             
## [52336] "already"           "said"              "frodo"            
## [52339] "spoken"            "others"            "barrow"           
## [52342] "first"             "horrible"          "afterwards"       
## [52345] "things"            "think"             "know"             
## [52348] "talked"            "long"              "sleep"            
## [52351] "frodo"             "said"              "gandalf"          
## [52354] "gently"            "hard"              "read"             
## [52357] "mind"              "memory"            "worry"            
## [52360] "though"            "said"              "absurd"           
## [52363] "just"              "now"               "mean"             
## [52366] "think"             "well"              "others"           
## [52369] "small"             "feat"              "come"             
## [52372] "far"               "dangers"           "still"            
## [52375] "bearing"           "ring"              "never"            
## [52378] "done"              "without"           "strider"          
## [52381] "said"              "frodo"             "needed"           
## [52384] "know"              "without"           "delayed"          
## [52387] "said"              "gandalf"           "nearly"           
## [52390] "proved"            "ruin"              "yet"              
## [52393] "sure"              "may"               "better"           
## [52396] "wish"              "tell"              "happened"         
## [52399] "good"              "time"              "supposed"         
## [52402] "talk"              "worry"             "anything"         
## [52405] "today"             "elronds"           "orders"           
## [52408] "talking"           "stop"              "thinking"         
## [52411] "wondering"         "quite"             "tiring"           
## [52414] "said"              "frodo"             "wide"             
## [52417] "awake"             "now"               "remember"         
## [52420] "many"              "things"            "want"             
## [52423] "explaining"        "delayed"           "tell"             
## [52426] "least"             "will"              "soon"             
## [52429] "hear"              "wish"              "know"             
## [52432] "said"              "gandalf"           "shall"            
## [52435] "council"           "soon"              "well"             
## [52438] "enough"            "moment"            "will"             
## [52441] "say"               "held"              "captive"          
## [52444] "cried"             "frodo"             "yes"              
## [52447] "gandalf"           "grey"              "said"             
## [52450] "wizard"            "solemnly"          "many"             
## [52453] "powers"            "world"             "good"             
## [52456] "evil"              "greater"           "yet"              
## [52459] "measured"          "time"              "coming"           
## [52462] "morgul"            "lord"              "black"            
## [52465] "riders"            "come"              "forth"            
## [52468] "war"               "preparing"         "knew"             
## [52471] "riders"            "already"           "met"              
## [52474] "yes"               "knew"              "indeed"           
## [52477] "spoke"             "black"             "riders"           
## [52480] "ringwraiths"       "nine"              "servants"         
## [52483] "lord"              "rings"             "know"             
## [52486] "arisen"            "fled"              "heard"            
## [52489] "news"              "left"              "june"             
## [52492] "story"             "must"              "wait"             
## [52495] "moment"            "saved"             "disaster"         
## [52498] "aragorn"           "yes"               "said"             
## [52501] "frodo"             "strider"           "saved"            
## [52504] "us"                "yet"               "afraid"           
## [52507] "first"             "sam"               "never"            
## [52510] "quite"             "trusted"           "think"            
## [52513] "rate"              "met"               "glorfindel"       
## [52516] "gandalf"           "smiled"            "heard"            
## [52519] "sam"               "said"              "doubts"           
## [52522] "now"               "glad"              "said"             
## [52525] "frodo"             "become"            "fond"             
## [52528] "strider"           "well"              "fond"             
## [52531] "right"             "word"              "mean"             
## [52534] "dear"              "though"            "strange"          
## [52537] "grim"              "times"             "fact"             
## [52540] "reminds"           "often"             "didnt"            
## [52543] "know"              "big"               "people"           
## [52546] "like"              "thought"           "well"             
## [52549] "just"              "big"               "rather"           
## [52552] "stupid"            "kind"              "stupid"           
## [52555] "like"              "butterbur"         "stupid"           
## [52558] "wicked"            "like"              "bill"             
## [52561] "ferny"             "dont"              "know"             
## [52564] "much"              "men"               "shire"            
## [52567] "except"            "perhaps"           "breelanders"      
## [52570] "dont"              "know"              "much"             
## [52573] "even"              "think"             "old"              
## [52576] "barliman"          "stupid"            "said"             
## [52579] "gandalf"           "wise"              "enough"           
## [52582] "ground"            "thinks"            "less"             
## [52585] "talks"             "slower"            "yet"              
## [52588] "can"               "see"               "brick"            
## [52591] "wall"              "time"              "say"              
## [52594] "bree"              "left"              "middle"           
## [52597] "earth"             "like"              "aragorn"          
## [52600] "son"               "arathorn"          "race"             
## [52603] "kings"             "sea"               "nearly"           
## [52606] "end"               "may"               "war"              
## [52609] "ring"              "will"              "last"             
## [52612] "adventure"         "really"            "mean"             
## [52615] "strider"           "one"               "people"           
## [52618] "old"               "kings"             "said"             
## [52621] "frodo"             "wonder"            "thought"          
## [52624] "vanished"          "long"              "ago"              
## [52627] "thought"           "ranger"            "ranger"           
## [52630] "cried"             "gandalf"           "dear"             
## [52633] "frodo"             "just"              "rangers"          
## [52636] "last"              "remnant"           "north"            
## [52639] "great"             "people"            "men"              
## [52642] "west"              "helped"            "shall"            
## [52645] "need"              "help"              "days"             
## [52648] "come"              "reached"           "rivendell"        
## [52651] "ring"              "yet"               "rest"             
## [52654] "suppose"           "said"              "frodo"            
## [52657] "far"               "thought"           "get"              
## [52660] "hope"              "shant"             "go"               
## [52663] "pleasant"          "just"              "rest"             
## [52666] "month"             "exile"             "adventure"        
## [52669] "find"              "much"              "want"             
## [52672] "fell"              "silent"            "shut"             
## [52675] "eyes"              "spoke"             "reckoning"        
## [52678] "said"              "cant"              "bring"            
## [52681] "total"             "october"           "twenty"           
## [52684] "fourth"            "twenty"            "first"            
## [52687] "must"              "reached"           "ford"             
## [52690] "twentieth"         "talked"            "reckoned"         
## [52693] "good"              "said"              "gandalf"          
## [52696] "side"              "shoulder"          "feel"             
## [52699] "now"               "dont"              "know"             
## [52702] "frodo"             "answered"          "dont"             
## [52705] "feel"              "improvement"       "made"             
## [52708] "effort"            "can"               "move"             
## [52711] "arm"               "little"            "yes"              
## [52714] "coming"            "back"              "life"             
## [52717] "cold"              "added"             "touching"         
## [52720] "left"              "hand"              "right"            
## [52723] "good"              "said"              "gandalf"          
## [52726] "mending"           "fast"              "will"             
## [52729] "soon"              "sound"             "elrond"           
## [52732] "cured"             "tended"            "days"             
## [52735] "ever"              "since"             "brought"          
## [52738] "days"              "said"              "frodo"            
## [52741] "well"              "four"              "nights"           
## [52744] "three"             "days"              "exact"            
## [52747] "elves"             "brought"           "lost"             
## [52750] "count"             "terribly"          "anxious"          
## [52753] "sam"               "hardly"            "left"             
## [52756] "side"              "day"               "night"            
## [52759] "except"            "run"               "messages"         
## [52762] "elrond"            "master"            "healing"          
## [52765] "weapons"           "enemy"             "deadly"           
## [52768] "tell"              "truth"             "little"           
## [52771] "hope"              "suspected"         "fragment"         
## [52774] "blade"             "still"             "closed"           
## [52777] "wound"             "found"             "last"             
## [52780] "night"             "elrond"            "removed"          
## [52783] "splinter"          "deeply"            "buried"           
## [52786] "working"           "inwards"           "frodo"            
## [52789] "shuddered"         "remembering"       "cruel"            
## [52792] "knife"             "notched"           "blade"            
## [52795] "vanished"          "striders"          "hands"            
## [52798] "dont"              "alarmed"           "said"             
## [52801] "gandalf"           "gone"              "now"              
## [52804] "melted"            "seems"             "hobbits"          
## [52807] "fade"              "reluctantly"       "known"            
## [52810] "strong"            "warriors"          "big"              
## [52813] "people"            "quickly"           "overcome"         
## [52816] "splinter"          "bore"              "seventeen"        
## [52819] "days"              "done"              "asked"            
## [52822] "frodo"             "riders"            "trying"           
## [52825] "tried"             "pierce"            "heart"            
## [52828] "morgul"            "knife"             "remains"          
## [52831] "wound"             "succeeded"         "become"           
## [52834] "like"              "weaker"            "command"          
## [52837] "became"            "wraith"            "dominion"         
## [52840] "dark"              "lord"              "tormented"        
## [52843] "trying"            "keep"              "ring"             
## [52846] "greater"           "torment"           "possible"         
## [52849] "robbed"            "seeing"            "hand"             
## [52852] "thank"             "goodness"          "realize"          
## [52855] "horrible"          "danger"            "said"             
## [52858] "frodo"             "faintly"           "mortally"         
## [52861] "afraid"            "course"            "known"            
## [52864] "dared"             "even"              "move"             
## [52867] "marvel"            "escaped"           "yes"              
## [52870] "fortune"           "fate"              "helped"           
## [52873] "said"              "gandalf"           "mention"          
## [52876] "courage"           "heart"             "touched"          
## [52879] "shoulder"          "pierced"           "resisted"         
## [52882] "last"              "terribly"          "narrow"           
## [52885] "shave"             "speak"             "gravest"          
## [52888] "peril"             "wore"              "ring"             
## [52891] "half"              "wraith"            "world"            
## [52894] "might"             "seized"            "see"              
## [52897] "see"               "know"              "said"             
## [52900] "frodo"             "terrible"          "behold"           
## [52903] "see"               "horses"            "real"             
## [52906] "horses"            "just"              "black"            
## [52909] "robes"             "real"              "robes"            
## [52912] "wear"              "give"              "shape"            
## [52915] "nothingness"       "dealings"          "living"           
## [52918] "black"             "horses"            "endure"           
## [52921] "riders"            "animals"           "terrified"        
## [52924] "draw"              "near"              "even"             
## [52927] "elf"               "horse"             "glorfindel"       
## [52930] "dogs"              "howl"              "geese"            
## [52933] "scream"            "horses"            "born"             
## [52936] "bred"              "service"           "dark"             
## [52939] "lord"              "mordor"            "servants"         
## [52942] "chattels"          "wraiths"           "orcs"             
## [52945] "trolls"            "wargs"             "werewolves"       
## [52948] "still"             "many"              "men"              
## [52951] "warriors"          "kings"             "walk"             
## [52954] "alive"             "sun"               "yet"              
## [52957] "sway"              "number"            "growing"          
## [52960] "daily"             "rivendell"         "elves"            
## [52963] "rivendell"         "safe"              "yes"              
## [52966] "present"           "else"              "conquered"        
## [52969] "elves"             "may"               "fear"             
## [52972] "dark"              "lord"              "may"              
## [52975] "fly"               "never"             "will"             
## [52978] "listen"            "serve"             "rivendell"        
## [52981] "live"              "still"             "chief"            
## [52984] "foes"              "elven"             "wise"             
## [52987] "lords"             "eldar"             "beyond"           
## [52990] "furthest"          "seas"              "fear"             
## [52993] "ringwraiths"       "dwelt"             "blessed"          
## [52996] "realm"             "live"              "worlds"           
## [52999] "seen"              "unseen"            "great"            
## [53002] "power"             "thought"           "saw"              
## [53005] "white"             "figure"            "shone"            
## [53008] "grow"              "dim"               "like"             
## [53011] "others"            "glorfindel"        "yes"              
## [53014] "saw"               "moment"            "upon"             
## [53017] "side"              "one"               "mighty"           
## [53020] "firstborn"         "elf"               "lord"             
## [53023] "house"             "princes"           "indeed"           
## [53026] "power"             "rivendell"         "withstand"        
## [53029] "might"             "mordor"            "elsewhere"        
## [53032] "powers"            "still"             "dwell"            
## [53035] "power"             "another"           "kind"             
## [53038] "shire"             "places"            "will"             
## [53041] "soon"              "become"            "islands"          
## [53044] "siege"             "things"            "go"               
## [53047] "going"             "dark"              "lord"             
## [53050] "putting"           "forth"             "strength"         
## [53053] "still"             "said"              "standing"         
## [53056] "suddenly"          "sticking"          "chin"             
## [53059] "beard"             "went"              "stiff"            
## [53062] "straight"          "like"              "bristling"        
## [53065] "wire"              "must"              "keep"             
## [53068] "courage"           "will"              "soon"             
## [53071] "well"              "talk"              "death"            
## [53074] "rivendell"         "need"              "worry"            
## [53077] "anything"          "present"           "havent"           
## [53080] "courage"           "keep"              "said"             
## [53083] "frodo"             "worried"           "moment"           
## [53086] "just"              "give"              "news"             
## [53089] "friends"           "tell"              "end"              
## [53092] "affair"            "ford"              "keep"             
## [53095] "asking"            "shall"             "content"          
## [53098] "present"           "shall"             "another"          
## [53101] "sleep"             "think"             "shant"            
## [53104] "able"              "close"             "eyes"             
## [53107] "finished"          "story"             "gandalf"          
## [53110] "moved"             "chair"             "bedside"          
## [53113] "took"              "good"              "look"             
## [53116] "frodo"             "colour"            "come"             
## [53119] "back"              "face"              "eyes"             
## [53122] "clear"             "fully"             "awake"            
## [53125] "aware"             "smiling"           "seemed"           
## [53128] "little"            "wrong"             "wizards"          
## [53131] "eye"               "faint"             "change"           
## [53134] "just"              "hint"              "transparency"     
## [53137] "especially"        "left"              "hand"             
## [53140] "lay"               "outside"           "upon"             
## [53143] "coverlet"          "still"             "must"             
## [53146] "expected"          "said"              "gandalf"          
## [53149] "half"              "yet"               "will"             
## [53152] "come"              "end"               "even"             
## [53155] "elrond"            "can"               "foretell"         
## [53158] "evil"              "think"             "may"              
## [53161] "become"            "like"              "glass"            
## [53164] "filled"            "clear"             "light"            
## [53167] "eyes"              "see"               "can"              
## [53170] "look"              "splendid"          "said"             
## [53173] "aloud"             "will"              "risk"             
## [53176] "brief"             "tale"              "without"          
## [53179] "consulting"        "elrond"            "quite"            
## [53182] "brief"             "mind"              "must"             
## [53185] "sleep"             "happened"          "far"              
## [53188] "can"               "gather"            "riders"           
## [53191] "made"              "straight"          "soon"             
## [53194] "fled"              "need"              "guidance"         
## [53197] "horses"            "longer"            "become"           
## [53200] "visible"           "already"           "threshold"        
## [53203] "world"             "also"              "ring"             
## [53206] "drew"              "friends"           "sprang"           
## [53209] "aside"             "road"              "ridden"           
## [53212] "knew"              "nothing"           "save"             
## [53215] "white"             "horse"             "riders"           
## [53218] "swift"             "overtake"          "many"             
## [53221] "oppose"            "foot"              "even"             
## [53224] "glorfindel"        "aragorn"           "together"         
## [53227] "stand"             "nine"              "ringwraiths"      
## [53230] "swept"             "friends"           "ran"              
## [53233] "behind"            "close"             "ford"             
## [53236] "small"             "hollow"            "beside"           
## [53239] "road"              "masked"            "stunted"          
## [53242] "trees"             "hastily"           "kindled"          
## [53245] "fire"              "glorfindel"        "knew"             
## [53248] "flood"             "come"              "riders"           
## [53251] "tried"             "cross"             "deal"             
## [53254] "left"              "side"              "river"            
## [53257] "moment"            "flood"             "appeared"         
## [53260] "rushed"            "followed"          "aragorn"          
## [53263] "others"            "flaming"           "brands"           
## [53266] "caught"            "fire"              "water"            
## [53269] "seeing"            "elf"               "lord"             
## [53272] "revealed"          "wrath"             "dismayed"         
## [53275] "horses"            "stricken"          "madness"          
## [53278] "three"             "carried"           "away"             
## [53281] "first"             "assault"           "flood"            
## [53284] "others"            "now"               "hurled"           
## [53287] "water"             "horses"            "overwhelmed"      
## [53290] "end"               "black"             "riders"           
## [53293] "asked"             "frodo"             "said"             
## [53296] "gandalf"           "horses"            "must"             
## [53299] "perished"          "without"           "crippled"         
## [53302] "ringwraiths"       "easily"            "destroyed"        
## [53305] "however"           "nothing"           "fear"             
## [53308] "present"           "friends"           "crossed"          
## [53311] "flood"             "passed"            "found"            
## [53314] "lying"             "face"              "top"              
## [53317] "bank"              "broken"            "sword"            
## [53320] "horse"             "standing"          "guard"            
## [53323] "beside"            "pale"              "cold"             
## [53326] "feared"            "dead"              "worse"            
## [53329] "elronds"           "folk"              "met"              
## [53332] "carrying"          "slowly"            "towards"          
## [53335] "rivendell"         "made"              "flood"            
## [53338] "asked"             "frodo"             "elrond"           
## [53341] "commanded"         "answered"          "gandalf"          
## [53344] "river"             "valley"            "power"            
## [53347] "will"              "rise"              "anger"            
## [53350] "great"             "need"              "bar"              
## [53353] "ford"              "soon"              "captain"          
## [53356] "ringwraiths"       "rode"              "water"            
## [53359] "flood"             "released"          "may"              
## [53362] "say"               "added"             "touches"          
## [53365] "may"               "noticed"           "waves"            
## [53368] "took"              "form"              "great"            
## [53371] "white"             "horses"            "shining"          
## [53374] "white"             "riders"            "many"             
## [53377] "rolling"           "grinding"          "boulders"         
## [53380] "moment"            "afraid"            "let"              
## [53383] "loose"             "fierce"            "wrath"            
## [53386] "flood"             "get"               "hand"             
## [53389] "wash"              "away"              "great"            
## [53392] "vigour"            "waters"            "come"             
## [53395] "snows"             "misty"             "mountains"        
## [53398] "yes"               "comes"             "back"             
## [53401] "now"               "said"              "frodo"            
## [53404] "tremendous"        "roaring"           "thought"          
## [53407] "drowning"          "friends"           "enemies"          
## [53410] "now"               "safe"              "gandalf"          
## [53413] "looked"            "quickly"           "frodo"            
## [53416] "shut"              "eyes"              "yes"              
## [53419] "safe"              "present"           "soon"             
## [53422] "will"              "feasting"          "merrymaking"      
## [53425] "celebrate"         "victory"           "ford"             
## [53428] "bruinen"           "will"              "places"           
## [53431] "honour"            "splendid"          "said"             
## [53434] "frodo"             "wonderful"         "elrond"           
## [53437] "glorfindel"        "great"             "lords"            
## [53440] "mention"           "strider"           "take"             
## [53443] "much"              "trouble"           "show"             
## [53446] "much"              "kindness"          "well"             
## [53449] "many"              "reasons"           "said"             
## [53452] "gandalf"           "smiling"           "one"              
## [53455] "good"              "reason"            "ring"             
## [53458] "another"           "ring"              "bearer"           
## [53461] "heir"              "bilbo"             "ring"             
## [53464] "finder"            "dear"              "bilbo"            
## [53467] "said"              "frodo"             "sleepily"         
## [53470] "wonder"            "wish"              "hear"             
## [53473] "made"              "laugh"             "cow"              
## [53476] "jumped"            "moon"              "poor"             
## [53479] "old"               "troll"             "fell"             
## [53482] "fast"              "asleep"            "frodo"            
## [53485] "now"               "safe"              "last"             
## [53488] "homely"            "house"             "east"             
## [53491] "sea"               "house"             "bilbo"            
## [53494] "long"              "ago"               "reported"         
## [53497] "perfect"           "house"             "whether"          
## [53500] "like"              "food"              "sleep"            
## [53503] "story"             "telling"           "singing"          
## [53506] "just"              "sitting"           "thinking"         
## [53509] "best"              "pleasant"          "mixture"          
## [53512] "merely"            "cure"              "weariness"        
## [53515] "fear"              "sadness"           "evening"          
## [53518] "drew"              "frodo"             "woke"             
## [53521] "found"             "longer"            "felt"             
## [53524] "need"              "rest"              "sleep"            
## [53527] "mind"              "food"              "drink"            
## [53530] "probably"          "singing"           "story"            
## [53533] "telling"           "afterwards"        "got"              
## [53536] "bed"               "discovered"        "arm"              
## [53539] "already"           "nearly"            "useful"           
## [53542] "ever"              "found"             "laid"             
## [53545] "ready"             "clean"             "garments"         
## [53548] "green"             "cloth"             "fitted"           
## [53551] "excellently"       "looking"           "mirror"           
## [53554] "startled"          "see"               "much"             
## [53557] "thinner"           "reflection"        "remembered"       
## [53560] "looked"            "remarkably"        "like"             
## [53563] "young"             "nephew"            "bilbo"            
## [53566] "used"              "go"                "tramping"         
## [53569] "uncle"             "shire"             "eyes"             
## [53572] "looked"            "thoughtfully"      "yes"              
## [53575] "seen"              "thing"             "two"              
## [53578] "since"             "last"              "peeped"           
## [53581] "looking"           "glass"             "said"             
## [53584] "reflection"        "now"               "merry"            
## [53587] "meeting"           "stretched"         "arms"             
## [53590] "whistled"          "tune"              "moment"           
## [53593] "knock"             "door"              "sam"              
## [53596] "came"              "ran"               "frodo"            
## [53599] "took"              "left"              "hand"             
## [53602] "awkwardly"         "shyly"             "stroked"          
## [53605] "gently"            "blushed"           "turned"           
## [53608] "hastily"           "away"              "hullo"            
## [53611] "sam"               "said"              "frodo"            
## [53614] "warm"              "said"              "sam"              
## [53617] "meaning"           "hand"              "mr"               
## [53620] "frodo"             "felt"              "cold"             
## [53623] "long"              "nights"            "glory"            
## [53626] "trumpets"          "cried"             "turning"          
## [53629] "round"             "shining"           "eyes"             
## [53632] "dancing"           "floor"             "fine"             
## [53635] "see"               "sir"               "gandalf"          
## [53638] "asked"             "come"              "see"              
## [53641] "ready"             "come"              "thought"          
## [53644] "joking"            "ready"             "said"             
## [53647] "frodo"             "lets"              "go"               
## [53650] "look"              "rest"              "party"            
## [53653] "can"               "take"              "sir"              
## [53656] "said"              "sam"               "big"              
## [53659] "house"             "peculiar"          "always"           
## [53662] "bit"               "discover"          "knowing"          
## [53665] "youll"             "find"              "round"            
## [53668] "corner"            "elves"             "sir"              
## [53671] "elves"             "elves"             "like"             
## [53674] "kings"             "terrible"          "splendid"         
## [53677] "merry"             "children"          "music"            
## [53680] "singing"           "time"              "heart"            
## [53683] "much"              "listening"         "since"            
## [53686] "got"               "im"                "getting"          
## [53689] "know"              "ways"              "place"            
## [53692] "know"              "sam"               "said"             
## [53695] "frodo"             "taking"            "arm"              
## [53698] "shall"             "merry"             "tonight"          
## [53701] "listen"            "hearts"            "content"          
## [53704] "come"              "guide"             "round"            
## [53707] "corners"           "sam"               "led"              
## [53710] "along"             "several"           "passages"         
## [53713] "many"              "steps"             "high"             
## [53716] "garden"            "steep"             "bank"             
## [53719] "river"             "found"             "friends"          
## [53722] "sitting"           "porch"             "side"             
## [53725] "house"             "looking"           "east"             
## [53728] "shadows"           "fallen"            "valley"           
## [53731] "still"             "light"             "faces"            
## [53734] "mountains"         "far"               "air"              
## [53737] "warm"              "sound"             "running"          
## [53740] "falling"           "water"             "loud"             
## [53743] "evening"           "filled"            "faint"            
## [53746] "scent"             "trees"             "flowers"          
## [53749] "summer"            "still"             "lingered"         
## [53752] "elronds"           "gardens"           "hurray"           
## [53755] "cried"             "pippin"            "springing"        
## [53758] "noble"             "cousin"            "make"             
## [53761] "way"               "frodo"             "lord"             
## [53764] "ring"              "hush"              "said"             
## [53767] "gandalf"           "shadows"           "back"             
## [53770] "porch"             "evil"              "things"           
## [53773] "come"              "valley"            "name"             
## [53776] "lord"              "ring"              "frodo"            
## [53779] "master"            "dark"              "tower"            
## [53782] "mordor"            "whose"             "power"            
## [53785] "stretching"        "world"             "sitting"          
## [53788] "fortress"          "outside"           "getting"          
## [53791] "dark"              "gandalf"           "saying"           
## [53794] "many"              "cheerful"          "things"           
## [53797] "like"              "said"              "pippin"           
## [53800] "thinks"            "need"              "keeping"          
## [53803] "order"             "seems"             "impossible"       
## [53806] "somehow"           "feel"              "gloomy"           
## [53809] "depressed"         "place"             "feel"             
## [53812] "sing"              "knew"              "right"            
## [53815] "song"              "occasion"          "feel"             
## [53818] "like"              "singing"           "laughed"          
## [53821] "frodo"             "though"            "moment"           
## [53824] "feel"              "like"              "eating"           
## [53827] "drinking"          "will"              "soon"             
## [53830] "cured"             "said"              "pippin"           
## [53833] "shown"             "usual"             "cunning"          
## [53836] "getting"           "just"              "time"             
## [53839] "meal"              "meal"              "feast"            
## [53842] "said"              "merry"             "soon"             
## [53845] "gandalf"           "reported"          "recovered"        
## [53848] "preparations"      "began"             "hardly"           
## [53851] "finished"          "speaking"          "summoned"         
## [53854] "hall"              "ringing"           "many"             
## [53857] "bells"             "hall"              "elronds"          
## [53860] "house"             "filled"            "folk"             
## [53863] "elves"             "part"              "though"           
## [53866] "guests"            "sorts"             "elrond"           
## [53869] "custom"            "sat"               "great"            
## [53872] "chair"             "end"               "long"             
## [53875] "table"             "upon"              "dais"             
## [53878] "next"              "one"               "side"             
## [53881] "sat"               "glorfindel"        "side"             
## [53884] "sat"               "gandalf"           "frodo"            
## [53887] "looked"            "wonder"            "never"            
## [53890] "seen"              "elrond"            "many"             
## [53893] "tales"             "spoke"             "sat"              
## [53896] "upon"              "right"             "hand"             
## [53899] "left"              "glorfindel"        "even"             
## [53902] "gandalf"           "thought"           "knew"             
## [53905] "well"              "revealed"          "lords"            
## [53908] "dignity"           "power"             "gandalf"          
## [53911] "shorter"           "stature"           "two"              
## [53914] "long"              "white"             "hair"             
## [53917] "sweeping"          "silver"            "beard"            
## [53920] "broad"             "shoulders"         "made"             
## [53923] "look"              "like"              "wise"             
## [53926] "king"              "ancient"           "legend"           
## [53929] "aged"              "face"              "great"            
## [53932] "snowy"             "brows"             "dark"             
## [53935] "eyes"              "set"               "like"             
## [53938] "coals"             "leap"              "suddenly"         
## [53941] "fire"              "glorfindel"        "tall"             
## [53944] "straight"          "hair"              "shining"          
## [53947] "gold"              "face"              "fair"             
## [53950] "young"             "fearless"          "full"             
## [53953] "joy"               "eyes"              "bright"           
## [53956] "keen"              "voice"             "like"             
## [53959] "music"             "brow"              "sat"              
## [53962] "wisdom"            "hand"              "strength"         
## [53965] "face"              "elrond"            "ageless"          
## [53968] "neither"           "old"               "young"            
## [53971] "though"            "written"           "memory"           
## [53974] "many"              "things"            "glad"             
## [53977] "sorrowful"         "hair"              "dark"             
## [53980] "shadows"           "twilight"          "upon"             
## [53983] "set"               "circlet"           "silver"           
## [53986] "eyes"              "grey"              "clear"            
## [53989] "evening"           "light"             "like"             
## [53992] "light"             "stars"             "venerable"        
## [53995] "seemed"            "king"              "crowned"          
## [53998] "many"              "winters"           "yet"              
## [54001] "hale"              "tried"             "warrior"          
## [54004] "fulness"           "strength"          "lord"             
## [54007] "rivendell"         "mighty"            "among"            
## [54010] "elves"             "men"               "middle"           
## [54013] "table"             "woven"             "cloths"           
## [54016] "upon"              "wall"              "chair"            
## [54019] "canopy"            "sat"               "lady"             
## [54022] "fair"              "look"              "upon"             
## [54025] "like"              "form"              "womanhood"        
## [54028] "elrond"            "frodo"             "guessed"          
## [54031] "one"               "close"             "kindred"          
## [54034] "young"             "yet"               "braids"           
## [54037] "dark"              "hair"              "touched"          
## [54040] "frost"             "white"             "arms"             
## [54043] "clear"             "face"              "flawless"         
## [54046] "smooth"            "light"             "stars"            
## [54049] "bright"            "eyes"              "grey"             
## [54052] "cloudless"         "night"             "yet"              
## [54055] "queenly"           "looked"            "thought"          
## [54058] "knowledge"         "glance"            "one"              
## [54061] "known"             "many"              "things"           
## [54064] "years"             "bring"             "brow"             
## [54067] "head"              "covered"           "cap"              
## [54070] "silver"            "lace"              "netted"           
## [54073] "small"             "gems"              "glittering"       
## [54076] "white"             "soft"              "grey"             
## [54079] "raiment"           "ornament"          "save"             
## [54082] "girdle"            "leaves"            "wrought"          
## [54085] "silver"            "frodo"             "saw"              
## [54088] "mortals"           "yet"               "seen"             
## [54091] "arwen"             "daughter"          "elrond"           
## [54094] "said"              "likeness"          "lúthien"          
## [54097] "come"              "earth"             "called"           
## [54100] "undómiel"          "evenstar"          "people"           
## [54103] "long"              "land"              "mothers"          
## [54106] "kin"               "lórien"            "beyond"           
## [54109] "mountains"         "lately"            "returned"         
## [54112] "rivendell"         "fathers"           "house"            
## [54115] "brothers"          "elladan"           "elrohir"          
## [54118] "upon"              "errantry"          "rode"             
## [54121] "often"             "far"               "afield"           
## [54124] "rangers"           "north"             "forgetting"       
## [54127] "never"             "mothers"           "torment"          
## [54130] "dens"              "orcs"              "loveliness"       
## [54133] "living"            "thing"             "frodo"            
## [54136] "never"             "seen"              "imagined"         
## [54139] "mind"              "surprised"         "abashed"          
## [54142] "find"              "seat"              "elronds"          
## [54145] "table"             "among"             "folk"             
## [54148] "high"              "fair"              "though"           
## [54151] "suitable"          "chair"             "raised"           
## [54154] "upon"              "several"           "cushions"         
## [54157] "felt"              "small"             "rather"           
## [54160] "place"             "feeling"           "quickly"          
## [54163] "passed"            "feast"             "merry"            
## [54166] "food"              "hunger"            "desire"           
## [54169] "time"              "looked"            "even"             
## [54172] "turned"            "neighbours"        "looked"           
## [54175] "first"             "friends"           "sam"              
## [54178] "begged"            "allowed"           "wait"             
## [54181] "master"            "told"              "time"             
## [54184] "guest"             "honour"            "frodo"            
## [54187] "see"               "now"               "sitting"          
## [54190] "pippin"            "merry"             "upper"            
## [54193] "end"               "one"               "side"             
## [54196] "tables"            "close"             "dais"             
## [54199] "see"               "sign"              "strider"          
## [54202] "next"              "frodo"             "right"            
## [54205] "sat"               "dwarf"             "important"        
## [54208] "appearance"        "richly"            "dressed"          
## [54211] "beard"             "long"              "forked"           
## [54214] "white"             "nearly"            "white"            
## [54217] "snow"              "white"             "cloth"            
## [54220] "garments"          "wore"              "silver"           
## [54223] "belt"              "round"             "neck"             
## [54226] "hung"              "chain"             "silver"           
## [54229] "diamonds"          "frodo"             "stopped"          
## [54232] "eating"            "look"              "welcome"          
## [54235] "well"              "met"               "said"             
## [54238] "dwarf"             "turning"           "towards"          
## [54241] "actually"          "rose"              "seat"             
## [54244] "bowed"             "glóin"             "service"          
## [54247] "said"              "bowed"             "still"            
## [54250] "lower"             "frodo"             "baggins"          
## [54253] "service"           "familys"           "said"             
## [54256] "frodo"             "correctly"         "rising"           
## [54259] "surprise"          "scattering"        "cushions"         
## [54262] "right"             "guessing"          "glóin"            
## [54265] "one"               "twelve"            "companions"       
## [54268] "great"             "thorin"            "oakenshield"      
## [54271] "quite"             "right"             "answered"         
## [54274] "dwarf"             "gathering"         "cushions"         
## [54277] "courteously"       "assisting"         "frodo"            
## [54280] "back"              "seat"              "ask"              
## [54283] "already"           "told"              "kinsman"          
## [54286] "adopted"           "heir"              "friend"           
## [54289] "bilbo"             "renowned"          "allow"            
## [54292] "congratulate"      "recovery"          "thank"            
## [54295] "much"              "said"              "frodo"            
## [54298] "strange"           "adventures"        "hear"             
## [54301] "said"              "glóin"             "wonder"           
## [54304] "greatly"           "brings"            "four"             
## [54307] "hobbits"           "long"              "journey"          
## [54310] "nothing"           "like"              "happened"         
## [54313] "since"             "bilbo"             "came"             
## [54316] "us"                "perhaps"           "inquire"          
## [54319] "closely"           "since"             "elrond"           
## [54322] "gandalf"           "seem"              "disposed"         
## [54325] "talk"              "think"             "will"             
## [54328] "speak"             "least"             "yet"              
## [54331] "said"              "frodo"             "politely"         
## [54334] "guessed"           "even"              "elronds"          
## [54337] "house"             "matter"            "ring"             
## [54340] "one"               "casual"            "talk"             
## [54343] "case"              "wished"            "forget"           
## [54346] "troubles"          "time"              "equally"          
## [54349] "curious"           "added"             "learn"            
## [54352] "brings"            "important"         "dwarf"            
## [54355] "far"               "lonely"            "mountain"         
## [54358] "glóin"             "looked"            "heard"            
## [54361] "think"             "will"              "speak"            
## [54364] "yet"               "either"            "master"           
## [54367] "elrond"            "will"              "summon"           
## [54370] "us"                "ere"               "long"             
## [54373] "believe"           "shall"             "hear"             
## [54376] "many"              "things"            "much"             
## [54379] "else"              "may"               "told"             
## [54382] "throughout"        "rest"              "meal"             
## [54385] "talked"            "together"          "frodo"            
## [54388] "listened"          "spoke"             "news"             
## [54391] "shire"             "apart"             "ring"             
## [54394] "seemed"            "small"             "far"              
## [54397] "away"              "unimportant"       "glóin"            
## [54400] "much"              "tell"              "events"           
## [54403] "northern"          "regions"           "wilderland"       
## [54406] "frodo"             "learned"           "grimbeorn"        
## [54409] "old"               "son"               "beorn"            
## [54412] "now"               "lord"              "many"             
## [54415] "sturdy"            "men"               "land"             
## [54418] "mountains"         "mirkwood"          "neither"          
## [54421] "orc"               "wolf"              "dared"            
## [54424] "go"                "lndeed"            "said"             
## [54427] "glóin"             "beornings"         "passage"          
## [54430] "dale"              "rivendell"         "long"             
## [54433] "ago"               "become"            "impossible"       
## [54436] "valiant"           "men"               "keep"             
## [54439] "open"              "high"              "pass"             
## [54442] "ford"              "carrock"           "tolls"            
## [54445] "high"              "added"             "shake"            
## [54448] "head"              "like"              "beorn"            
## [54451] "old"               "fond"              "dwarves"          
## [54454] "still"             "trusty"            "much"             
## [54457] "days"              "nowhere"           "men"              
## [54460] "friendly"          "us"                "men"              
## [54463] "dale"              "good"              "folk"             
## [54466] "bardings"          "grandson"          "bard"             
## [54469] "bowman"            "rules"             "brand"            
## [54472] "son"               "bain"              "son"              
## [54475] "bard"              "strong"            "king"             
## [54478] "realm"             "now"               "reaches"          
## [54481] "far"               "south"             "east"             
## [54484] "esgaroth"          "people"            "asked"            
## [54487] "frodo"             "much"              "tell"             
## [54490] "good"              "bad"               "said"             
## [54493] "glóin"             "yet"               "mostly"           
## [54496] "good"              "far"               "fortunate"        
## [54499] "though"            "escape"            "shadow"           
## [54502] "times"             "really"            "wish"             
## [54505] "hear"              "us"                "will"             
## [54508] "tell"              "tidings"           "gladly"           
## [54511] "stop"              "weary"             "dwarves"          
## [54514] "tongues"           "run"               "speaking"         
## [54517] "handiwork"         "say"               "glóin"            
## [54520] "embarked"          "long"              "account"          
## [54523] "doings"            "dwarf"             "kingdom"          
## [54526] "delighted"         "found"             "polite"           
## [54529] "listener"          "frodo"             "showed"           
## [54532] "sign"              "weariness"         "made"             
## [54535] "attempt"           "change"            "subject"          
## [54538] "though"            "actually"          "soon"             
## [54541] "got"               "rather"            "lost"             
## [54544] "among"             "strange"           "names"            
## [54547] "people"            "places"            "never"            
## [54550] "heard"             "interested"        "however"          
## [54553] "hear"              "dáin"              "still"            
## [54556] "king"              "mountain"          "now"              
## [54559] "old"               "passed"            "two"              
## [54562] "hundred"           "fiftieth"          "year"             
## [54565] "venerable"         "fabulously"        "rich"             
## [54568] "ten"               "companions"        "survived"         
## [54571] "battle"            "five"              "armies"           
## [54574] "seven"             "still"             "dwalin"           
## [54577] "glóin"             "dori"              "nori"             
## [54580] "bifur"             "bofur"             "bombur"           
## [54583] "bombur"            "now"               "fat"              
## [54586] "move"              "couch"             "chair"            
## [54589] "table"             "took"              "six"              
## [54592] "young"             "dwarves"           "lift"             
## [54595] "become"            "balin"             "ori"              
## [54598] "óin"               "asked"             "frodo"            
## [54601] "shadow"            "passed"            "glóins"           
## [54604] "face"              "know"              "answered"         
## [54607] "largely"           "account"           "balin"            
## [54610] "come"              "ask"               "advice"           
## [54613] "dwell"             "rivendell"         "tonight"          
## [54616] "let"               "us"                "speak"            
## [54619] "merrier"           "things"            "glóin"            
## [54622] "began"             "talk"              "works"            
## [54625] "people"            "telling"           "frodo"            
## [54628] "great"             "labours"           "dale"             
## [54631] "mountain"          "done"              "well"             
## [54634] "said"              "metalwork"         "rival"            
## [54637] "fathers"           "many"              "whose"            
## [54640] "secrets"           "lost"              "make"             
## [54643] "good"              "armour"            "keen"             
## [54646] "swords"            "make"              "mail"             
## [54649] "blade"             "match"             "made"             
## [54652] "dragon"            "came"              "mining"           
## [54655] "building"          "surpassed"         "old"              
## [54658] "days"              "see"               "waterways"        
## [54661] "dale"              "frodo"             "fountains"        
## [54664] "pools"             "see"               "stone"            
## [54667] "paved"             "roads"             "many"             
## [54670] "colours"           "halls"             "cavernous"        
## [54673] "streets"           "earth"             "arches"           
## [54676] "carved"            "like"              "trees"            
## [54679] "terraces"          "towers"            "upon"             
## [54682] "mountains"         "sides"             "see"              
## [54685] "idle"              "will"              "come"             
## [54688] "see"               "ever"              "can"              
## [54691] "said"              "frodo"             "surprised"        
## [54694] "bilbo"             "see"               "changes"          
## [54697] "desolation"        "smaug"             "glóin"            
## [54700] "looked"            "frodo"             "smiled"           
## [54703] "fond"              "bilbo"             "asked"            
## [54706] "yes"               "answered"          "frodo"            
## [54709] "rather"            "see"               "towers"           
## [54712] "palaces"           "world"             "length"           
## [54715] "feast"             "came"              "end"              
## [54718] "elrond"            "arwen"             "rose"             
## [54721] "went"              "hall"              "company"          
## [54724] "followed"          "due"               "order"            
## [54727] "doors"             "thrown"            "open"             
## [54730] "went"              "across"            "wide"             
## [54733] "passage"           "doors"             "came"             
## [54736] "hall"              "tables"            "bright"           
## [54739] "fire"              "burning"           "great"            
## [54742] "hearth"            "carven"            "pillars"          
## [54745] "upon"              "either"            "side"             
## [54748] "frodo"             "found"             "walking"          
## [54751] "gandalf"           "hall"              "fire"             
## [54754] "said"              "wizard"            "will"             
## [54757] "hear"              "many"              "songs"            
## [54760] "tales"             "can"               "keep"             
## [54763] "awake"             "except"            "high"             
## [54766] "days"              "usually"           "stands"           
## [54769] "empty"             "quiet"             "people"           
## [54772] "come"              "wish"              "peace"            
## [54775] "thought"           "always"            "fire"             
## [54778] "year"              "round"             "little"           
## [54781] "light"             "elrond"            "entered"          
## [54784] "went"              "towards"           "seat"             
## [54787] "prepared"          "elvish"            "minstrels"        
## [54790] "began"             "make"              "sweet"            
## [54793] "music"             "slowly"            "hall"             
## [54796] "filled"            "frodo"             "looked"           
## [54799] "delight"           "upon"              "many"             
## [54802] "fair"              "faces"             "gathered"         
## [54805] "together"          "golden"            "firelight"        
## [54808] "played"            "upon"              "shimmered"        
## [54811] "hair"              "suddenly"          "noticed"          
## [54814] "far"               "end"               "fire"             
## [54817] "small"             "dark"              "figure"           
## [54820] "seated"            "stool"             "back"             
## [54823] "propped"           "pillar"            "beside"           
## [54826] "ground"            "drinking"          "cup"              
## [54829] "bread"             "frodo"             "wondered"         
## [54832] "whether"           "ill"               "people"           
## [54835] "ever"              "ill"               "rivendell"        
## [54838] "unable"            "come"              "feast"            
## [54841] "head"              "seemed"            "sunk"             
## [54844] "sleep"             "breast"            "fold"             
## [54847] "dark"              "cloak"             "drawn"            
## [54850] "face"              "elrond"            "went"             
## [54853] "forward"           "stood"             "beside"           
## [54856] "silent"            "figure"            "awake"            
## [54859] "little"            "master"            "said"             
## [54862] "smile"             "turning"           "frodo"            
## [54865] "beckoned"          "now"               "last"             
## [54868] "hour"              "come"              "wished"           
## [54871] "frodo"             "said"              "friend"           
## [54874] "long"              "missed"            "dark"             
## [54877] "figure"            "raised"            "head"             
## [54880] "uncovered"         "face"              "bilbo"            
## [54883] "cried"             "frodo"             "sudden"           
## [54886] "recognition"       "sprang"            "forward"          
## [54889] "hullo"             "frodo"             "lad"              
## [54892] "said"              "bilbo"             "got"              
## [54895] "last"              "hoped"             "manage"           
## [54898] "well"              "well"              "feasting"         
## [54901] "honour"            "hear"              "hope"             
## [54904] "enjoyed"           "werent"            "cried"            
## [54907] "frodo"             "havent"            "allowed"          
## [54910] "see"               "asleep"            "seen"             
## [54913] "good"              "deal"              "sat"              
## [54916] "side"              "sam"               "day"              
## [54919] "feast"             "dont"              "go"               
## [54922] "things"            "much"              "now"              
## [54925] "something"         "else"              "sitting"          
## [54928] "thinking"          "lot"               "nowadays"         
## [54931] "best"              "place"             "rule"             
## [54934] "wake"              "indeed"            "said"             
## [54937] "cocking"           "eye"               "elrond"           
## [54940] "bright"            "twinkle"           "sign"             
## [54943] "sleepiness"        "frodo"             "see"              
## [54946] "wake"              "asleep"            "master"           
## [54949] "elrond"            "want"              "know"             
## [54952] "come"              "feast"             "soon"             
## [54955] "disturbed"         "middle"            "making"           
## [54958] "song"              "stuck"             "line"             
## [54961] "two"               "thinking"          "now"              
## [54964] "dont"              "suppose"           "shall"            
## [54967] "ever"              "get"               "right"            
## [54970] "will"              "deal"              "singing"          
## [54973] "ideas"             "will"              "driven"           
## [54976] "clean"             "head"              "shall"            
## [54979] "get"               "friend"            "dúnadan"          
## [54982] "help"              "elrond"            "laughed"          
## [54985] "shall"             "found"             "said"             
## [54988] "two"               "shall"             "go"               
## [54991] "corner"            "finish"            "task"             
## [54994] "will"              "hear"              "judge"            
## [54997] "end"               "merrymaking"       "messengers"       
## [55000] "sent"              "find"              "bilbos"           
## [55003] "friend"            "though"            "none"             
## [55006] "knew"              "present"           "feast"            
## [55009] "meanwhile"         "frodo"             "bilbo"            
## [55012] "sat"               "side"              "side"             
## [55015] "sam"               "came"              "quickly"          
## [55018] "placed"            "near"              "talked"           
## [55021] "together"          "soft"              "voices"           
## [55024] "oblivious"         "mirth"             "music"            
## [55027] "hall"              "bilbo"             "much"             
## [55030] "say"               "left"              "hobbiton"         
## [55033] "wandered"          "aimlessly"         "along"            
## [55036] "road"              "country"           "either"           
## [55039] "side"              "somehow"           "steered"          
## [55042] "time"              "towards"           "rivendell"        
## [55045] "got"               "without"           "much"             
## [55048] "adventure"         "said"              "rest"             
## [55051] "went"              "dwarves"           "dale"             
## [55054] "last"              "journey"           "shant"            
## [55057] "travel"            "old"               "balin"            
## [55060] "gone"              "away"              "came"             
## [55063] "back"              "done"              "written"          
## [55066] "book"              "course"            "make"             
## [55069] "songs"             "sing"              "occasionally"     
## [55072] "just"              "please"            "think"            
## [55075] "course"            "arent"             "really"           
## [55078] "good"              "enough"            "rivendell"        
## [55081] "listen"            "think"             "time"             
## [55084] "doesnt"            "seem"              "pass"             
## [55087] "just"              "remarkable"        "place"            
## [55090] "altogether"        "hear"              "kinds"            
## [55093] "news"              "mountains"         "south"            
## [55096] "hardly"            "anything"          "shire"            
## [55099] "heard"             "ring"              "course"           
## [55102] "gandalf"           "often"             "told"             
## [55105] "great"             "deal"              "become"           
## [55108] "closer"            "ever"              "last"             
## [55111] "years"             "dúnadan"           "told"             
## [55114] "fancy"             "ring"              "mine"             
## [55117] "causing"           "disturbance"       "pity"             
## [55120] "gandalf"           "find"              "sooner"           
## [55123] "brought"           "thing"             "long"             
## [55126] "ago"               "without"           "much"             
## [55129] "trouble"           "thought"           "several"          
## [55132] "times"             "going"             "back"             
## [55135] "hobbiton"          "getting"           "old"              
## [55138] "let"               "gandalf"           "elrond"           
## [55141] "mean"              "seemed"            "think"            
## [55144] "enemy"             "looking"           "high"             
## [55147] "low"               "make"              "mincemeat"        
## [55150] "caught"            "tottering"         "wild"             
## [55153] "gandalf"           "said"              "ring"             
## [55156] "passed"            "bilbo"             "good"             
## [55159] "others"            "tried"             "meddle"           
## [55162] "odd"               "sort"              "remark"           
## [55165] "just"              "like"              "gandalf"          
## [55168] "said"              "looking"           "let"              
## [55171] "things"            "frightfully"       "glad"             
## [55174] "see"               "safe"              "sound"            
## [55177] "paused"            "looked"            "frodo"            
## [55180] "doubtfully"        "got"               "asked"            
## [55183] "whisper"           "cant"              "help"             
## [55186] "feeling"           "curious"           "know"             
## [55189] "ive"               "heard"             "much"             
## [55192] "like"              "just"              "peep"             
## [55195] "yes"               "ive"               "got"              
## [55198] "answered"          "frodo"             "feeling"          
## [55201] "strange"           "reluctance"        "looks"            
## [55204] "just"              "ever"              "well"             
## [55207] "just"              "like"              "see"              
## [55210] "moment"            "said"              "bilbo"            
## [55213] "dressed"           "frodo"             "found"            
## [55216] "slept"             "ring"              "hung"             
## [55219] "neck"              "new"               "chain"            
## [55222] "light"             "strong"            "slowly"           
## [55225] "drew"              "bilbo"             "put"              
## [55228] "hand"              "frodo"             "quickly"          
## [55231] "drew"              "back"              "ring"             
## [55234] "distress"          "amazement"         "found"            
## [55237] "longer"            "looking"           "bilbo"            
## [55240] "shadow"            "seemed"            "fallen"           
## [55243] "found"             "eyeing"            "little"           
## [55246] "wrinkled"          "creature"          "hungry"           
## [55249] "face"              "bony"              "groping"          
## [55252] "hands"             "felt"              "desire"           
## [55255] "strike"            "music"             "singing"          
## [55258] "round"             "seemed"            "falter"           
## [55261] "silence"           "fell"              "bilbo"            
## [55264] "looked"            "quickly"           "frodos"           
## [55267] "face"              "passed"            "hand"             
## [55270] "across"            "eyes"              "understand"       
## [55273] "now"               "said"              "put"              
## [55276] "away"              "sorry"             "sorry"            
## [55279] "come"              "burden"            "sorry"            
## [55282] "everything"        "dont"              "adventures"       
## [55285] "ever"              "end"               "suppose"          
## [55288] "someone"           "else"              "always"           
## [55291] "carry"             "story"             "well"             
## [55294] "cant"              "helped"            "wonder"           
## [55297] "good"              "trying"            "finish"           
## [55300] "book"              "dont"              "lets"             
## [55303] "worry"             "now"               "lets"             
## [55306] "real"              "news"              "tell"             
## [55309] "shire"             "frodo"             "hid"              
## [55312] "ring"              "away"              "shadow"           
## [55315] "passed"            "leaving"           "hardly"           
## [55318] "shred"             "memory"            "light"            
## [55321] "music"             "rivendell"         "bilbo"            
## [55324] "smiled"            "laughed"           "happily"          
## [55327] "every"             "item"              "news"             
## [55330] "shire"             "frodo"             "tell"             
## [55333] "aided"             "corrected"         "now"              
## [55336] "sam"               "greatest"          "interest"         
## [55339] "felling"           "least"             "tree"             
## [55342] "pranks"            "smallest"          "child"            
## [55345] "hobbiton"          "deep"              "doings"           
## [55348] "four"              "farthings"         "notice"           
## [55351] "arrival"           "man"               "clad"             
## [55354] "dark"              "green"             "cloth"            
## [55357] "many"              "minutes"           "stood"            
## [55360] "looking"           "smile"             "suddenly"         
## [55363] "bilbo"             "looked"            "ah"               
## [55366] "last"              "dúnadan"           "cried"            
## [55369] "strider"           "said"              "frodo"            
## [55372] "seem"              "lot"               "names"            
## [55375] "well"              "strider"           "one"              
## [55378] "havent"            "heard"             "anyway"           
## [55381] "said"              "bilbo"             "call"             
## [55384] "call"              "bree"              "said"             
## [55387] "strider"           "laughing"          "introduced"       
## [55390] "call"              "dúnadan"           "asked"            
## [55393] "frodo"             "dúnadan"           "said"             
## [55396] "bilbo"             "often"             "called"           
## [55399] "thought"           "knew"              "enough"           
## [55402] "elvish"            "least"             "know"             
## [55405] "dún"               "udan"              "man"              
## [55408] "west"              "númenorean"        "time"             
## [55411] "lessons"           "turned"            "strider"          
## [55414] "friend"            "werent"            "feast"            
## [55417] "lady"              "arwen"             "strider"          
## [55420] "looked"            "bilbo"             "gravely"          
## [55423] "know"              "said"              "often"            
## [55426] "must"              "put"               "mirth"            
## [55429] "aside"             "elladan"           "elrohir"          
## [55432] "returned"          "wild"              "unlooked"         
## [55435] "tidings"           "wished"            "hear"             
## [55438] "well"              "dear"              "fellow"           
## [55441] "said"              "bilbo"             "now"              
## [55444] "youve"             "heard"             "news"             
## [55447] "cant"              "spare"             "moment"           
## [55450] "want"              "help"              "something"        
## [55453] "urgent"            "elrond"            "says"             
## [55456] "song"              "mine"              "finished"         
## [55459] "end"               "evening"           "stuck"            
## [55462] "lets"              "go"                "corner"           
## [55465] "polish"            "strider"           "smiled"           
## [55468] "come"              "said"              "let"              
## [55471] "hear"              "frodo"             "left"             
## [55474] "sam"               "fallen"            "asleep"           
## [55477] "alone"             "felt"              "rather"           
## [55480] "forlorn"           "although"          "folk"             
## [55483] "rivendell"         "gathered"          "near"             
## [55486] "silent"            "intent"            "upon"             
## [55489] "music"             "voices"            "instruments"      
## [55492] "gave"              "heed"              "anything"         
## [55495] "else"              "frodo"             "began"            
## [55498] "listen"            "first"             "beauty"           
## [55501] "melodies"          "interwoven"        "words"            
## [55504] "elven"             "tongues"           "even"             
## [55507] "though"            "understood"        "little"           
## [55510] "held"              "spell"             "soon"             
## [55513] "began"             "attend"            "almost"           
## [55516] "seemed"            "words"             "took"             
## [55519] "shape"             "visions"           "far"              
## [55522] "lands"             "bright"            "things"           
## [55525] "never"             "yet"               "imagined"         
## [55528] "opened"            "firelit"           "hall"             
## [55531] "became"            "like"              "golden"           
## [55534] "mist"              "seas"              "foam"             
## [55537] "sighed"            "upon"              "margins"          
## [55540] "world"             "enchantment"       "became"           
## [55543] "dreamlike"         "felt"              "endless"          
## [55546] "river"             "swelling"          "gold"             
## [55549] "silver"            "flowing"           "multitudinous"    
## [55552] "pattern"           "comprehended"      "became"           
## [55555] "part"              "throbbing"         "air"              
## [55558] "drenched"          "drowned"           "swiftly"          
## [55561] "sank"              "shining"           "weight"           
## [55564] "deep"              "realm"             "sleep"            
## [55567] "wandered"          "long"              "dream"            
## [55570] "music"             "turned"            "running"          
## [55573] "water"             "suddenly"          "voice"            
## [55576] "seemed"            "voice"             "bilbo"            
## [55579] "chanting"          "verses"            "faint"            
## [55582] "first"             "clearer"           "ran"              
## [55585] "words"             "eärendil"          "mariner"          
## [55588] "tarried"           "arvernien"         "built"            
## [55591] "boat"              "timber"            "felled"           
## [55594] "nimbrethil"        "journey"           "sails"            
## [55597] "wove"              "silver"            "fair"             
## [55600] "silver"            "lanterns"          "made"             
## [55603] "prow"              "fashioned"         "like"             
## [55606] "swan"              "light"             "upon"             
## [55609] "banners"           "laid"              "panoply"          
## [55612] "ancient"           "kings"             "chain"            
## [55615] ""                  "rings"             "armoured"         
## [55618] "shining"           "shield"            "scored"           
## [55621] "runes"             "ward"              "wounds"           
## [55624] "harm"              "bow"               "made"             
## [55627] "dragon"            "horn"              "arrows"           
## [55630] "shorn"             "ebony"             "silver"           
## [55633] "habergeon"         "scabbard"          "chalcedony"       
## [55636] "sword"             "steel"             "valiant"          
## [55639] "adamant"           "helmet"            "tall"             
## [55642] "eagle"             "plume"             "upon"             
## [55645] "crest"             "upon"              "breast"           
## [55648] "emerald"           "beneath"           "moon"             
## [55651] "star"              "wandered"          "far"              
## [55654] "northern"          "strands"           "bewildered"       
## [55657] "enchanted"         "ways"              "beyond"           
## [55660] "days"              "mortal"            "lands"            
## [55663] "gnashing"          "narrow"            "ice"              
## [55666] "shadow"            "lies"              "frozen"           
## [55669] "hills"             "nether"            "heats"            
## [55672] "burning"           "waste"             "turned"           
## [55675] "haste"             "roving"            "still"            
## [55678] "starless"          "waters"            "far"              
## [55681] "astray"            "last"              "came"             
## [55684] "night"             "naught"            "passed"           
## [55687] "never"             "sight"             "saw"              
## [55690] "shining"           "shore"             "light"            
## [55693] "sought"            "winds"             "wrath"            
## [55696] "came"              "driving"           "blindly"          
## [55699] "foam"              "fled"              "west"             
## [55702] "east"              "errandless"        "unheralded"       
## [55705] "homeward"          "sped"              "flying"           
## [55708] "elwing"            "came"              "flame"            
## [55711] "darkness"          "lit"               "bright"           
## [55714] "light"             "diamond"           "fire"             
## [55717] "upon"              "carcanet"          "silmaril"         
## [55720] "bound"             "crowned"           "living"           
## [55723] "light"             "dauntless"         "burning"          
## [55726] "brow"              "turned"            "prow"             
## [55729] "night"             "otherworld"        "beyond"           
## [55732] "sea"               "strong"            "free"             
## [55735] "storm"             "arose"             "wind"             
## [55738] "power"             "tarmenel"          "paths"            
## [55741] "seldom"            "mortal"            "goes"             
## [55744] "boat"              "bore"              "biting"           
## [55747] "breath"            "might"             "death"            
## [55750] "across"            "grey"              "long"             
## [55753] "forsaken"          "seas"              "distressed"       
## [55756] "east"              "west"              "passed"           
## [55759] "away"              "evernight"         "back"             
## [55762] "borne"             "black"             "roaring"          
## [55765] "waves"             "ran"               "oer"              
## [55768] "leagues"           "unlit"             "foundered"        
## [55771] "shores"            "drowned"           "days"             
## [55774] "began"             "heard"             "strands"          
## [55777] "pearl"             "ends"              "world"            
## [55780] "music"             "long"              "ever"             
## [55783] "foaming"           "billows"           "roll"             
## [55786] "yellow"            "gold"              "jewels"           
## [55789] "wan"               "saw"               "mountain"         
## [55792] "silent"            "rise"              "twilight"         
## [55795] "lies"              "upon"              "knees"            
## [55798] "valinor"           "eldamar"           "beheld"           
## [55801] "afar"              "beyond"            "seas"             
## [55804] "wanderer"          "escaped"           "night"            
## [55807] "haven"             "white"             "came"             
## [55810] "last"              "elvenhome"         "green"            
## [55813] "fair"              "keen"              "air"              
## [55816] "pale"              "glass"             "beneath"          
## [55819] "hill"              "ilmarin"           "glimmer"          
## [55822] "valley"            "sheer"             "lamplit"          
## [55825] "towers"            "tirion"            "mirrored"         
## [55828] "shadowmere"        "tarried"           "errantry"         
## [55831] "melodies"          "taught"            "sages"            
## [55834] "old"               "marvels"           "told"             
## [55837] "harps"             "gold"              "brought"          
## [55840] "clothed"           "elven"             "white"            
## [55843] "seven"             "lights"            "sent"             
## [55846] "calacirian"        "hidden"            "land"             
## [55849] "forlorn"           "went"              "came"             
## [55852] "unto"              "timeless"          "halls"            
## [55855] "shining"           "fall"              "countless"        
## [55858] "years"             "endless"           "reigns"           
## [55861] "elder"             "king"              "ilmarin"          
## [55864] "mountain"          "sheer"             "words"            
## [55867] "unheard"           "spoken"            "folk"             
## [55870] "men"               "elven"             "kin"              
## [55873] "beyond"            "world"             "visions"          
## [55876] "showed"            "forbid"            "dwell"            
## [55879] "therein"           "ship"              "new"              
## [55882] "built"             "mithril"           "elven"            
## [55885] "glass"             "shining"           "prow"             
## [55888] "shaven"            "oar"               "sail"             
## [55891] "bore"              "silver"            "mast"             
## [55894] "silmaril"          "lantern"           "light"            
## [55897] "banner"            "bright"            "living"           
## [55900] "flame"             "gleam"             "thereon"          
## [55903] "elbereth"          "set"               "thither"          
## [55906] "came"              "wings"             "immortal"         
## [55909] "made"              "laid"              "undying"          
## [55912] "doom"              "sail"              "shoreless"        
## [55915] "skies"             "come"              "behind"           
## [55918] "sun"               "light"             "moon"             
## [55921] "everevens"         "lofty"             "hills"            
## [55924] "softly"            "silver"            "fountains"        
## [55927] "fall"              "wings"             "bore"             
## [55930] "wandering"         "light"             "beyond"           
## [55933] "mighty"            "mountain"          "wall"             
## [55936] "worlds"            "end"               "turned"           
## [55939] "away"              "yearned"           "find"             
## [55942] "afar"              "home"              "shadows"          
## [55945] "journeying"        "burning"           "island"           
## [55948] "star"              "high"              "mists"            
## [55951] "came"              "distant"           "flame"            
## [55954] "sun"               "wonder"            "ere"              
## [55957] "waking"            "dawn"              "grey"             
## [55960] "norland"           "waters"            "run"              
## [55963] "middle"            "earth"             "passed"           
## [55966] "heard"             "last"              "weeping"          
## [55969] "sore"              "women"             "elven"            
## [55972] "maids"             "elder"             "days"             
## [55975] "years"             "yore"              "gut"              
## [55978] "mighty"            "doom"              "laid"             
## [55981] "till"              "moon"              "fade"             
## [55984] "orb"               ""                  "star"             
## [55987] "pass"              "tarry"             "never"            
## [55990] "hither"            "shores"            "mortals"          
## [55993] "ever"              "still"             "herald"           
## [55996] "errand"            "never"             "rest"             
## [55999] "bear"              "shining"           "lamp"             
## [56002] "afar"              "flammifer"         "westernesse"      
## [56005] "chanting"          "ceased"            "frodo"            
## [56008] "opened"            "eyes"              "saw"              
## [56011] "bilbo"             "seated"            "stool"            
## [56014] "circle"            "listeners"         "smiling"          
## [56017] "applauding"        "now"               "better"           
## [56020] "said"              "elf"               "bilbo"            
## [56023] "got"               "bowed"             "flattered"        
## [56026] "lindir"            "said"              "tiring"           
## [56029] "repeat"            "tiring"            "elves"            
## [56032] "answered"          "laughing"          "know"             
## [56035] "never"             "tired"             "reciting"         
## [56038] "verses"            "really"            "answer"           
## [56041] "question"          "one"               "hearing"          
## [56044] "cried"             "bilbo"             "cant"             
## [56047] "tell"              "parts"             "mine"             
## [56050] "dúnadans"          "easy"              "us"               
## [56053] "tell"              "difference"        "two"              
## [56056] "mortals"           "said"              "elf"              
## [56059] "nonsense"          "lindir"            "snorted"          
## [56062] "bilbo"             "cant"              "distinguish"      
## [56065] "man"               "hobbit"            "judgement"        
## [56068] "poorer"            "imagined"          "theyre"           
## [56071] "different"         "peas"              "apples"           
## [56074] "maybe"             "sheep"             "sheep"            
## [56077] "doubt"             "appear"            "different"        
## [56080] "laughed"           "lindir"            "shepherds"        
## [56083] "mortals"           "study"             "business"         
## [56086] "wont"              "argue"             "said"             
## [56089] "bilbo"             "sleepy"            "much"             
## [56092] "music"             "singing"           "ill"              
## [56095] "leave"             "guess"             "want"             
## [56098] "got"               "came"              "towards"          
## [56101] "frodo"             "well"              "thats"            
## [56104] "said"              "low"               "voice"            
## [56107] "went"              "better"            "expected"         
## [56110] "dont"              "often"             "get"              
## [56113] "asked"             "second"            "hearing"          
## [56116] "think"             "going"             "try"              
## [56119] "guess"             "said"              "frodo"            
## [56122] "smiling"           "neednt"            "said"             
## [56125] "bilbo"             "matter"            "fact"             
## [56128] "mine"              "except"            "aragorn"          
## [56131] "insisted"          "putting"           "green"            
## [56134] "stone"             "seemed"            "think"            
## [56137] "important"         "dont"              "know"             
## [56140] "otherwise"         "obviously"         "thought"          
## [56143] "whole"             "thing"             "rather"           
## [56146] "head"              "said"              "cheek"            
## [56149] "make"              "verses"            "eärendil"         
## [56152] "house"             "elrond"            "affair"           
## [56155] "suppose"           "right"             "dont"             
## [56158] "know"              "said"              "frodo"            
## [56161] "seemed"            "fit"               "somehow"          
## [56164] "though"            "cant"              "explain"          
## [56167] "half"              "asleep"            "began"            
## [56170] "seemed"            "follow"            "something"        
## [56173] "dreaming"          "didnt"             "understand"       
## [56176] "really"            "speaking"          "near"             
## [56179] "end"               "difficult"         "keep"             
## [56182] "awake"             "get"               "used"             
## [56185] "said"              "bilbo"             "hobbits"          
## [56188] "ever"              "acquire"           "quite"            
## [56191] "elvish"            "appetite"          "music"            
## [56194] "poetry"            "tales"             "seem"             
## [56197] "like"              "much"              "food"             
## [56200] "will"              "going"             "long"             
## [56203] "time"              "yet"               "say"              
## [56206] "slipping"          "quiet"             "talk"             
## [56209] "can"               "said"              "frodo"            
## [56212] "course"            "merrymaking"       "business"         
## [56215] "come"              "go"                "like"             
## [56218] "long"              "dont"              "make"             
## [56221] "noise"             "got"               "withdrew"         
## [56224] "quietly"           "shadows"           "made"             
## [56227] "doors"             "sam"               "left"             
## [56230] "behind"            "fast"              "asleep"           
## [56233] "still"             "smile"             "face"             
## [56236] "spite"             "delight"           "bilbos"           
## [56239] "company"           "frodo"             "felt"             
## [56242] "tug"               "regret"            "passed"           
## [56245] "hall"              "fire"              "even"             
## [56248] "stepped"           "threshold"         "single"           
## [56251] "clear"             "voice"             "rose"             
## [56254] "song"              "elbereth"          "gilthoniel"       
## [56257] "silivren"          "penna"             "míriel"           
## [56260] "menel"             "aglar"             "elenath"          
## [56263] "na"                "chaered"           "palan"            
## [56266] "díriel"            "galadhremmin"      "ennorath"         
## [56269] "fanuilos"          "le"                "linnathon"        
## [56272] "nef"               "aear"              "sí"               
## [56275] "nef"               "aearon"            "frodo"            
## [56278] "halted"            "moment"            "looking"          
## [56281] "back"              "elrond"            "chair"            
## [56284] "fire"              "face"              "like"             
## [56287] "summer"            "light"             "upon"             
## [56290] "trees"             "near"              "sat"              
## [56293] "lady"              "arwen"             "surprise"         
## [56296] "frodo"             "saw"               "aragorn"          
## [56299] "stood"             "beside"            "dark"             
## [56302] "cloak"             "thrown"            "back"             
## [56305] "seemed"            "clad"              "elven"            
## [56308] "mail"              "star"              "shone"            
## [56311] "breast"            "spoke"             "together"         
## [56314] "suddenly"          "seemed"            "frodo"            
## [56317] "arwen"             "turned"            "towards"          
## [56320] "light"             "eyes"              "fell"             
## [56323] "afar"              "pierced"           "heart"            
## [56326] "stood"             "still"             "enchanted"        
## [56329] "sweet"             "syllables"         "elvish"           
## [56332] "song"              "fell"              "like"             
## [56335] "clear"             "jewels"            "blended"          
## [56338] "word"              "melody"            "song"             
## [56341] "elbereth"          "said"              "bilbo"            
## [56344] "will"              "sing"              "songs"            
## [56347] "blessed"           "realm"             "many"             
## [56350] "times"             "tonight"           "come"             
## [56353] "led"               "frodo"             "back"             
## [56356] "little"            "room"              "opened"           
## [56359] "gar"               "dens"              "looked"           
## [56362] "south"             "across"            "ravine"           
## [56365] "bruinen"           "sat"               "looking"          
## [56368] "window"            "bright"            "stars"            
## [56371] "steep"             "climbing"          "woods"            
## [56374] "talking"           "softly"            "spoke"            
## [56377] "small"             "news"              "shire"            
## [56380] "far"               "away"              "dark"             
## [56383] "shadows"           "perils"            "encompassed"      
## [56386] "fair"              "things"            "seen"             
## [56389] "world"             "together"          "elves"            
## [56392] "stars"             "trees"             "gentle"           
## [56395] "fall"              "bright"            "year"             
## [56398] "woods"             "last"              "came"             
## [56401] "knock"             "door"              "begging"          
## [56404] "pardon"            "said"              "sam"              
## [56407] "putting"           "head"              "just"             
## [56410] "wondering"         "wanting"           "anything"         
## [56413] "begging"           "sam"               "gamgee"           
## [56416] "replied"           "bilbo"             "guess"            
## [56419] "mean"              "time"              "master"           
## [56422] "went"              "bed"               "well"             
## [56425] "sir"               "council"           "early"            
## [56428] "tomorrow"          "hear"              "got"              
## [56431] "today"             "first"             "time"             
## [56434] "quite"             "right"             "sam"              
## [56437] "laughed"           "bilbo"             "can"              
## [56440] "trot"              "tell"              "gandalf"          
## [56443] "gone"              "bed"               "good"             
## [56446] "night"             "frodo"             "bless"            
## [56449] "good"              "see"               "folk"             
## [56452] "like"              "hobbits"           "real"             
## [56455] "good"              "talk"              "getting"          
## [56458] "old"               "began"             "wonder"           
## [56461] "ever"              "live"              "see"              
## [56464] "chapters"          "story"             "good"             
## [56467] "night"             "ill"               "take"             
## [56470] "walk"              "think"             "look"             
## [56473] "stars"             "elbereth"          "garden"           
## [56476] "sleep"             "well"              "chapter"          
## [56479] "council"           "elrond"            "next"             
## [56482] "day"               "frodo"             "woke"             
## [56485] "early"             "feeling"           "refreshed"        
## [56488] "well"              "walked"            "along"            
## [56491] "terraces"          "loud"              "flowing"          
## [56494] "bruinen"           "watched"           "pale"             
## [56497] "cool"              "sun"               "rise"             
## [56500] "far"               "mountains"         "shine"            
## [56503] "slanting"          "thin"              "silver"           
## [56506] "mist"              "dew"               "upon"             
## [56509] "yellow"            "leaves"            "glimmering"       
## [56512] "woven"             "nets"              "gossamer"         
## [56515] "twinkled"          "every"             "bush"             
## [56518] "sam"               "walked"            "beside"           
## [56521] "saying"            "nothing"           "sniffing"         
## [56524] "air"               "looking"           "every"            
## [56527] "now"               "wonder"            "eyes"             
## [56530] "great"             "heights"           "east"             
## [56533] "snow"              "white"             "upon"             
## [56536] "peaks"             "seat"              "cut"              
## [56539] "stone"             "beside"            "turn"             
## [56542] "path"              "came"              "upon"             
## [56545] "gandalf"           "bilbo"             "deep"             
## [56548] "talk"              "hullo"             "good"             
## [56551] "morning"           "said"              "bilbo"            
## [56554] "feel"              "ready"             "great"            
## [56557] "council"           "feel"              "ready"            
## [56560] "anything"          "answered"          "frodo"            
## [56563] "like"              "go"                "walking"          
## [56566] "today"             "explore"           "valley"           
## [56569] "like"              "get"               "pine"             
## [56572] "woods"             "pointed"           "away"             
## [56575] "far"               "side"              "rivendell"        
## [56578] "north"             "may"               "chance"           
## [56581] "later"             "said"              "gandalf"          
## [56584] "make"              "plans"             "yet"              
## [56587] "much"              "hear"              "decide"           
## [56590] "today"             "suddenly"          "talking"          
## [56593] "single"            "clear"             "bell"             
## [56596] "rang"              "warning"           "bell"             
## [56599] "council"           "elrond"            "cried"            
## [56602] "gandalf"           "come"              "along"            
## [56605] "now"               "bilbo"             "wanted"           
## [56608] "frodo"             "bilbo"             "followed"         
## [56611] "wizard"            "quickly"           "along"            
## [56614] "winding"           "path"              "back"             
## [56617] "house"             "behind"            "uninvited"        
## [56620] "moment"            "forgotten"         "trotted"          
## [56623] "sam"               "gandalf"           "led"              
## [56626] "porch"             "frodo"             "found"            
## [56629] "friends"           "evening"           "light"            
## [56632] "clear"             "autumn"            "morning"          
## [56635] "now"               "glowing"           "valley"           
## [56638] "noise"             "bubbling"          "waters"           
## [56641] "came"              "foaming"           "river"            
## [56644] "bed"               "birds"             "singing"          
## [56647] "wholesome"         "peace"             "lay"              
## [56650] "land"              "frodo"             "dangerous"        
## [56653] "flight"            "rumours"           "darkness"         
## [56656] "growing"           "world"             "outside"          
## [56659] "already"           "seemed"            "memories"         
## [56662] "troubled"          "dream"             "faces"            
## [56665] "turned"            "meet"              "entered"          
## [56668] "grave"             "elrond"            "several"          
## [56671] "others"            "seated"            "silence"          
## [56674] "frodo"             "saw"               "glorfindel"       
## [56677] "glóin"             "corner"            "alone"            
## [56680] "strider"           "sitting"           "clad"             
## [56683] "old"               "travel"            "worn"             
## [56686] "clothes"           "elrond"            "drew"             
## [56689] "frodo"             "seat"              "side"             
## [56692] "presented"         "company"           "saying"           
## [56695] "friends"           "hobbit"            "frodo"            
## [56698] "son"               "drogo"             "ever"             
## [56701] "come"              "hither"            "greater"          
## [56704] "peril"             "errand"            "urgent"           
## [56707] "pointed"           "named"             "frodo"            
## [56710] "met"               "younger"           "dwarf"            
## [56713] "glóins"            "side"              "son"              
## [56716] "gimli"             "beside"            "glorfindel"       
## [56719] "several"           "counsellors"       "elronds"          
## [56722] "household"         "erestor"           "chief"            
## [56725] "galdor"            "elf"               "grey"             
## [56728] "havens"            "come"              "errand"           
## [56731] "círdan"            "shipwright"        "also"             
## [56734] "strange"           "elf"               "clad"             
## [56737] "green"             "brown"             "legolas"          
## [56740] "messenger"         "father"            "thranduil"        
## [56743] "king"              "elves"             "northern"         
## [56746] "mirkwood"          "seated"            "little"           
## [56749] "apart"             "tall"              "man"              
## [56752] "fair"              "noble"             "face"             
## [56755] "dark"              "haired"            "grey"             
## [56758] "eyed"              "proud"             "stern"            
## [56761] "glance"            "cloaked"           "booted"           
## [56764] "journey"           "horseback"         "indeed"           
## [56767] "though"            "garments"          "rich"             
## [56770] "cloak"             "lined"             "fur"              
## [56773] "stained"           "long"              "travel"           
## [56776] "collar"            "silver"            "single"           
## [56779] "white"             "stone"             "set"              
## [56782] "locks"             "shorn"             "shoulders"        
## [56785] "baldric"           "wore"              "great"            
## [56788] "horn"              "tipped"            "silver"           
## [56791] "now"               "laid"              "upon"             
## [56794] "knees"             "gazed"             "frodo"            
## [56797] "bilbo"             "sudden"            "wonder"           
## [56800] "said"              "elrond"            "turning"          
## [56803] "gandalf"           "boromir"           "man"              
## [56806] "south"             "arrived"           "grey"             
## [56809] "morning"           "seeks"             "counsel"          
## [56812] "bidden"            "present"           "questions"        
## [56815] "will"              "answered"          "spoken"           
## [56818] "debated"           "council"           "need"             
## [56821] "now"               "told"              "much"             
## [56824] "said"              "events"            "world"            
## [56827] "outside"           "especially"        "south"            
## [56830] "wide"              "lands"             "east"             
## [56833] "mountains"         "things"            "frodo"            
## [56836] "already"           "heard"             "many"             
## [56839] "rumours"           "tale"              "glóin"            
## [56842] "new"               "dwarf"             "spoke"            
## [56845] "listened"          "attentively"       "appeared"         
## [56848] "amid"              "splendour"         "works"            
## [56851] "hand"              "hearts"            "dwarves"          
## [56854] "lonely"            "mountain"          "troubled"         
## [56857] "now"               "many"              "years"            
## [56860] "ago"               "said"              "glóin"            
## [56863] "shadow"            "disquiet"          "fell"             
## [56866] "upon"              "people"            "whence"           
## [56869] "came"              "first"             "perceive"         
## [56872] "words"             "began"             "whispered"        
## [56875] "secret"            "said"              "hemmed"           
## [56878] "narrow"            "place"             "greater"          
## [56881] "wealth"            "splendour"         "found"            
## [56884] "wider"             "world"             "spoke"            
## [56887] "moria"             "mighty"            "works"            
## [56890] "fathers"           "called"            "tongue"           
## [56893] "khazad"            "dûm"               "declared"         
## [56896] "now"               "last"              "power"            
## [56899] "numbers"           "return"            "glóin"            
## [56902] "sighed"            "moria"             "moria"            
## [56905] "wonder"            "northern"          "world"            
## [56908] "deep"              "delved"            "woke"             
## [56911] "nameless"          "fear"              "long"             
## [56914] "vast"              "mansions"          "lain"             
## [56917] "empty"             "since"             "children"         
## [56920] "durin"             "fled"              "now"              
## [56923] "spoke"             "longing"           "yet"              
## [56926] "dread"             "dwarf"             "dared"            
## [56929] "pass"              "doors"             "khazad"           
## [56932] "dûm"               "many"              "lives"            
## [56935] "kings"             "save"              "thrór"            
## [56938] "perished"          "last"              "however"          
## [56941] "balin"             "listened"          "whispers"         
## [56944] "resolved"          "go"                "though"           
## [56947] "dáin"              "give"              "leave"            
## [56950] "willingly"         "took"              "ori"              
## [56953] "óin"               "many"              "folk"             
## [56956] "went"              "away"              "south"            
## [56959] "nigh"              "thirty"            "years"            
## [56962] "ago"               "news"              "seemed"           
## [56965] "good"              "messages"          "reported"         
## [56968] "moria"             "entered"           "great"            
## [56971] "work"              "begun"             "silence"          
## [56974] "word"              "ever"              "come"             
## [56977] "moria"             "since"             "year"             
## [56980] "ago"               "messenger"         "came"             
## [56983] "dáin"              "moria"             "mordor"           
## [56986] "horseman"          "night"             "called"           
## [56989] "dáin"              "gate"              "lord"             
## [56992] "sauron"            "great"             "said"             
## [56995] "wished"            "friendship"        "rings"            
## [56998] "give"              "gave"              "old"              
## [57001] "asked"             "urgently"          "concerning"       
## [57004] "hobbits"           "kind"              "dwelt"            
## [57007] "sauron"            "knows"             "said"             
## [57010] "one"               "known"             "time"             
## [57013] "greatly"           "troubled"          "gave"             
## [57016] "answer"            "fell"              "voice"            
## [57019] "lowered"           "sweetened"         "small"            
## [57022] "token"             "friendship"        "sauron"           
## [57025] "asks"              "said"              "find"             
## [57028] "thief"             "word"              "get"              
## [57031] "willing"           "little"            "ring"             
## [57034] "least"             "rings"             "stole"            
## [57037] "trifle"            "sauron"            "fancies"          
## [57040] "earnest"           "good"              "will"             
## [57043] "find"              "three"             "rings"            
## [57046] "dwarf"             "sires"             "possessed"        
## [57049] "old"               "shall"             "returned"         
## [57052] "realm"             "moria"             "shall"            
## [57055] "ever"              "find"              "news"             
## [57058] "thief"             "whether"           "still"            
## [57061] "lives"             "shall"             "great"            
## [57064] "reward"            "lasting"           "friendship"       
## [57067] "lord"              "refuse"            "things"           
## [57070] "will"              "seem"              "well"             
## [57073] "refuse"            "breath"            "came"             
## [57076] "like"              "hiss"              "snakes"           
## [57079] "stood"             "shuddered"         "dáin"             
## [57082] "said"              "say"               "neither"          
## [57085] "yea"               "nay"               "must"             
## [57088] "consider"          "message"           "means"            
## [57091] "fair"              "cloak"             "consider"         
## [57094] "well"              "long"              "said"             
## [57097] "time"              "thought"           "spend"            
## [57100] "answered"          "dáin"              "present"          
## [57103] "said"              "rode"              "darkness"         
## [57106] "heavy"             "hearts"            "chieftains"       
## [57109] "since"             "night"             "needed"           
## [57112] "fell"              "voice"             "messenger"        
## [57115] "warn"              "us"                "words"            
## [57118] "held"              "menace"            "deceit"           
## [57121] "knew"              "already"           "power"            
## [57124] "re"                "entered"           "mordor"           
## [57127] "changed"           "ever"              "betrayed"         
## [57130] "us"                "old"               "twice"            
## [57133] "messenger"         "returned"          "gone"             
## [57136] "unanswered"        "third"             "last"             
## [57139] "time"              "says"              "soon"             
## [57142] "come"              "ending"            "year"             
## [57145] "sent"              "last"              "dáin"             
## [57148] "warn"              "bilbo"             "sought"           
## [57151] "enemy"             "learn"             "may"              
## [57154] "desires"           "ring"              "least"            
## [57157] "rings"             "also"              "crave"            
## [57160] "advice"            "elrond"            "shadow"           
## [57163] "grows"             "draws"             "nearer"           
## [57166] "discover"          "messengers"        "come"             
## [57169] "also"              "king"              "brand"            
## [57172] "dale"              "afraid"            "fear"             
## [57175] "may"               "yield"             "already"          
## [57178] "war"               "gathering"         "eastern"          
## [57181] "borders"           "make"              "answer"           
## [57184] "enemy"             "may"               "move"             
## [57187] "men"               "rule"              "assail"           
## [57190] "king"              "brand"             "dáin"             
## [57193] "also"              "done"              "well"             
## [57196] "come"              "said"              "elrond"           
## [57199] "will"              "hear"              "today"            
## [57202] "need"              "order"             "understand"       
## [57205] "purposes"          "enemy"             "naught"           
## [57208] "can"               "resist"            "hope"             
## [57211] "without"           "stand"             "alone"            
## [57214] "will"              "learn"             "trouble"          
## [57217] "part"              "trouble"           "western"          
## [57220] "world"             "ring"              "shall"            
## [57223] "ring"              "least"             "rings"            
## [57226] "trifle"            "sauron"            "fancies"          
## [57229] "doom"              "must"              "deem"             
## [57232] "purpose"           "called"            "hither"           
## [57235] "called"            "say"               "though"           
## [57238] "called"            "strangers"         "distant"          
## [57241] "lands"             "come"              "met"              
## [57244] "nick"              "time"              "chance"           
## [57247] "may"               "seem"              "yet"              
## [57250] "believe"           "rather"            "ordered"          
## [57253] "sit"               "none"              "others"           
## [57256] "must"              "now"               "find"             
## [57259] "counsel"           "peril"             "world"            
## [57262] "now"               "therefore"         "things"           
## [57265] "shall"             "openly"            "spoken"           
## [57268] "hidden"            "day"               "first"            
## [57271] "may"               "understand"        "peril"            
## [57274] "tale"              "ring"              "shall"            
## [57277] "told"              "beginning"         "even"             
## [57280] "present"           "will"              "begin"            
## [57283] "tale"              "though"            "others"           
## [57286] "shall"             "end"               "listened"         
## [57289] "elrond"            "clear"             "voice"            
## [57292] "spoke"             "sauron"            "rings"            
## [57295] "power"             "forging"           "second"           
## [57298] "age"               "world"             "long"             
## [57301] "ago"               "part"              "tale"             
## [57304] "known"             "full"              "tale"             
## [57307] "none"              "many"              "eyes"             
## [57310] "turned"            "elrond"            "fear"             
## [57313] "wonder"            "told"              "elven"            
## [57316] "smiths"            "eregion"           "friendship"       
## [57319] "moria"             "eagerness"         "knowledge"        
## [57322] "sauron"            "ensnared"          "time"             
## [57325] "yet"               "evil"              "behold"           
## [57328] "received"          "aid"               "grew"             
## [57331] "mighty"            "craft"             "whereas"          
## [57334] "learned"           "secrets"           "betrayed"         
## [57337] "forged"            "secretly"          "mountain"         
## [57340] "fire"              "one"               "ring"             
## [57343] "master"            "celebrimbor"       "aware"            
## [57346] "hid"               "three"             "made"             
## [57349] "war"               "land"              "laid"             
## [57352] "waste"             "gate"              "moria"            
## [57355] "shut"              "years"             "followed"         
## [57358] "traced"            "ring"              "since"            
## [57361] "history"           "elsewhere"         "recounted"        
## [57364] "even"              "elrond"            "set"              
## [57367] "books"             "lore"              "recalled"         
## [57370] "long"              "tale"              "full"             
## [57373] "deeds"             "great"             "terrible"         
## [57376] "briefly"           "though"            "elrond"           
## [57379] "spoke"             "sun"               "rode"             
## [57382] "sky"               "morning"           "passing"          
## [57385] "ere"               "ceased"            "númenor"          
## [57388] "spoke"             "glory"             "fall"             
## [57391] "return"            "kings"             "men"              
## [57394] "middle"            "earth"             "deeps"            
## [57397] "sea"               "borne"             "upon"             
## [57400] "wings"             "storm"             "elendil"          
## [57403] "tall"              "mighty"            "sons"             
## [57406] "isildur"           "anárion"           "became"           
## [57409] "great"             "lords"             "north"            
## [57412] "realm"             "made"              "arnor"            
## [57415] "south"             "realm"             "gondor"           
## [57418] "mouths"            "anduin"            "sauron"           
## [57421] "mordor"            "assailed"          "made"             
## [57424] "last"              "alliance"          "elves"            
## [57427] "men"               "hosts"             "gil"              
## [57430] "galad"             "elendil"           "mustered"         
## [57433] "arnor"             "thereupon"         "elrond"           
## [57436] "paused"            "sighed"            "remember"         
## [57439] "well"              "splendour"         "banners"          
## [57442] "said"              "recalled"          "glory"            
## [57445] "elder"             "days"              "hosts"            
## [57448] "beleriand"         "many"              "great"            
## [57451] "princes"           "captains"          "assembled"        
## [57454] "yet"               "many"              "fair"             
## [57457] "thangorodrim"      "broken"            "elves"            
## [57460] "deemed"            "evil"              "ended"            
## [57463] "ever"              "remember"          "said"             
## [57466] "frodo"             "speaking"          "thought"          
## [57469] "aloud"             "astonishment"      "thought"          
## [57472] "stammered"         "elrond"            "turned"           
## [57475] "towards"           "thought"           "fall"             
## [57478] "gil"               "galad"             "long"             
## [57481] "age"               "ago"               "indeed"           
## [57484] "answered"          "elrond"            "gravely"          
## [57487] "memory"            "reaches"           "back"             
## [57490] "even"              "elder"             "days"             
## [57493] "eärendil"          "sire"              "born"             
## [57496] "gondolin"          "fall"              "mother"           
## [57499] "elwing"            "daughter"          "dior"             
## [57502] "son"               "lúthien"           "doriath"          
## [57505] "seen"              "three"             "ages"             
## [57508] "west"              "world"             "many"             
## [57511] "defeats"           "many"              "fruitless"        
## [57514] "victories"         "herald"            "gil"              
## [57517] "galad"             "marched"           "host"             
## [57520] "battle"            "dagorlad"          "black"            
## [57523] "gate"              "mordor"            "mastery"          
## [57526] "spear"             "gil"               "galad"            
## [57529] "sword"             "elendil"           "aiglos"           
## [57532] "narsil"            "none"              "withstand"        
## [57535] "beheld"            "last"              "combat"           
## [57538] "slopes"            "orodruin"          "gil"              
## [57541] "galad"             "died"              "elendil"          
## [57544] "fell"              "narsil"            "broke"            
## [57547] "beneath"           "sauron"            "overthrown"       
## [57550] "isildur"           "cut"               "ring"             
## [57553] "hand"              "hilt"              "shard"            
## [57556] "fathers"           "sword"             "took"             
## [57559] "stranger"          "boromir"           "broke"            
## [57562] "became"            "ring"              "cried"            
## [57565] "ever"              "tale"              "told"             
## [57568] "south"             "long"              "forgotten"        
## [57571] "heard"             "great"             "ring"             
## [57574] "name"              "believed"          "perished"         
## [57577] "world"             "ruin"              "first"            
## [57580] "realm"             "isildur"           "took"             
## [57583] "tidings"           "indeed"            "alas"             
## [57586] "yes"               "said"              "elrond"           
## [57589] "isildur"           "took"              "cast"             
## [57592] "orodruins"         "fire"              "nigh"             
## [57595] "hand"              "made"              "marked"           
## [57598] "isildur"           "alone"             "stood"            
## [57601] "father"            "last"              "mortal"           
## [57604] "contest"           "gil"               "galad"            
## [57607] "círdan"            "stood"             "isildur"          
## [57610] "listen"            "counsel"           "will"             
## [57613] "weregild"          "father"            "brother"          
## [57616] "said"              "therefore"         "whether"          
## [57619] "took"              "treasure"          "soon"             
## [57622] "betrayed"          "death"             "named"            
## [57625] "north"             "isildurs"          "bane"             
## [57628] "yet"               "death"             "maybe"            
## [57631] "better"            "else"              "might"            
## [57634] "befallen"          "north"             "tidings"          
## [57637] "come"              "small"             "wonder"           
## [57640] "heard"             "boromir"           "ruin"             
## [57643] "gladden"           "fields"            "isildur"          
## [57646] "perished"          "three"             "men"              
## [57649] "came"              "ever"              "back"             
## [57652] "mountains"         "long"              "wandering"        
## [57655] "one"               "ohtar"             "esquire"          
## [57658] "isildur"           "bore"              "shards"           
## [57661] "sword"             "elendil"           "brought"          
## [57664] "valandil"          "heir"              "isildur"          
## [57667] "child"             "remained"          "rivendell"        
## [57670] "narsil"            "broken"            "light"            
## [57673] "extinguished"      "yet"               "forged"           
## [57676] "fruitless"         "call"              "victory"          
## [57679] "last"              "alliance"          "wholly"           
## [57682] "yet"               "achieve"           "end"              
## [57685] "sauron"            "diminished"        "destroyed"        
## [57688] "ring"              "lost"              "unmade"           
## [57691] "dark"              "tower"             "broken"           
## [57694] "foundations"       "removed"           "made"             
## [57697] "power"             "ring"              "remains"          
## [57700] "will"              "endure"            "many"             
## [57703] "elves"             "many"              "mighty"           
## [57706] "men"               "many"              "friends"          
## [57709] "perished"          "war"               "anárion"          
## [57712] "slain"             "isildur"           "slain"            
## [57715] "gil"               "galad"             "elendil"          
## [57718] "never"             "shall"             "league"           
## [57721] "elves"             "men"               "men"              
## [57724] "multiply"          "firstborn"         "decrease"         
## [57727] "two"               "kindreds"          "estranged"        
## [57730] "ever"              "since"             "day"              
## [57733] "race"              "númenor"           "decayed"          
## [57736] "span"              "years"             "lessened"         
## [57739] "north"             "war"               "slaughter"        
## [57742] "gladden"           "fields"            "men"              
## [57745] "westernesse"       "diminished"        "city"             
## [57748] "annúminas"         "beside"            "lake"             
## [57751] "evendim"           "fell"              "ruin"             
## [57754] "heirs"             "valandil"          "removed"          
## [57757] "dwelt"             "fornost"           "high"             
## [57760] "north"             "downs"             "now"              
## [57763] "desolate"          "men"               "call"             
## [57766] "deadmens"          "dike"              "fear"             
## [57769] "tread"             "folk"              "arnor"            
## [57772] "dwindled"          "foes"              "devoured"         
## [57775] "lordship"          "passed"            "leaving"          
## [57778] "green"             "mounds"            "grassy"           
## [57781] "hills"             "south"             "realm"            
## [57784] "gondor"            "long"              "endured"          
## [57787] "splendour"         "grew"              "recalling"        
## [57790] "somewhat"          "might"             "númenor"          
## [57793] "ere"               "fell"              "high"             
## [57796] "towers"            "people"            "built"            
## [57799] "strong"            "places"            "havens"           
## [57802] "many"              "ships"             "winged"           
## [57805] "crown"             "kings"             "men"              
## [57808] "held"              "awe"               "folk"             
## [57811] "many"              "tongues"           "chief"            
## [57814] "city"              "osgiliath"         "citadel"          
## [57817] "stars"             "midst"             "river"            
## [57820] "flowed"            "minas"             "ithil"            
## [57823] "built"             "tower"             "rising"           
## [57826] "moon"              "eastward"          "upon"             
## [57829] "shoulder"          "mountains"         "shadow"           
## [57832] "westward"          "feet"              "white"            
## [57835] "mountains"         "minas"             "anor"             
## [57838] "made"              "tower"             "setting"          
## [57841] "sun"               "courts"            "king"             
## [57844] "grew"              "white"             "tree"             
## [57847] "seed"              "tree"              "isildur"          
## [57850] "brought"           "deep"              "waters"           
## [57853] "seed"              "tree"              "came"             
## [57856] "eressëa"           "uttermost"         "west"             
## [57859] "day"               "days"              "world"            
## [57862] "young"             "wearing"           "swift"            
## [57865] "years"             "middle"            "earth"            
## [57868] "line"              "meneldil"          "son"              
## [57871] "anárion"           "failed"            "tree"             
## [57874] "withered"          "blood"             "númenoreans"      
## [57877] "became"            "mingled"           "lesser"           
## [57880] "men"               "watch"             "upon"             
## [57883] "walls"             "mordor"            "slept"            
## [57886] "dark"              "things"            "crept"            
## [57889] "back"              "gorgoroth"         "time"             
## [57892] "evil"              "things"            "came"             
## [57895] "forth"             "took"              "minas"            
## [57898] "ithil"             "abode"             "made"             
## [57901] "place"             "dread"             "called"           
## [57904] "minas"             "morgul"            "tower"            
## [57907] "sorcery"           "minas"             "anor"             
## [57910] "named"             "anew"              "minas"            
## [57913] "tirith"            "tower"             "guard"            
## [57916] "two"               "cities"            "ever"             
## [57919] "war"               "osgiliath"         "lay"              
## [57922] "deserted"          "ruins"             "shadows"          
## [57925] "walked"            "many"              "lives"            
## [57928] "men"               "lords"             "minas"            
## [57931] "tirith"            "still"             "fight"            
## [57934] "defying"           "enemies"           "keeping"          
## [57937] "passage"           "river"             "argonath"         
## [57940] "sea"               "now"               "part"             
## [57943] "tale"              "shall"             "tell"             
## [57946] "drawn"             "close"             "days"             
## [57949] "isildur"           "ruling"            "ring"             
## [57952] "passed"            "knowledge"         "three"            
## [57955] "released"          "dominion"          "now"              
## [57958] "latter"            "day"               "peril"            
## [57961] "sorrow"            "one"               "found"            
## [57964] "others"            "shall"             "speak"            
## [57967] "finding"           "played"            "small"            
## [57970] "part"              "ceased"            "boromir"          
## [57973] "stood"             "tall"              "proud"            
## [57976] "give"              "leave"             "master"           
## [57979] "elrond"            "said"              "first"            
## [57982] "say"               "gondor"            "verily"           
## [57985] "land"              "gondor"            "come"             
## [57988] "well"              "know"              "passes"           
## [57991] "deem"              "know"              "deeds"            
## [57994] "therefore"         "guess"             "little"           
## [57997] "peril"             "fail"              "last"             
## [58000] "believe"           "land"              "gondor"           
## [58003] "blood"             "númenor"           "spent"            
## [58006] "pride"             "dignity"           "forgotten"        
## [58009] "valour"            "wild"              "folk"             
## [58012] "east"              "still"             "restrained"       
## [58015] "terror"            "morgul"            "kept"             
## [58018] "bay"               "thus"              "alone"            
## [58021] "peace"             "freedom"           "maintained"       
## [58024] "lands"             "behind"            "us"               
## [58027] "bulwark"           "west"              "passages"         
## [58030] "river"             "won"               "yet"              
## [58033] "hour"              "maybe"             "now"              
## [58036] "far"               "away"              "nameless"         
## [58039] "enemy"             "arisen"            "smoke"            
## [58042] "rises"             "orodruin"          "call"             
## [58045] "mount"             "doom"              "power"            
## [58048] "black"             "land"              "grows"            
## [58051] "hard"              "beset"             "enemy"            
## [58054] "returned"          "folk"              "driven"           
## [58057] "ithilien"          "fair"              "domain"           
## [58060] "east"              "river"             "though"           
## [58063] "kept"              "foothold"          "strength"         
## [58066] "arms"              "year"              "days"             
## [58069] "june"              "sudden"            "war"              
## [58072] "came"              "upon"              "us"               
## [58075] "mordor"            "swept"             "away"             
## [58078] "outnumbered"       "mordor"            "allied"           
## [58081] "easterlings"       "cruel"             "haradrim"         
## [58084] "numbers"           "defeated"          "power"            
## [58087] "felt"              "said"              "seen"             
## [58090] "like"              "great"             "black"            
## [58093] "horseman"          "dark"              "shadow"           
## [58096] "moon"              "wherever"          "came"             
## [58099] "madness"           "filled"            "foes"             
## [58102] "fear"              "fell"              "boldest"          
## [58105] "horse"             "man"               "gave"             
## [58108] "way"               "fled"              "remnant"          
## [58111] "eastern"           "force"             "came"             
## [58114] "back"              "destroying"        "last"             
## [58117] "bridge"            "still"             "stood"            
## [58120] "amid"              "ruins"             "osgiliath"        
## [58123] "company"           "held"              "bridge"           
## [58126] "cast"              "behind"            "us"               
## [58129] "four"              "saved"             "swimming"         
## [58132] "brother"           "two"               "others"           
## [58135] "still"             "fight"             "holding"          
## [58138] "west"              "shores"            "anduin"           
## [58141] "shelter"           "behind"            "us"               
## [58144] "give"              "us"                "praise"           
## [58147] "ever"              "hear"              "name"             
## [58150] "much"              "praise"            "little"           
## [58153] "help"              "rohan"             "now"              
## [58156] "will"              "men"               "ride"             
## [58159] "us"                "call"              "evil"             
## [58162] "hour"              "come"              "errand"           
## [58165] "many"              "dangerous"         "leagues"          
## [58168] "elrond"            "hundred"           "ten"              
## [58171] "days"              "journeyed"         "alone"            
## [58174] "seek"              "allies"            "war"              
## [58177] "might"             "elrond"            "wisdom"           
## [58180] "weapons"           "said"              "come"             
## [58183] "ask"               "counsel"           "unravelling"      
## [58186] "hard"              "words"             "eve"              
## [58189] "sudden"            "assault"           "dream"            
## [58192] "came"              "brother"           "troubled"         
## [58195] "sleep"             "afterwards"        "like"             
## [58198] "dream"             "came"              "oft"              
## [58201] "dream"             "thought"           "eastern"          
## [58204] "sky"               "grew"              "dark"             
## [58207] "growing"           "thunder"           "west"             
## [58210] "pale"              "light"             "lingered"         
## [58213] "heard"             "voice"             "remote"           
## [58216] "clear"             "crying"            "seek"             
## [58219] "sword"             "broken"            "imladris"         
## [58222] "dwells"            "shall"             "counsels"         
## [58225] "taken"             "stronger"          "morgul"           
## [58228] "spells"            "shall"             "shown"            
## [58231] "token"             "doom"              "near"             
## [58234] "hand"              "isildurs"          "bane"             
## [58237] "shall"             "waken"             "halfling"         
## [58240] "forth"             "shall"             "stand"            
## [58243] "words"             "understand"        "little"           
## [58246] "spoke"             "father"            "denethor"         
## [58249] "lord"              "minas"             "tirith"           
## [58252] "wise"              "lore"              "gondor"           
## [58255] "say"               "imladris"          "old"              
## [58258] "name"              "among"             "elves"            
## [58261] "far"               "northern"          "dale"             
## [58264] "elrond"            "halfelven"         "dwelt"            
## [58267] "greatest"          "lore"              "masters"          
## [58270] "therefore"         "brother"           "seeing"           
## [58273] "desperate"         "need"              "eager"            
## [58276] "heed"              "dream"             "seek"             
## [58279] "imladris"          "since"             "way"              
## [58282] "full"              "doubt"             "danger"           
## [58285] "took"              "journey"           "upon"             
## [58288] "loth"              "father"            "give"             
## [58291] "leave"             "long"              "wandered"         
## [58294] "roads"             "forgotten"         "seeking"          
## [58297] "house"             "elrond"            "many"             
## [58300] "heard"             "knew"              "lay"              
## [58303] "house"             "elrond"            "shall"            
## [58306] "made"              "clear"             "said"             
## [58309] "aragorn"           "standing"          "cast"             
## [58312] "sword"             "upon"              "table"            
## [58315] "stood"             "elrond"            "blade"            
## [58318] "two"               "pieces"            "sword"            
## [58321] "broken"            "said"              "minas"            
## [58324] "tirith"            "asked"             "boromir"          
## [58327] "looking"           "wonder"            "lean"             
## [58330] "face"              "ranger"            "weather"          
## [58333] "stained"           "cloak"             "aragorn"          
## [58336] "son"               "arathorn"          "said"             
## [58339] "elrond"            "descended"         "many"             
## [58342] "fathers"           "isildur"           "elendils"         
## [58345] "son"               "minas"             "ithil"            
## [58348] "chief"             "dúnedain"          "north"            
## [58351] "now"               "left"              "folk"             
## [58354] "belongs"           "cried"             "frodo"            
## [58357] "amazement"         "springing"         "feet"             
## [58360] "expected"          "ring"              "demanded"         
## [58363] "belong"            "either"            "us"               
## [58366] "said"              "aragorn"           "ordained"         
## [58369] "hold"              "bring"             "ring"             
## [58372] "frodo"             "said"              "gandalf"          
## [58375] "solemnly"          "time"              "come"             
## [58378] "hold"              "boromir"           "will"             
## [58381] "understand"        "remainder"         "riddle"           
## [58384] "hush"              "turned"            "eyes"             
## [58387] "frodo"             "shaken"            "sudden"           
## [58390] "shame"             "fear"              "felt"             
## [58393] "great"             "reluctance"        "reveal"           
## [58396] "ring"              "loathing"          "touch"            
## [58399] "wished"            "far"               "away"             
## [58402] "ring"              "gleamed"           "flickered"        
## [58405] "held"              "trembling"         "hand"             
## [58408] "behold"            "isildurs"          "bane"             
## [58411] "said"              "elrond"            "boromirs"         
## [58414] "eyes"              "glinted"           "gazed"            
## [58417] "golden"            "thing"             "halfling"         
## [58420] "muttered"          "doom"              "minas"            
## [58423] "tirith"            "come"              "last"             
## [58426] "seek"              "broken"            "sword"            
## [58429] "words"             "doom"              "minas"            
## [58432] "tirith"            "said"              "aragorn"          
## [58435] "doom"              "great"             "deeds"            
## [58438] "indeed"            "hand"              "sword"            
## [58441] "broken"            "sword"             "elendil"          
## [58444] "broke"             "beneath"           "fell"             
## [58447] "treasured"         "heirs"             "heirlooms"        
## [58450] "lost"              "spoken"            "old"              
## [58453] "among"             "us"                "made"             
## [58456] "ring"              "isildurs"          "bane"             
## [58459] "found"             "now"               "seen"             
## [58462] "sword"             "sought"            "ask"              
## [58465] "wish"              "house"             "elendil"          
## [58468] "return"            "land"              "gondor"           
## [58471] "sent"              "beg"               "boon"             
## [58474] "seek"              "meaning"           "riddle"           
## [58477] "answered"          "boromir"           "proudly"          
## [58480] "yet"               "hard"              "pressed"          
## [58483] "sword"             "elendil"           "help"             
## [58486] "beyond"            "hope"              "thing"            
## [58489] "indeed"            "return"            "shadows"          
## [58492] "past"              "looked"            "aragorn"          
## [58495] "doubt"             "eyes"              "frodo"            
## [58498] "felt"              "bilbo"             "stir"             
## [58501] "impatiently"       "side"              "evidently"        
## [58504] "annoyed"           "friends"           "behalf"           
## [58507] "standing"          "suddenly"          "burst"            
## [58510] "gold"              "glitter"           "wander"           
## [58513] "lost"              "old"               "strong"           
## [58516] "wither"            "deep"              "roots"            
## [58519] "reached"           "frost"             "ashes"            
## [58522] "fire"              "shall"             "woken"            
## [58525] "light"             "shadows"           "shall"            
## [58528] "spring"            "renewed"           "shall"            
## [58531] "blade"             "broken"            "crownless"        
## [58534] "shall"             "king"              "good"             
## [58537] "perhaps"           "point"             "need"             
## [58540] "beyond"            "word"              "elrond"           
## [58543] "worth"             "journey"           "hundred"          
## [58546] "ten"               "days"              "hear"             
## [58549] "best"              "listen"            "sat"              
## [58552] "snort"             "made"              "whispered"        
## [58555] "frodo"             "dúnadan"           "long"             
## [58558] "time"              "ago"               "first"            
## [58561] "told"              "almost"            "wish"             
## [58564] "adventures"        "go"                "day"              
## [58567] "comes"             "aragorn"           "smiled"           
## [58570] "turned"            "boromir"           "part"             
## [58573] "forgive"           "doubt"             "said"             
## [58576] "little"            "resemble"          "figures"          
## [58579] "elendil"           "isildur"           "stand"            
## [58582] "carven"            "majesty"           "halls"            
## [58585] "denethor"          "heir"              "isildur"          
## [58588] "isildur"           "hard"              "life"             
## [58591] "long"              "leagues"           "lie"              
## [58594] "gondor"            "small"             "part"             
## [58597] "count"             "journeys"          "crossed"          
## [58600] "many"              "mountains"         "many"             
## [58603] "rivers"            "trodden"           "many"             
## [58606] "plains"            "even"              "far"              
## [58609] "countries"         "rhûn"              "harad"            
## [58612] "stars"             "strange"           "home"             
## [58615] "north"             "heirs"             "valandil"         
## [58618] "ever"              "dwelt"             "long"             
## [58621] "line"              "unbroken"          "father"           
## [58624] "unto"              "son"               "many"             
## [58627] "generations"       "days"              "darkened"         
## [58630] "dwindled"          "ever"              "sword"            
## [58633] "passed"            "new"               "keeper"           
## [58636] "will"              "say"               "boromir"          
## [58639] "ere"               "end"               "lonely"           
## [58642] "men"               "rangers"           "wild"             
## [58645] "hunters"           "hunters"           "ever"             
## [58648] "servants"          "enemy"             "found"            
## [58651] "many"              "places"            "mordor"           
## [58654] "gondor"            "boromir"           "stalwart"         
## [58657] "tower"             "played"            "another"          
## [58660] "part"              "many"              "evil"             
## [58663] "things"            "strong"            "walls"            
## [58666] "bright"            "swords"            "stay"             
## [58669] "know"              "little"            "lands"            
## [58672] "beyond"            "bounds"            "peace"            
## [58675] "freedom"           "say"               "north"            
## [58678] "known"             "little"            "us"               
## [58681] "fear"              "destroyed"         "dark"             
## [58684] "things"            "come"              "houseless"        
## [58687] "hills"             "creep"             "sunless"          
## [58690] "woods"             "fly"               "us"               
## [58693] "roads"             "dare"              "tread"            
## [58696] "safety"            "quiet"             "lands"            
## [58699] "homes"             "simple"            "men"              
## [58702] "night"             "dúnedain"          "asleep"           
## [58705] "gone"              "grave"             "yet"              
## [58708] "less"              "thanks"            "travellers"       
## [58711] "scowl"             "us"                "countrymen"       
## [58714] "give"              "us"                "scornful"         
## [58717] "names"             "strider"           "one"              
## [58720] "fat"               "man"               "lives"            
## [58723] "within"            "days"              "march"            
## [58726] "foes"              "freeze"            "heart"            
## [58729] "lay"               "little"            "town"             
## [58732] "ruin"              "guarded"           "ceaselessly"      
## [58735] "yet"               "otherwise"         "simple"           
## [58738] "folk"              "free"              "care"             
## [58741] "fear"              "simple"            "will"             
## [58744] "must"              "secret"            "keep"             
## [58747] "task"              "kindred"           "years"            
## [58750] "lengthened"        "grass"             "grown"            
## [58753] "now"               "world"             "changing"         
## [58756] "new"               "hour"              "comes"            
## [58759] "isildurs"          "bane"              "found"            
## [58762] "battle"            "hand"              "sword"            
## [58765] "shall"             "reforged"          "will"             
## [58768] "come"              "minas"             "tirith"           
## [58771] "isildurs"          "bane"              "found"            
## [58774] "say"               "said"              "boromir"          
## [58777] "seen"              "bright"            "ring"             
## [58780] "halflings"         "hand"              "isildur"          
## [58783] "perished"          "ere"               "age"              
## [58786] "world"             "began"             "say"              
## [58789] "wise"              "know"              "ring"             
## [58792] "passed"            "years"             "brought"          
## [58795] "hither"            "strange"           "messenger"        
## [58798] "shall"             "told"              "said"             
## [58801] "elrond"            "yet"               "beg"              
## [58804] "master"            "said"              "bilbo"            
## [58807] "already"           "sun"               "climbing"         
## [58810] "noon"              "feel"              "need"             
## [58813] "something"         "strengthen"        "named"            
## [58816] "said"              "elrond"            "smiling"          
## [58819] "now"               "come"              "tell"             
## [58822] "us"                "tale"              "yet"              
## [58825] "cast"              "story"             "verse"            
## [58828] "may"               "tell"              "plain"            
## [58831] "words"             "briefer"           "sooner"           
## [58834] "shall"             "refreshed"         "well"             
## [58837] "said"              "bilbo"             "will"             
## [58840] "bid"               "will"              "now"              
## [58843] "tell"              "true"              "story"            
## [58846] "heard"             "tell"              "otherwise"        
## [58849] "looked"            "sidelong"          "glóin"            
## [58852] "ask"               "forget"            "forgive"          
## [58855] "wished"            "claim"             "treasure"         
## [58858] "days"              "rid"               "name"             
## [58861] "thief"             "put"               "perhaps"          
## [58864] "understand"        "things"            "little"           
## [58867] "better"            "now"               "anyway"           
## [58870] "happened"          "bilbos"            "tale"             
## [58873] "wholly"            "new"               "listened"         
## [58876] "amazement"         "old"               "hobbit"           
## [58879] "actually"          "displeased"        "recounted"        
## [58882] "adventure"         "gollum"            "full"             
## [58885] "length"            "omit"              "single"           
## [58888] "riddle"            "given"             "also"             
## [58891] "account"           "party"             "disappearance"    
## [58894] "shire"             "allowed"           "elrond"           
## [58897] "raised"            "hand"              "well"             
## [58900] "told"              "friend"            "said"             
## [58903] "enough"            "time"              "moment"           
## [58906] "suffices"          "know"              "ring"             
## [58909] "passed"            "frodo"             "heir"             
## [58912] "let"               "now"               "speak"            
## [58915] "less"              "willingly"         "bilbo"            
## [58918] "frodo"             "told"              "dealings"         
## [58921] "ring"              "day"               "passed"           
## [58924] "keeping"           "every"             "step"             
## [58927] "journey"           "hobbiton"          "ford"             
## [58930] "bruinen"           "questioned"        "considered"       
## [58933] "everything"        "recall"            "concerning"       
## [58936] "black"             "riders"            "examined"         
## [58939] "last"              "sat"               "bad"              
## [58942] "bilbo"             "said"              "made"             
## [58945] "good"              "story"             "hadnt"            
## [58948] "kept"              "interrupting"      "tried"            
## [58951] "make"              "notes"             "shall"            
## [58954] "go"                "together"          "time"             
## [58957] "write"             "whole"             "chapters"         
## [58960] "stuff"             "ever"              "got"              
## [58963] "yes"               "made"              "quite"            
## [58966] "long"              "tale"              "answered"         
## [58969] "frodo"             "story"             "still"            
## [58972] "seem"              "complete"          "still"            
## [58975] "want"              "know"              "good"             
## [58978] "deal"              "especially"        "gandalf"          
## [58981] "galdor"            "havens"            "sat"              
## [58984] "near"              "overheard"         "speak"            
## [58987] "also"              "cried"             "turning"          
## [58990] "elrond"            "said"              "wise"             
## [58993] "may"               "good"              "reason"           
## [58996] "believe"           "halflings"         "trove"            
## [58999] "indeed"            "great"             "ring"             
## [59002] "long"              "debate"            "unlikely"         
## [59005] "though"            "may"               "seem"             
## [59008] "know"              "less"              "may"              
## [59011] "hear"              "proofs"            "ask"              
## [59014] "also"              "saruman"           "learned"          
## [59017] "lore"              "rings"             "yet"              
## [59020] "among"             "us"                "counsel"          
## [59023] "knows"             "things"            "heard"            
## [59026] "questions"         "ask"               "galdor"           
## [59029] "bound"             "together"          "said"             
## [59032] "elrond"            "overlooked"        "shall"            
## [59035] "answered"          "things"            "part"             
## [59038] "gandalf"           "make"              "clear"            
## [59041] "call"              "upon"              "last"             
## [59044] "place"             "honour"            "matter"           
## [59047] "chief"             "galdor"            "said"             
## [59050] "gandalf"           "think"             "tidings"          
## [59053] "glóin"             "pursuit"           "frodo"            
## [59056] "proof"             "enough"            "halflings"        
## [59059] "trove"             "thing"             "great"            
## [59062] "worth"             "enemy"             "yet"              
## [59065] "ring"              "nine"              "nazgûl"           
## [59068] "keep"              "seven"             "taken"            
## [59071] "destroyed"         "glóin"             "stirred"          
## [59074] "speak"             "three"             "know"             
## [59077] "one"               "desires"           "much"             
## [59080] "indeed"            "wide"              "waste"            
## [59083] "time"              "river"             "mountain"         
## [59086] "loss"              "finding"           "gap"              
## [59089] "knowledge"         "wise"              "filled"           
## [59092] "last"              "yet"               "slowly"           
## [59095] "enemy"             "close"             "behind"           
## [59098] "closer"            "even"              "feared"           
## [59101] "well"              "year"              "summer"           
## [59104] "seems"             "learn"             "full"             
## [59107] "truth"             "will"              "remember"         
## [59110] "many"              "years"             "ago"              
## [59113] "dared"             "pass"              "doors"            
## [59116] "necromancer"       "dol"               "guldur"           
## [59119] "secretly"          "explored"          "ways"             
## [59122] "found"             "thus"              "fears"            
## [59125] "true"              "none"              "sauron"           
## [59128] "enemy"             "old"               "length"           
## [59131] "taking"            "shape"             "power"            
## [59134] "will"              "remember"          "also"             
## [59137] "saruman"           "dissuaded"         "us"               
## [59140] "open"              "deeds"             "long"             
## [59143] "watched"           "yet"               "last"             
## [59146] "shadow"            "grew"              "saruman"          
## [59149] "yielded"           "council"           "put"              
## [59152] "forth"             "strength"          "drove"            
## [59155] "evil"              "mirkwood"          "year"             
## [59158] "finding"           "ring"              "strange"          
## [59161] "chance"            "chance"            "late"             
## [59164] "elrond"            "foresaw"           "sauron"           
## [59167] "also"              "watched"           "us"               
## [59170] "long"              "prepared"          "stroke"           
## [59173] "governing"         "mordor"            "afar"             
## [59176] "minas"             "morgul"            "nine"             
## [59179] "servants"          "dwelt"             "ready"            
## [59182] "gave"              "way"               "us"               
## [59185] "feigned"           "flee"              "soon"             
## [59188] "came"              "dark"              "tower"            
## [59191] "openly"            "declared"          "last"             
## [59194] "time"              "council"           "met"              
## [59197] "now"               "learned"           "seeking"          
## [59200] "ever"              "eagerly"           "one"              
## [59203] "feared"            "news"              "knew"             
## [59206] "nothing"           "saruman"           "said"             
## [59209] "nay"               "repeated"          "said"             
## [59212] "us"                "one"               "never"            
## [59215] "found"             "middle"            "earth"            
## [59218] "worst"             "said"              "enemy"            
## [59221] "knows"             "still"             "lost"             
## [59224] "lost"              "may"               "yet"              
## [59227] "found"             "thinks"            "fear"             
## [59230] "hope"              "will"              "cheat"            
## [59233] "earnestly"         "studied"           "matter"           
## [59236] "anduin"            "great"             "fell"             
## [59239] "long"              "ago"               "sauron"           
## [59242] "slept"             "rolled"            "river"            
## [59245] "sea"               "let"               "lie"              
## [59248] "end"               "gandalf"           "fell"             
## [59251] "silent"            "gazing"            "eastward"         
## [59254] "porch"             "far"               "peaks"            
## [59257] "misty"             "mountains"         "whose"            
## [59260] "great"             "roots"             "peril"            
## [59263] "world"             "long"              "lain"             
## [59266] "hidden"            "sighed"            "fault"            
## [59269] "said"              "lulled"            "words"            
## [59272] "saruman"           "wise"              "sought"           
## [59275] "truth"             "sooner"            "peril"            
## [59278] "now"               "less"              "fault"            
## [59281] "said"              "elrond"            "vigilance"        
## [59284] "darkness"          "maybe"             "already"          
## [59287] "upon"              "us"                "say"              
## [59290] "first"             "heart"             "misgave"          
## [59293] "reason"            "knew"              "said"             
## [59296] "gandalf"           "desired"           "know"             
## [59299] "thing"             "came"              "gollum"           
## [59302] "long"              "possessed"         "set"              
## [59305] "watch"             "guessing"          "ere"              
## [59308] "long"              "come"              "forth"            
## [59311] "darkness"          "seek"              "treasure"         
## [59314] "came"              "escaped"           "found"            
## [59317] "alas"              "let"               "matter"           
## [59320] "rest"              "watching"          "waiting"          
## [59323] "often"             "done"              "time"             
## [59326] "passed"            "many"              "cares"            
## [59329] "doubts"            "awakened"          "sudden"           
## [59332] "fear"              "whence"            "came"             
## [59335] "hobbits"           "ring"              "fear"             
## [59338] "true"              "done"              "things"           
## [59341] "must"              "decide"            "spoke"            
## [59344] "yet"               "dread"             "none"             
## [59347] "knowing"           "peril"             "untimely"         
## [59350] "whisper"           "went"              "astray"           
## [59353] "long"              "wars"              "dark"             
## [59356] "tower"             "treason"           "ever"             
## [59359] "greatest"          "foe"               "seventeen"        
## [59362] "years"             "ago"               "soon"             
## [59365] "became"            "aware"             "spies"            
## [59368] "many"              "sorts"             "even"             
## [59371] "beasts"            "birds"             "gathered"         
## [59374] "round"             "shire"             "fear"             
## [59377] "grew"              "called"            "help"             
## [59380] "dúnedain"          "watch"             "doubled"          
## [59383] "opened"            "heart"             "aragorn"          
## [59386] "heir"              "isildur"           "said"             
## [59389] "aragorn"           "counselled"        "hunt"             
## [59392] "gollum"            "late"              "though"           
## [59395] "may"               "seem"              "since"            
## [59398] "seemed"            "fit"               "isildurs"         
## [59401] "heir"              "labour"            "repair"           
## [59404] "isildurs"          "fault"             "went"             
## [59407] "gandalf"           "long"              "hopeless"         
## [59410] "search"            "gandalf"           "told"             
## [59413] "explored"          "whole"             "length"           
## [59416] "wilderland"        "even"              "mountains"        
## [59419] "shadow"            "fences"            "mordor"           
## [59422] "rumour"            "guess"             "dwelt"            
## [59425] "long"              "dark"              "hills"            
## [59428] "never"             "found"             "last"             
## [59431] "despaired"         "despair"           "thought"          
## [59434] "test"              "might"             "make"             
## [59437] "finding"           "gollum"            "unneeded"         
## [59440] "ring"              "might"             "tell"             
## [59443] "one"               "memory"            "words"            
## [59446] "council"           "came"              "back"             
## [59449] "words"             "saruman"           "half"             
## [59452] "heeded"            "time"              "heard"            
## [59455] "now"               "clearly"           "heart"            
## [59458] "nine"              "seven"             "three"            
## [59461] "said"              "proper"            "gem"              
## [59464] "one"               "round"             "unadorned"        
## [59467] "one"               "lesser"            "rings"            
## [59470] "maker"             "set"               "marks"            
## [59473] "upon"              "skilled"           "maybe"            
## [59476] "still"             "see"               "read"             
## [59479] "marks"             "said"              "now"              
## [59482] "know"              "maker"             "saruman"          
## [59485] "great"             "though"            "lore"             
## [59488] "may"               "must"              "source"           
## [59491] "hand"              "save"              "saurons"          
## [59494] "ever"              "held"              "thing"            
## [59497] "ere"               "lost"              "hand"             
## [59500] "isildur"           "alone"             "thought"          
## [59503] "forsook"           "chase"             "passed"           
## [59506] "swiftly"           "gondor"            "former"           
## [59509] "days"              "members"           "order"            
## [59512] "well"              "received"          "saruman"          
## [59515] "often"             "long"              "guest"            
## [59518] "lords"             "city"              "less"             
## [59521] "welcome"           "lord"              "denethor"         
## [59524] "show"              "old"               "grudgingly"       
## [59527] "permitted"         "search"            "among"            
## [59530] "hoarded"           "scrolls"           "books"            
## [59533] "indeed"            "look"              "say"              
## [59536] "records"           "ancient"           "days"             
## [59539] "beginnings"        "city"              "read"             
## [59542] "said"              "less"              "dark"             
## [59545] "come"              "care"              "unless"           
## [59548] "skill"             "even"              "saruman"          
## [59551] "studied"           "long"              "will"             
## [59554] "find"              "naught"            "well"             
## [59557] "known"             "master"            "lore"             
## [59560] "city"              "said"              "denethor"         
## [59563] "yet"               "lie"               "hoards"           
## [59566] "many"              "records"           "now"              
## [59569] "can"               "read"              "even"             
## [59572] "lore"              "masters"           "scripts"          
## [59575] "tongues"           "become"            "dark"             
## [59578] "later"             "men"               "boromir"          
## [59581] "lies"              "minas"             "tirith"           
## [59584] "still"             "unread"            "guess"            
## [59587] "save"              "saruman"           "since"            
## [59590] "kings"             "failed"            "scroll"           
## [59593] "isildur"           "made"              "isildur"          
## [59596] "march"             "away"              "straight"         
## [59599] "war"               "mordor"            "told"             
## [59602] "tale"              "north"             "maybe"            
## [59605] "boromir"           "broke"             "know"             
## [59608] "gondor"            "went"              "first"            
## [59611] "minas"             "anor"              "dwelt"            
## [59614] "nephew"            "meneldil"          "instructing"      
## [59617] "committed"         "rule"              "south"            
## [59620] "kingdom"           "time"              "planted"          
## [59623] "last"              "sapling"           "white"            
## [59626] "tree"              "memory"            "brother"          
## [59629] "time"              "also"              "made"             
## [59632] "scroll"            "said"              "gandalf"          
## [59635] "remembered"        "gondor"            "seem"             
## [59638] "scroll"            "concerns"          "ring"             
## [59641] "thus"              "wrote"             "isildur"          
## [59644] "therein"           "great"             "ring"             
## [59647] "shall"             "go"                "now"              
## [59650] "heirloom"          "north"             "kingdom"          
## [59653] "records"           "shall"             "left"             
## [59656] "gondor"            "also"              "dwell"            
## [59659] "heirs"             "elendil"           "lest"             
## [59662] "time"              "come"              "memory"           
## [59665] "great"             "matters"           "shall"            
## [59668] "grow"              "dim"               "words"            
## [59671] "isildur"           "described"         "ring"             
## [59674] "found"             "hot"               "first"            
## [59677] "took"              "hot"               "glede"            
## [59680] "hand"              "scorched"          "doubt"            
## [59683] "ever"              "shall"             "free"             
## [59686] "pain"              "yet"               "even"             
## [59689] "write"             "cooled"            "seemeth"          
## [59692] "shrink"            "though"            "loseth"           
## [59695] "neither"           "beauty"            "shape"            
## [59698] "already"           "writing"           "upon"             
## [59701] "first"             "clear"             "red"              
## [59704] "flame"             "fadeth"            "now"              
## [59707] "barely"            "read"              "fashioned"        
## [59710] "elven"             "script"            "eregion"          
## [59713] "letters"           "mordor"            "subtle"           
## [59716] "work"              "language"          "unknown"          
## [59719] "deem"              "tongue"            "black"            
## [59722] "land"              "since"             "foul"             
## [59725] "uncouth"           "evil"              "saith"            
## [59728] "know"              "trace"             "copy"             
## [59731] "lest"              "fade"              "beyond"           
## [59734] "recall"            "ring"              "misseth"          
## [59737] "maybe"             "heat"              "saurons"          
## [59740] "hand"              "black"             "yet"              
## [59743] "burned"            "like"              "fire"             
## [59746] "gil"               "galad"             "destroyed"        
## [59749] "maybe"             "gold"              "made"             
## [59752] "hot"               "writing"           "refreshed"        
## [59755] "part"              "will"              "risk"             
## [59758] "hurt"              "thing"             "works"            
## [59761] "sauron"            "fair"              "precious"         
## [59764] "though"            "buy"               "great"            
## [59767] "pain"              "read"              "words"            
## [59770] "quest"             "ended"             "traced"           
## [59773] "writing"           "indeed"            "isildur"          
## [59776] "guessed"           "tongue"            "mordor"           
## [59779] "servants"          "tower"             "said"             
## [59782] "therein"           "already"           "known"            
## [59785] "day"               "sauron"            "first"            
## [59788] "put"               "one"               "celebrimbor"      
## [59791] "maker"             "three"             "aware"            
## [59794] "afar"              "heard"             "speak"            
## [59797] "words"             "evil"              "purposes"         
## [59800] "revealed"          "took"              "leave"            
## [59803] "denethor"          "even"              "went"             
## [59806] "northwards"        "messages"          "came"             
## [59809] "lórien"            "aragorn"           "passed"           
## [59812] "way"               "found"             "creature"         
## [59815] "called"            "gollum"            "therefore"        
## [59818] "went"              "first"             "meet"             
## [59821] "hear"              "tale"              "deadly"           
## [59824] "perils"            "gone"              "alone"            
## [59827] "dared"             "guess"             "little"           
## [59830] "need"              "tell"              "said"             
## [59833] "aragorn"           "man"               "must"             
## [59836] "needs"             "walk"              "sight"            
## [59839] "black"             "gate"              "tread"            
## [59842] "deadly"            "flowers"           "morgul"           
## [59845] "vale"              "perils"            "will"             
## [59848] "despaired"         "last"              "began"            
## [59851] "homeward"          "journey"           "fortune"          
## [59854] "came"              "suddenly"          "sought"           
## [59857] "marks"             "soft"              "feet"             
## [59860] "beside"            "muddy"             "pool"             
## [59863] "now"               "trail"             "fresh"            
## [59866] "swift"             "led"               "mordor"           
## [59869] "away"              "along"             "skirts"           
## [59872] "dead"              "marshes"           "followed"         
## [59875] "lurking"           "stagnant"          "mere"             
## [59878] "peering"           "water"             "dark"             
## [59881] "eve"               "fell"              "caught"           
## [59884] "gollum"            "covered"           "green"            
## [59887] "slime"             "will"              "never"            
## [59890] "love"              "fear"              "bit"              
## [59893] "gentle"            "nothing"           "ever"             
## [59896] "get"               "mouth"             "marks"            
## [59899] "teeth"             "deemed"            "worst"            
## [59902] "part"              "journey"           "road"             
## [59905] "back"              "watching"          "day"              
## [59908] "night"             "making"            "walk"             
## [59911] "halter"            "neck"              "gagged"           
## [59914] "tamed"             "lack"              "drink"            
## [59917] "food"              "driving"           "ever"             
## [59920] "towards"           "mirkwood"          "brought"          
## [59923] "last"              "gave"              "elves"            
## [59926] "agreed"            "done"              "glad"             
## [59929] "rid"               "company"           "stank"            
## [59932] "part"              "hope"              "never"            
## [59935] "look"              "upon"              "gandalf"          
## [59938] "came"              "endured"           "long"             
## [59941] "speech"            "yes"               "long"             
## [59944] "weary"             "said"              "gandalf"          
## [59947] "without"           "profit"            "one"              
## [59950] "thing"             "tale"              "told"             
## [59953] "loss"              "agreed"            "bilbo"            
## [59956] "now"               "told"              "openly"           
## [59959] "first"             "time"              "mattered"         
## [59962] "little"            "since"             "already"          
## [59965] "guessed"           "learned"           "first"            
## [59968] "gollums"           "ring"              "came"             
## [59971] "great"             "river"             "nigh"             
## [59974] "gladden"           "fields"            "learned"          
## [59977] "also"              "possessed"         "long"             
## [59980] "many"              "lives"             "small"            
## [59983] "kind"              "power"             "ring"             
## [59986] "lengthened"        "years"             "far"              
## [59989] "beyond"            "span"              "power"            
## [59992] "great"             "rings"             "wield"            
## [59995] "proof"             "enough"            "galdor"           
## [59998] "test"              "spoke"             "upon"             
## [60001] "ring"              "seen"              "held"             
## [60004] "aloft"             "round"             "unadorned"        
## [60007] "letters"           "isildur"           "reported"         
## [60010] "may"               "still"             "read"             
## [60013] "one"               "strength"          "will"             
## [60016] "set"               "golden"            "thing"            
## [60019] "fire"              "done"              "read"             
## [60022] "ash"               "nazg"              "durbatulûk"       
## [60025] "ash"               "nazg"              "gimbatul"         
## [60028] "ash"               "nazg"              "thrakatulûk"      
## [60031] "agh"               "burzum"            "ishi"             
## [60034] "krimpatul"         "change"            "wizards"          
## [60037] "voice"             "astounding"        "suddenly"         
## [60040] "became"            "menacing"          "powerful"         
## [60043] "harsh"             "stone"             "shadow"           
## [60046] "seemed"            "pass"              "high"             
## [60049] "sun"               "porch"             "moment"           
## [60052] "grew"              "dark"              "trembled"         
## [60055] "elves"             "stopped"           "ears"             
## [60058] "never"             "voice"             "dared"            
## [60061] "utter"             "words"             "tongue"           
## [60064] "imladris"          "gandalf"           "grey"             
## [60067] "said"              "elrond"            "shadow"           
## [60070] "passed"            "company"           "breathed"         
## [60073] "let"               "us"                "hope"             
## [60076] "none"              "will"              "ever"             
## [60079] "speak"             "answered"          "gandalf"          
## [60082] "nonetheless"       "ask"               "pardon"           
## [60085] "master"            "elrond"            "tongue"           
## [60088] "soon"              "heard"             "every"            
## [60091] "corner"            "west"              "let"              
## [60094] "put"               "doubt"             "aside"            
## [60097] "thing"             "indeed"            "wise"             
## [60100] "declared"          "treasure"          "enemy"            
## [60103] "fraught"           "malice"            "lies"             
## [60106] "great"             "part"              "strength"         
## [60109] "old"               "black"             "years"            
## [60112] "come"              "words"             "smiths"           
## [60115] "eregion"           "heard"             "knew"             
## [60118] "betrayed"          "one"               "ring"             
## [60121] "rule"              "one"               "ring"             
## [60124] "find"              "one"               "ring"             
## [60127] "bring"             "darkness"          "bind"             
## [60130] "know"              "also"              "friends"          
## [60133] "learned"           "yet"               "gollum"           
## [60136] "loth"              "speak"             "tale"             
## [60139] "unclear"           "beyond"            "doubt"            
## [60142] "went"              "mordor"            "knew"             
## [60145] "forced"            "thus"              "enemy"            
## [60148] "knows"             "now"               "one"              
## [60151] "found"             "long"              "shire"            
## [60154] "since"             "servants"          "pursued"          
## [60157] "almost"            "door"              "soon"             
## [60160] "will"              "know"              "already"          
## [60163] "may"               "know"              "even"             
## [60166] "speak"             "sat"               "silent"           
## [60169] "length"            "boromir"           "spoke"            
## [60172] "small"             "thing"             "say"              
## [60175] "gollum"            "small"             "great"            
## [60178] "mischief"          "became"            "doom"             
## [60181] "put"               "prison"            "worse"            
## [60184] "said"              "aragorn"           "suffered"         
## [60187] "much"              "doubt"             "tormented"        
## [60190] "fear"              "sauron"            "lies"             
## [60193] "black"             "heart"             "still"            
## [60196] "one"               "glad"              "safely"           
## [60199] "kept"              "watchful"          "elves"            
## [60202] "mirkwood"          "malice"            "great"            
## [60205] "gives"             "strength"          "hardly"           
## [60208] "believed"          "one"               "lean"             
## [60211] "withered"          "work"              "much"             
## [60214] "mischief"          "still"             "free"             
## [60217] "doubt"             "allowed"           "leave"            
## [60220] "mordor"            "evil"              "errand"           
## [60223] "alas"              "alas"              "cried"            
## [60226] "legolas"           "fair"              "elvish"           
## [60229] "face"              "great"             "distress"         
## [60232] "tidings"           "sent"              "bring"            
## [60235] "must"              "now"               "told"             
## [60238] "good"              "learned"           "evil"             
## [60241] "may"               "seem"              "company"          
## [60244] "sméagol"           "now"               "called"           
## [60247] "gollum"            "escaped"           "escaped"          
## [60250] "cried"             "aragorn"           "ill"              
## [60253] "news"              "indeed"            "shall"            
## [60256] "rue"               "bitterly"          "fear"             
## [60259] "came"              "folk"              "thranduil"        
## [60262] "fail"              "trust"             "lack"             
## [60265] "watchfulness"      "said"              "legolas"          
## [60268] "perhaps"           "kindliness"        "fear"             
## [60271] "prisoner"          "aid"               "others"           
## [60274] "known"             "doings"            "wish"             
## [60277] "guarded"           "creature"          "day"              
## [60280] "night"             "gandalfs"          "bidding"          
## [60283] "much"              "though"            "wearied"          
## [60286] "task"              "gandalf"           "bade"             
## [60289] "us"                "hope"              "still"            
## [60292] "cure"              "heart"             "keep"             
## [60295] "ever"              "dungeons"          "earth"            
## [60298] "fall"              "back"              "old"              
## [60301] "black"             "thoughts"          "less"             
## [60304] "tender"            "said"              "glóin"            
## [60307] "flash"             "eyes"              "old"              
## [60310] "memories"          "stirred"           "imprisonment"     
## [60313] "deep"              "places"            "elven"            
## [60316] "kings"             "halls"             "now"              
## [60319] "come"              "said"              "gandalf"          
## [60322] "pray"              "interrupt"         "good"             
## [60325] "glóin"             "regrettable"       "misunderstanding" 
## [60328] "long"              "set"               "right"            
## [60331] "grievances"        "stand"             "elves"            
## [60334] "dwarves"           "brought"           "may"              
## [60337] "well"              "abandon"           "council"          
## [60340] "glóin"             "rose"              "bowed"            
## [60343] "legolas"           "continued"         "days"             
## [60346] "fair"              "weather"           "led"              
## [60349] "gollum"            "woods"             "high"             
## [60352] "tree"              "standing"          "alone"            
## [60355] "far"               "others"            "liked"            
## [60358] "climb"             "often"             "let"              
## [60361] "mount"             "highest"           "branches"         
## [60364] "felt"              "free"              "wind"             
## [60367] "set"               "guard"             "trees"            
## [60370] "foot"              "one"               "day"              
## [60373] "refused"           "come"              "guards"           
## [60376] "mind"              "climb"             "learned"          
## [60379] "trick"             "clinging"          "boughs"           
## [60382] "feet"              "well"              "hands"            
## [60385] "sat"               "tree"              "far"              
## [60388] "night"             "night"             "summer"           
## [60391] "yet"               "moonless"          "starless"         
## [60394] "orcs"              "came"              "us"               
## [60397] "unawares"          "drove"             "time"             
## [60400] "many"              "fierce"            "came"             
## [60403] "mountains"         "unused"            "woods"            
## [60406] "battle"            "found"             "gollum"           
## [60409] "gone"              "guards"            "slain"            
## [60412] "taken"             "seemed"            "plain"            
## [60415] "us"                "attack"            "made"             
## [60418] "rescue"            "knew"              "beforehand"       
## [60421] "contrived"         "guess"             "gollum"           
## [60424] "cunning"           "spies"             "enemy"            
## [60427] "many"              "dark"              "things"           
## [60430] "driven"            "year"              "dragons"          
## [60433] "fall"              "returned"          "greater"          
## [60436] "numbers"           "mirkwood"          "evil"             
## [60439] "place"             "save"              "realm"            
## [60442] "maintained"        "failed"            "recapture"        
## [60445] "gollum"            "came"              "trail"            
## [60448] "among"             "many"              "orcs"             
## [60451] "plunged"           "deep"              "forest"           
## [60454] "going"             "south"             "ere"              
## [60457] "long"              "escaped"           "skill"            
## [60460] "dared"             "continue"          "hunt"             
## [60463] "drawing"           "nigh"              "dol"              
## [60466] "guldur"            "still"             "evil"             
## [60469] "place"             "go"                "way"              
## [60472] "well"              "well"              "gone"             
## [60475] "said"              "gandalf"           "time"             
## [60478] "seek"              "must"              "will"             
## [60481] "may"               "play"              "part"             
## [60484] "yet"               "neither"           "sauron"           
## [60487] "foreseen"          "now"               "will"             
## [60490] "answer"            "galdors"           "questions"        
## [60493] "saruman"           "counsels"          "us"               
## [60496] "need"              "tale"              "must"             
## [60499] "tell"              "full"              "elrond"           
## [60502] "heard"             "yet"               "brief"            
## [60505] "will"              "bear"              "must"             
## [60508] "resolve"           "last"              "chapter"          
## [60511] "tale"              "ring"              "far"              
## [60514] "yet"               "gone"              "end"              
## [60517] "june"              "shire"             "cloud"            
## [60520] "anxiety"           "mind"              "rode"             
## [60523] "southern"          "borders"           "little"           
## [60526] "land"              "foreboding"        "danger"           
## [60529] "still"             "hidden"            "drawing"          
## [60532] "near"              "messages"          "reached"          
## [60535] "telling"           "war"               "defeat"           
## [60538] "gondor"            "heard"             "black"            
## [60541] "shadow"            "chill"             "smote"            
## [60544] "heart"             "found"             "nothing"          
## [60547] "save"              "fugitives"         "south"            
## [60550] "yet"               "seemed"            "sat"              
## [60553] "fear"              "speak"             "turned"           
## [60556] "east"              "north"             "journeyed"        
## [60559] "along"             "greenway"          "far"              
## [60562] "bree"              "came"              "upon"             
## [60565] "traveller"         "sitting"           "bank"             
## [60568] "beside"            "road"              "grazing"          
## [60571] "horse"             "beside"            "radagast"         
## [60574] "brown"             "one"               "time"             
## [60577] "dwelt"             "rhosgobel"         "near"             
## [60580] "borders"           "mirkwood"          "one"              
## [60583] "order"             "seen"              "many"             
## [60586] "year"              "gandalf"           "cried"            
## [60589] "seeking"           "stranger"          "parts"            
## [60592] "knew"              "might"             "found"            
## [60595] "wild"              "region"            "uncouth"          
## [60598] "name"              "shire"             "information"      
## [60601] "correct"           "said"              "put"              
## [60604] "way"               "meet"              "inhabitants"      
## [60607] "near"              "borders"           "shire"            
## [60610] "now"               "want"              "must"             
## [60613] "pressing"          "never"             "traveller"        
## [60616] "unless"            "driven"            "great"            
## [60619] "need"              "urgent"            "errand"           
## [60622] "said"              "news"              "evil"             
## [60625] "looked"            "hedges"            "might"            
## [60628] "ears"              "nazgûl"            "whispered"        
## [60631] "nine"              "abroad"            "crossed"          
## [60634] "river"             "secretly"          "moving"           
## [60637] "westward"          "taken"             "guise"            
## [60640] "riders"            "black"             "knew"             
## [60643] "dreaded"           "without"           "knowing"          
## [60646] "enemy"             "must"              "great"            
## [60649] "need"              "purpose"           "said"             
## [60652] "radagast"          "makes"             "look"             
## [60655] "distant"           "desolate"          "parts"            
## [60658] "guess"             "mean"              "said"             
## [60661] "told"              "wherever"          "go"               
## [60664] "riders"            "ask"               "news"             
## [60667] "land"              "called"            "shire"            
## [60670] "shire"             "said"              "heart"            
## [60673] "sank"              "even"              "wise"             
## [60676] "might"             "fear"              "withstand"        
## [60679] "nine"              "gathered"          "together"         
## [60682] "fell"              "chieftain"         "great"            
## [60685] "king"              "sorcerer"          "old"              
## [60688] "now"               "wields"            "deadly"           
## [60691] "fear"              "told"              "sent"             
## [60694] "asked"             "saruman"           "white"            
## [60697] "answered"          "radagast"          "told"             
## [60700] "say"               "feel"              "need"             
## [60703] "will"              "help"              "must"             
## [60706] "seek"              "aid"               "will"             
## [60709] "late"              "message"           "brought"          
## [60712] "hope"              "saruman"           "white"            
## [60715] "greatest"          "order"             "radagast"         
## [60718] "course"            "worthy"            "wizard"           
## [60721] "master"            "shapes"            "changes"          
## [60724] "hue"               "much"              "lore"             
## [60727] "herbs"             "beasts"            "birds"            
## [60730] "especially"        "friends"           "saruman"          
## [60733] "long"              "studied"           "arts"             
## [60736] "enemy"             "thus"              "often"            
## [60739] "able"              "forestall"         "devices"          
## [60742] "saruman"           "drove"             "dol"              
## [60745] "guldur"            "might"             "found"            
## [60748] "weapons"           "drive"             "back"             
## [60751] "nine"              "will"              "go"               
## [60754] "saruman"           "said"              "must"             
## [60757] "go"                "now"               "said"             
## [60760] "radagast"          "wasted"            "time"             
## [60763] "looking"           "days"              "running"          
## [60766] "short"             "told"              "find"             
## [60769] "midsummer"         "now"               "even"             
## [60772] "set"               "spot"              "will"             
## [60775] "hardly"            "reach"             "nine"             
## [60778] "discover"          "land"              "seek"             
## [60781] "shall"             "turn"              "back"             
## [60784] "mounted"           "ridden"            "straight"         
## [60787] "stay"              "moment"            "said"             
## [60790] "shall"             "need"              "help"             
## [60793] "help"              "things"            "will"             
## [60796] "give"              "send"              "messages"         
## [60799] "beasts"            "birds"             "friends"          
## [60802] "tell"              "bring"             "news"             
## [60805] "anything"          "bears"             "matter"           
## [60808] "saruman"           "gandalf"           "let"              
## [60811] "messages"          "sent"              "orthanc"          
## [60814] "will"              "said"              "rode"             
## [60817] "nine"              "follow"            "ridden"           
## [60820] "far"               "already"           "day"              
## [60823] "weary"             "horse"             "needed"           
## [60826] "consider"          "matters"           "stayed"           
## [60829] "night"             "bree"              "decided"          
## [60832] "time"              "return"            "shire"            
## [60835] "never"             "make"              "greater"          
## [60838] "mistake"           "however"           "wrote"            
## [60841] "message"           "frodo"             "trusted"          
## [60844] "friend"            "innkeeper"         "send"             
## [60847] "rode"              "away"              "dawn"             
## [60850] "came"              "long"              "last"             
## [60853] "dwelling"          "saruman"           "far"              
## [60856] "south"             "isengard"          "end"              
## [60859] "misty"             "mountains"         "far"              
## [60862] "gap"               "rohan"             "boromir"          
## [60865] "will"              "tell"              "great"            
## [60868] "open"              "vale"              "lies"             
## [60871] "misty"             "mountains"         "northmost"        
## [60874] "foothills"         "ered"              "nimrais"          
## [60877] "white"             "mountains"         "home"             
## [60880] "isengard"          "circle"            "sheer"            
## [60883] "rocks"             "enclose"           "valley"           
## [60886] "wall"              "midst"             "valley"           
## [60889] "tower"             "stone"             "called"           
## [60892] "orthanc"           "made"              "saruman"          
## [60895] "men"               "númenor"           "long"             
## [60898] "ago"               "tall"              "many"             
## [60901] "secrets"           "yet"               "looks"            
## [60904] "work"              "craft"             "reached"          
## [60907] "save"              "passing"           "circle"           
## [60910] "isengard"          "circle"            "one"              
## [60913] "gate"              "late"              "one"              
## [60916] "evening"           "came"              "gate"             
## [60919] "like"              "great"             "arch"             
## [60922] "wall"              "rock"              "strongly"         
## [60925] "guarded"           "keepers"           "gate"             
## [60928] "watch"             "told"              "saruman"          
## [60931] "awaited"           "rode"              "arch"             
## [60934] "gate"              "closed"            "silently"         
## [60937] "behind"            "suddenly"          "afraid"           
## [60940] "though"            "knew"              "reason"           
## [60943] "rode"              "foot"              "orthanc"          
## [60946] "came"              "stair"             "saruman"          
## [60949] "met"               "led"               "high"             
## [60952] "chamber"           "wore"              "ring"             
## [60955] "finger"            "come"              "gandalf"          
## [60958] "said"              "gravely"           "eyes"             
## [60961] "seemed"            "white"             "light"            
## [60964] "cold"              "laughter"          "heart"            
## [60967] "yes"               "come"              "said"             
## [60970] "come"              "aid"               "saruman"          
## [60973] "white"             "title"             "seemed"           
## [60976] "anger"             "indeed"            "gandalf"          
## [60979] "grey"              "scoffed"           "aid"              
## [60982] "seldom"            "heard"             "gandalf"          
## [60985] "grey"              "sought"            "aid"              
## [60988] "one"               "cunning"           "wise"             
## [60991] "wandering"         "lands"             "concerning"       
## [60994] "every"             "business"          "whether"          
## [60997] "belongs"           "looked"            "wondered"         
## [61000] "deceived"          "said"              "things"           
## [61003] "now"               "moving"            "will"             
## [61006] "require"           "union"             "strength"         
## [61009] "may"               "said"              "thought"          
## [61012] "late"              "coming"            "long"             
## [61015] "wonder"            "concealed"         "head"             
## [61018] "council"           "matter"            "greatest"         
## [61021] "import"            "brings"            "now"              
## [61024] "lurking"           "place"             "shire"            
## [61027] "nine"              "come"              "forth"            
## [61030] "answered"          "crossed"           "river"            
## [61033] "radagast"          "said"              "radagast"         
## [61036] "brown"             "laughed"           "saruman"          
## [61039] "longer"            "concealed"         "scorn"            
## [61042] "radagast"          "bird"              "tamer"            
## [61045] "radagast"          "simple"            "radagast"         
## [61048] "fool"              "yet"               "just"             
## [61051] "wit"               "play"              "part"             
## [61054] "set"               "come"              "purpose"          
## [61057] "message"           "will"              "stay"             
## [61060] "gandalf"           "grey"              "rest"             
## [61063] "journeys"          "saruman"           "wise"             
## [61066] "saruman"           "ring"              "maker"            
## [61069] "saruman"           "many"              "colours"          
## [61072] "looked"            "saw"               "robes"            
## [61075] "seemed"            "white"             "woven"            
## [61078] "colours"           "moved"             "shimmered"        
## [61081] "changed"           "hue"               "eye"              
## [61084] "bewildered"        "liked"             "white"            
## [61087] "better"            "said"              "white"            
## [61090] "sneered"           "serves"            "beginning"        
## [61093] "white"             "cloth"             "may"              
## [61096] "dyed"              "white"             "page"             
## [61099] "can"               "overwritten"       "white"            
## [61102] "light"             "can"               "broken"           
## [61105] "case"              "longer"            "white"            
## [61108] "said"              "breaks"            "thing"            
## [61111] "find"              "left"              "path"             
## [61114] "wisdom"            "need"              "speak"            
## [61117] "one"               "fools"             "take"             
## [61120] "friends"           "said"              "brought"          
## [61123] "hither"            "instructed"        "give"             
## [61126] "choice"            "drew"              "began"            
## [61129] "declaim"           "making"            "speech"           
## [61132] "long"              "rehearsed"         "elder"            
## [61135] "days"              "gone"              "middle"           
## [61138] "days"              "passing"           "younger"          
## [61141] "days"              "beginning"         "time"             
## [61144] "elves"             "time"              "hand"             
## [61147] "world"             "men"               "must"             
## [61150] "rule"              "must"              "power"            
## [61153] "power"             "order"             "things"           
## [61156] "will"              "good"              "wise"             
## [61159] "can"               "see"               "listen"           
## [61162] "gandalf"           "old"               "friend"           
## [61165] "helper"            "said"              "coming"           
## [61168] "near"              "speaking"          "now"              
## [61171] "softer"            "voice"             "said"             
## [61174] "may"               "will"              "join"             
## [61177] "new"               "power"             "rising"           
## [61180] "old"               "allies"            "policies"         
## [61183] "will"              "avail"             "us"               
## [61186] "hope"              "left"              "elves"            
## [61189] "dying"             "númenor"           "one"              
## [61192] "choice"            "us"                "may"              
## [61195] "join"              "power"             "wise"             
## [61198] "gandalf"           "hope"              "way"              
## [61201] "victory"           "hand"              "will"             
## [61204] "rich"              "reward"            "aided"            
## [61207] "power"             "grows"             "proved"           
## [61210] "friends"           "will"              "also"             
## [61213] "grow"              "wise"              "may"              
## [61216] "patience"          "come"              "last"             
## [61219] "direct"            "courses"           "control"          
## [61222] "can"               "bide"              "time"             
## [61225] "can"               "keep"              "thoughts"         
## [61228] "hearts"            "deploring"         "maybe"            
## [61231] "evils"             "done"              "way"              
## [61234] "approving"         "high"              "ultimate"         
## [61237] "purpose"           "knowledge"         "rule"             
## [61240] "order"             "things"            "far"              
## [61243] "striven"           "vain"              "accomplish"       
## [61246] "hindered"          "rather"            "helped"           
## [61249] "weak"              "idle"              "friends"          
## [61252] "need"              "real"              "change"           
## [61255] "designs"           "means"             "saruman"          
## [61258] "said"              "heard"             "speeches"         
## [61261] "kind"              "mouths"            "emissaries"       
## [61264] "sent"              "mordor"            "deceive"          
## [61267] "ignorant"          "think"             "brought"          
## [61270] "far"               "weary"             "ears"             
## [61273] "looked"            "sidelong"          "paused"           
## [61276] "considering"       "well"              "see"              
## [61279] "wise"              "course"            "commend"          
## [61282] "said"              "yet"               "better"           
## [61285] "way"               "can"               "contrived"        
## [61288] "came"              "laid"              "long"             
## [61291] "hand"              "arm"               "gandalf"          
## [61294] "whispered"         "ruling"            "ring"             
## [61297] "command"           "power"             "pass"             
## [61300] "us"                "truth"             "brought"          
## [61303] "many"              "eyes"              "service"          
## [61306] "believe"           "know"              "precious"         
## [61309] "thing"             "now"               "lies"             
## [61312] "nine"              "ask"               "shire"            
## [61315] "business"          "said"              "lust"             
## [61318] "conceal"           "shone"             "suddenly"         
## [61321] "eyes"              "saruman"           "said"             
## [61324] "standing"          "away"              "one"              
## [61327] "hand"              "time"              "can"              
## [61330] "wield"             "one"               "know"             
## [61333] "well"              "trouble"           "say"              
## [61336] "give"              "nay"               "give"             
## [61339] "even"              "news"              "now"              
## [61342] "learn"             "mind"              "head"             
## [61345] "council"           "unmasked"          "last"             
## [61348] "well"              "choices"           "seems"            
## [61351] "submit"            "sauron"            "will"             
## [61354] "take"              "neither"           "others"           
## [61357] "offer"             "cold"              "now"              
## [61360] "perilous"          "yes"               "said"             
## [61363] "expect"            "show"              "wisdom"           
## [61366] "even"              "behalf"            "gave"             
## [61369] "chance"            "aiding"            "willingly"        
## [61372] "saving"            "much"              "trouble"          
## [61375] "pain"              "third"             "choice"           
## [61378] "stay"              "end"               "end"              
## [61381] "reveal"            "one"               "may"              
## [61384] "found"             "may"               "find"             
## [61387] "means"             "persuade"          "found"            
## [61390] "despite"           "ruler"             "time"             
## [61393] "turn"              "lighter"           "matters"          
## [61396] "devise"            "say"               "fitting"          
## [61399] "reward"            "hindrance"         "insolence"        
## [61402] "gandalf"           "grey"              "may"              
## [61405] "prove"             "one"               "lighter"          
## [61408] "matters"           "said"              "laughed"          
## [61411] "words"             "empty"             "knew"             
## [61414] "took"              "set"               "alone"            
## [61417] "pinnacle"          "orthanc"           "place"            
## [61420] "saruman"           "accustomed"        "watch"            
## [61423] "stars"             "descent"           "save"             
## [61426] "narrow"            "stair"             "many"             
## [61429] "thousand"          "steps"             "valley"           
## [61432] "seems"             "far"               "away"             
## [61435] "looked"            "saw"               "whereas"          
## [61438] "green"             "fair"              "now"              
## [61441] "filled"            "pits"              "forges"           
## [61444] "wolves"            "orcs"              "housed"           
## [61447] "isengard"          "saruman"           "mustering"        
## [61450] "great"             "force"             "account"          
## [61453] "rivalry"           "sauron"            "service"          
## [61456] "yet"               "works"             "dark"             
## [61459] "smoke"             "hung"              "wrapped"          
## [61462] "sides"             "orthanc"           "stood"            
## [61465] "alone"             "island"            "clouds"           
## [61468] "chance"            "escape"            "days"             
## [61471] "bitter"            "pierced"           "cold"             
## [61474] "little"            "room"              "pace"             
## [61477] "fro"               "brooding"          "coming"           
## [61480] "riders"            "north"             "nine"             
## [61483] "indeed"            "arisen"            "felt"             
## [61486] "assured"           "apart"             "words"            
## [61489] "saruman"           "might"             "lies"             
## [61492] "long"              "ere"               "came"             
## [61495] "isengard"          "heard"             "tidings"          
## [61498] "way"               "mistaken"          "fear"             
## [61501] "ever"              "heart"             "friends"          
## [61504] "shire"             "still"             "hope"             
## [61507] "hoped"             "frodo"             "set"              
## [61510] "forth"             "letter"            "urged"            
## [61513] "reached"           "rivendell"         "deadly"           
## [61516] "pursuit"           "began"             "fear"             
## [61519] "hope"              "proved"            "ill"              
## [61522] "founded"           "hope"              "founded"          
## [61525] "fat"               "man"               "bree"             
## [61528] "fear"              "founded"           "cunning"          
## [61531] "sauron"            "fat"               "men"              
## [61534] "sell"              "ale"               "many"             
## [61537] "calls"             "answer"            "power"            
## [61540] "sauron"            "still"             "less"             
## [61543] "fear"              "makes"             "circle"           
## [61546] "isengard"          "trapped"           "alone"            
## [61549] "easy"              "think"             "hunters"          
## [61552] "fled"              "fallen"            "falter"           
## [61555] "shire"             "far"               "away"             
## [61558] "saw"               "cried"             "frodo"            
## [61561] "walking"           "backwards"         "forwards"         
## [61564] "moon"              "shone"             "hair"             
## [61567] "gandalf"           "paused"            "astonished"       
## [61570] "looked"            "dream"             "said"             
## [61573] "frodo"             "suddenly"          "came"             
## [61576] "back"              "quite"             "forgotten"        
## [61579] "came"              "time"              "ago"              
## [61582] "left"              "shire"             "think"            
## [61585] "late"              "coming"            "said"             
## [61588] "gandalf"           "will"              "see"              
## [61591] "evil"              "plight"            "know"             
## [61594] "will"              "agree"             "seldom"           
## [61597] "need"              "bear"              "misfortune"       
## [61600] "well"              "gandalf"           "grey"             
## [61603] "caught"            "like"              "fly"              
## [61606] "spiders"           "treacherous"       "web"              
## [61609] "yet"               "even"              "subtle"           
## [61612] "spiders"           "may"               "leave"            
## [61615] "weak"              "thread"            "first"            
## [61618] "feared"            "saruman"           "doubt"            
## [61621] "intended"          "radagast"          "also"             
## [61624] "fallen"            "yet"               "caught"           
## [61627] "hint"              "anything"          "wrong"            
## [61630] "voice"             "eye"               "meeting"          
## [61633] "never"             "gone"              "isengard"         
## [61636] "gone"              "warily"            "saruman"          
## [61639] "guessed"           "concealed"         "mind"             
## [61642] "deceived"          "messenger"         "useless"          
## [61645] "case"              "try"               "win"              
## [61648] "honest"            "radagast"          "treachery"        
## [61651] "sought"            "good"              "faith"            
## [61654] "persuaded"         "undoing"           "sarumans"         
## [61657] "plot"              "radagast"          "knew"             
## [61660] "reason"            "asked"             "rode"             
## [61663] "away"              "towards"           "mirkwood"         
## [61666] "many"              "friends"           "old"              
## [61669] "eagles"            "mountains"         "went"             
## [61672] "far"               "wide"              "saw"              
## [61675] "many"              "things"            "gathering"        
## [61678] "wolves"            "mustering"         "orcs"             
## [61681] "nine"              "riders"            "going"            
## [61684] "hither"            "thither"           "lands"            
## [61687] "heard"             "news"              "escape"           
## [61690] "gollum"            "sent"              "messenger"        
## [61693] "bring"             "tidings"           "summer"           
## [61696] "waned"             "came"              "night"            
## [61699] "moon"              "gwaihir"           "windlord"         
## [61702] "swiftest"          "great"             "eagles"           
## [61705] "came"              "unlooked"          "orthanc"          
## [61708] "found"             "standing"          "pinnacle"         
## [61711] "spoke"             "bore"              "away"             
## [61714] "saruman"           "aware"             "far"              
## [61717] "isengard"          "ere"               "wolves"           
## [61720] "orcs"              "issued"            "gate"             
## [61723] "pursue"            "far"               "can"              
## [61726] "bear"              "said"              "gwaihir"          
## [61729] "many"              "leagues"           "said"             
## [61732] "ends"              "earth"             "sent"             
## [61735] "bear"              "tidings"           "burdens"          
## [61738] "must"              "steed"             "land"             
## [61741] "said"              "steed"             "surpassingly"     
## [61744] "swift"             "never"             "need"             
## [61747] "haste"             "will"              "bear"             
## [61750] "edoras"            "lord"              "rohan"            
## [61753] "sits"              "halls"             "said"             
## [61756] "far"               "glad"              "riddermark"       
## [61759] "rohan"             "rohirrim"          "horse"            
## [61762] "lords"             "dwell"             "horses"           
## [61765] "like"              "bred"              "great"            
## [61768] "vale"              "misty"             "mountains"        
## [61771] "white"             "men"               "rohan"            
## [61774] "still"             "trusted"           "think"            
## [61777] "said"              "gwaihir"           "treason"          
## [61780] "saruman"           "shaken"            "faith"            
## [61783] "pay"               "tribute"           "horses"           
## [61786] "answered"          "send"              "many"             
## [61789] "yearly"            "mordor"            "said"             
## [61792] "yet"               "yoke"              "saruman"          
## [61795] "become"            "evil"              "say"              
## [61798] "doom"              "long"              "delayed"          
## [61801] "set"               "land"              "rohan"            
## [61804] "ere"               "dawn"              "now"              
## [61807] "lengthened"        "tale"              "long"             
## [61810] "rest"              "must"              "brief"            
## [61813] "rohan"             "found"             "evil"             
## [61816] "already"           "work"              "lies"             
## [61819] "saruman"           "king"              "land"             
## [61822] "listen"            "warnings"          "bade"             
## [61825] "take"              "horse"             "gone"             
## [61828] "chose"             "one"               "much"             
## [61831] "liking"            "little"            "took"             
## [61834] "best"              "horse"             "land"             
## [61837] "never"             "seen"              "like"             
## [61840] "must"              "noble"             "beast"            
## [61843] "indeed"            "said"              "aragorn"          
## [61846] "grieves"           "many"              "tidings"          
## [61849] "might"             "seem"              "worse"            
## [61852] "learn"             "sauron"            "levies"           
## [61855] "tribute"           "last"              "land"             
## [61858] "now"               "will"              "swear"            
## [61861] "said"              "boromir"           "lie"              
## [61864] "comes"             "enemy"             "know"             
## [61867] "men"               "rohan"             "true"             
## [61870] "valiant"           "allies"            "dwelling"         
## [61873] "still"             "lands"             "gave"             
## [61876] "long"              "ago"               "shadow"           
## [61879] "mordor"            "lies"              "distant"          
## [61882] "lands"             "answered"          "aragorn"          
## [61885] "saruman"           "fallen"            "rohan"            
## [61888] "beset"             "knows"             "will"             
## [61891] "find"              "ever"              "return"           
## [61894] "least"             "said"              "boromir"          
## [61897] "will"              "buy"               "lives"            
## [61900] "horses"            "love"              "horses"           
## [61903] "next"              "kin"               "without"          
## [61906] "reason"            "horses"            "riddermark"       
## [61909] "come"              "fields"            "north"            
## [61912] "far"               "shadow"            "race"             
## [61915] "masters"           "descended"         "free"             
## [61918] "days"              "old"               "true"             
## [61921] "indeed"            "said"              "gandalf"          
## [61924] "one"               "among"             "might"            
## [61927] "foaled"            "morning"           "world"            
## [61930] "horses"            "nine"              "vie"              
## [61933] "tireless"          "swift"             "flowing"          
## [61936] "wind"              "shadowfax"         "called"           
## [61939] "day"               "coat"              "glistens"         
## [61942] "like"              "silver"            "night"            
## [61945] "like"              "shade"             "passes"           
## [61948] "unseen"            "light"             "footfall"         
## [61951] "never"             "man"               "mounted"          
## [61954] "took"              "tamed"             "speedily"         
## [61957] "bore"              "reached"           "shire"            
## [61960] "frodo"             "barrow"            "downs"            
## [61963] "though"            "set"               "rohan"            
## [61966] "set"               "hobbiton"          "fear"             
## [61969] "grew"              "rode"              "ever"             
## [61972] "came"              "north"             "heard"            
## [61975] "tidings"           "riders"            "though"           
## [61978] "gained"            "day"               "day"              
## [61981] "ever"              "divided"           "forces"           
## [61984] "learned"           "remained"          "eastern"          
## [61987] "borders"           "far"               "greenway"         
## [61990] "invaded"           "shire"             "south"            
## [61993] "came"              "hobbiton"          "frodo"            
## [61996] "gone"              "words"             "old"              
## [61999] "gamgee"            "many"              "words"            
## [62002] "point"             "much"              "say"              
## [62005] "shortcomings"      "new"               "owners"           
## [62008] "bag"               "end"               "cant"             
## [62011] "abide"             "changes"           "said"             
## [62014] "time"              "life"              "least"            
## [62017] "changes"           "worst"             "changes"          
## [62020] "worst"             "repeated"          "many"             
## [62023] "times"             "worst"             "bad"              
## [62026] "word"              "said"              "hope"             
## [62029] "live"              "see"               "amidst"           
## [62032] "talk"              "gathered"          "last"             
## [62035] "frodo"             "left"              "hobbiton"         
## [62038] "less"              "week"              "black"            
## [62041] "horseman"          "come"              "hill"             
## [62044] "evening"           "rode"              "fear"             
## [62047] "came"              "buckland"          "found"            
## [62050] "uproar"            "busy"              "hive"             
## [62053] "ants"              "stirred"           "stick"            
## [62056] "came"              "house"             "crickhollow"      
## [62059] "broken"            "open"              "empty"            
## [62062] "threshold"         "lay"               "cloak"            
## [62065] "frodos"            "hope"              "left"             
## [62068] "wait"              "gather"            "news"             
## [62071] "might"             "comforted"         "rode"             
## [62074] "trail"             "riders"            "hard"             
## [62077] "follow"            "went"              "many"             
## [62080] "ways"              "loss"              "seemed"           
## [62083] "one"               "two"               "ridden"           
## [62086] "towards"           "bree"              "way"              
## [62089] "went"              "thought"           "words"            
## [62092] "might"             "said"              "innkeeper"        
## [62095] "butterbur"         "call"              "thought"          
## [62098] "delay"             "fault"             "will"             
## [62101] "melt"              "butter"            "will"             
## [62104] "roast"             "old"               "fool"             
## [62107] "slow"              "fire"              "expected"         
## [62110] "less"              "saw"               "face"             
## [62113] "fell"              "flat"              "began"            
## [62116] "melt"              "spot"              "cried"            
## [62119] "frodo"             "alarm"             "really"           
## [62122] "kind"              "us"                "gandalf"          
## [62125] "laughed"           "dont"              "afraid"           
## [62128] "said"              "bite"              "barked"           
## [62131] "little"            "overjoyed"         "news"             
## [62134] "got"               "stopped"           "quaking"          
## [62137] "embraced"          "old"               "fellow"           
## [62140] "happened"          "guess"             "learned"          
## [62143] "bree"              "night"             "gone"             
## [62146] "morning"           "strider"           "strider"          
## [62149] "cried"             "shouting"          "joy"              
## [62152] "yes"               "sir"               "afraid"           
## [62155] "sir"               "said"              "butterbur"        
## [62158] "mistaking"         "got"               "spite"            
## [62161] "took"              "behaved"           "queer"            
## [62164] "time"              "wilful"            "might"            
## [62167] "say"               "ass"               "fool"             
## [62170] "thrice"            "worthy"            "beloved"          
## [62173] "barliman"          "said"              "best"             
## [62176] "news"              "since"             "midsummer"        
## [62179] "worth"             "gold"              "piece"            
## [62182] "least"             "may"               "beer"             
## [62185] "laid"              "enchantment"       "surpassing"       
## [62188] "excellence"        "seven"             "years"            
## [62191] "said"              "now"               "can"              
## [62194] "take"              "nights"            "rest"             
## [62197] "first"             "since"             "forgotten"        
## [62200] "stayed"            "night"             "wondering"        
## [62203] "much"              "become"            "riders"           
## [62206] "two"               "yet"               "news"             
## [62209] "bree"              "seemed"            "night"            
## [62212] "heard"             "five"              "least"            
## [62215] "came"              "west"              "threw"            
## [62218] "gates"             "passed"            "bree"             
## [62221] "like"              "howling"           "wind"             
## [62224] "bree"              "folk"              "still"            
## [62227] "shivering"         "expecting"         "end"              
## [62230] "world"             "got"               "dawn"             
## [62233] "went"              "know"              "seems"            
## [62236] "clear"             "happened"          "captain"          
## [62239] "remained"          "secret"            "away"             
## [62242] "south"             "bree"              "two"              
## [62245] "rode"              "ahead"             "village"          
## [62248] "four"              "invaded"           "shire"            
## [62251] "foiled"            "bree"              "crickhollow"      
## [62254] "returned"          "captain"           "tidings"          
## [62257] "left"              "road"              "unguarded"        
## [62260] "except"            "spies"             "captain"          
## [62263] "sent"              "eastward"          "straight"         
## [62266] "across"            "country"           "rest"             
## [62269] "rode"              "along"             "road"             
## [62272] "great"             "wrath"             "galloped"         
## [62275] "weathertop"        "like"              "gale"             
## [62278] "reached"           "sundown"           "second"           
## [62281] "day"               "bree"              "drew"             
## [62284] "away"              "felt"              "coming"           
## [62287] "anger"             "dared"             "face"             
## [62290] "sun"               "sky"               "closed"           
## [62293] "round"             "night"             "besieged"         
## [62296] "hill"              "top"               "old"              
## [62299] "ring"              "amon"              "sûl"              
## [62302] "hard"              "put"               "indeed"           
## [62305] "light"             "flame"             "seen"             
## [62308] "weathertop"        "since"             "war"              
## [62311] "beacons"           "old"               "sunrise"          
## [62314] "escaped"           "fled"              "towards"          
## [62317] "north"             "hope"              "impossible"       
## [62320] "find"              "frodo"             "wilderness"       
## [62323] "folly"             "try"               "nine"             
## [62326] "heels"             "trust"             "aragorn"          
## [62329] "hoped"             "draw"              "yet"              
## [62332] "reach"             "rivendell"         "ahead"            
## [62335] "send"              "help"              "four"             
## [62338] "riders"            "indeed"            "follow"           
## [62341] "turned"            "back"              "made"             
## [62344] "ford"              "seems"             "helped"           
## [62347] "little"            "five"              "nine"             
## [62350] "camp"              "attacked"          "reached"          
## [62353] "last"              "long"              "hard"             
## [62356] "road"              "hoarwell"          "ettenmoors"       
## [62359] "north"             "took"              "nearly"           
## [62362] "fourteen"          "days"              "weathertop"       
## [62365] "ride"              "among"             "rocks"            
## [62368] "troll"             "fells"             "shadowfax"        
## [62371] "departed"          "sent"              "back"             
## [62374] "master"            "great"             "friendship"       
## [62377] "grown"             "us"                "need"             
## [62380] "will"              "come"              "call"             
## [62383] "came"              "rivendell"         "three"            
## [62386] "days"              "ring"              "news"             
## [62389] "peril"             "already"           "brought"          
## [62392] "proved"            "well"              "indeed"           
## [62395] "frodo"             "end"               "account"          
## [62398] "may"               "elrond"            "others"           
## [62401] "forgive"           "length"            "thing"            
## [62404] "happened"          "gandalf"           "broke"            
## [62407] "tryst"             "come"              "promised"         
## [62410] "account"           "ring"              "bearer"           
## [62413] "strange"           "event"             "required"         
## [62416] "think"             "well"              "tale"             
## [62419] "now"               "told"              "first"            
## [62422] "last"              "ring"              "yet"              
## [62425] "come"              "nearer"            "purpose"          
## [62428] "shall"             "silence"           "last"             
## [62431] "elrond"            "spoke"             "grievous"         
## [62434] "news"              "concerning"        "saruman"          
## [62437] "said"              "trusted"           "deep"             
## [62440] "counsels"          "perilous"          "study"            
## [62443] "deeply"            "arts"              "enemy"            
## [62446] "good"              "ill"               "falls"            
## [62449] "betrayals"         "alas"              "happened"         
## [62452] "tales"             "heard"             "day"              
## [62455] "tale"              "frodo"             "strange"          
## [62458] "known"             "hobbits"           "save"             
## [62461] "bilbo"             "seems"             "perhaps"          
## [62464] "alone"             "singular"          "thought"          
## [62467] "world"             "changed"           "much"             
## [62470] "since"             "last"              "westward"         
## [62473] "roads"             "barrow"            "wights"           
## [62476] "know"              "many"              "names"            
## [62479] "old"               "forest"            "many"             
## [62482] "tales"             "told"              "now"              
## [62485] "remains"           "outlier"           "northern"         
## [62488] "march"             "time"              "squirrel"         
## [62491] "go"                "tree"              "tree"             
## [62494] "now"               "shire"             "dunland"          
## [62497] "west"              "isengard"          "lands"            
## [62500] "journeyed"         "many"              "things"           
## [62503] "wild"              "strange"           "knew"             
## [62506] "forgotten"         "bombadil"          "indeed"           
## [62509] "still"             "walked"            "woods"            
## [62512] "hills"             "long"              "ago"              
## [62515] "even"              "older"             "old"              
## [62518] "name"              "iarwain"           "ben"              
## [62521] "adar"              "called"            "oldest"           
## [62524] "fatherless"        "many"              "another"          
## [62527] "name"              "since"             "given"            
## [62530] "folk"              "forn"              "dwarves"          
## [62533] "orald"             "northern"          "men"              
## [62536] "names"             "beside"            "strange"          
## [62539] "creature"          "maybe"             "summoned"         
## [62542] "council"           "come"              "said"             
## [62545] "gandalf"           "still"             "send"             
## [62548] "messages"          "obtain"            "help"             
## [62551] "asked"             "erestor"           "seems"            
## [62554] "power"             "even"              "ring"             
## [62557] "put"               "said"              "gandalf"          
## [62560] "say"               "rather"            "ring"             
## [62563] "power"             "master"            "alter"            
## [62566] "ring"              "break"             "power"            
## [62569] "others"            "now"               "withdrawn"        
## [62572] "little"            "land"              "within"           
## [62575] "bounds"            "set"               "though"           
## [62578] "none"              "can"               "see"              
## [62581] "waiting"           "perhaps"           "change"           
## [62584] "days"              "will"              "step"             
## [62587] "beyond"            "within"            "bounds"           
## [62590] "nothing"           "seems"             "dismay"           
## [62593] "said"              "erestor"           "take"             
## [62596] "ring"              "keep"              "ever"             
## [62599] "harmless"          "said"              "gandalf"          
## [62602] "willingly"         "might"             "free"             
## [62605] "folk"              "world"             "begged"           
## [62608] "understand"        "need"              "given"            
## [62611] "ring"              "soon"              "forget"           
## [62614] "likely"            "throw"             "away"             
## [62617] "things"            "hold"              "mind"             
## [62620] "unsafe"            "guardian"          "alone"            
## [62623] "answer"            "enough"            "case"             
## [62626] "said"              "glorfindel"        "send"             
## [62629] "ring"              "postpone"          "day"              
## [62632] "evil"              "far"               "away"             
## [62635] "now"               "take"              "back"             
## [62638] "unguessed"         "unmarked"          "spy"              
## [62641] "even"              "soon"              "late"             
## [62644] "lord"              "rings"             "learn"            
## [62647] "hiding"            "place"             "bend"             
## [62650] "power"             "towards"           "power"            
## [62653] "defied"            "bombadil"          "alone"            
## [62656] "think"             "think"             "end"              
## [62659] "else"              "conquered"         "bombadil"         
## [62662] "will"              "fall"              "last"             
## [62665] "first"             "night"             "will"             
## [62668] "come"              "know"              "little"           
## [62671] "iarwain"           "save"              "name"             
## [62674] "said"              "galdor"            "glorfindel"       
## [62677] "think"             "right"             "power"            
## [62680] "defy"              "enemy"             "unless"           
## [62683] "power"             "earth"             "yet"              
## [62686] "see"               "sauron"            "can"              
## [62689] "torture"           "destroy"           "hills"            
## [62692] "power"             "still"             "remains"          
## [62695] "lies"              "us"                "imladris"         
## [62698] "cirdan"            "havens"            "lórien"           
## [62701] "strength"          "strength"          "withstand"        
## [62704] "enemy"             "coming"            "sauron"           
## [62707] "last"              "else"              "overthrown"       
## [62710] "strength"          "said"              "elrond"           
## [62713] "neither"           "ring"              "kept"             
## [62716] "ever"              "strength"          "said"             
## [62719] "glorfindel"        "two"               "things"           
## [62722] "remain"            "us"                "attempt"          
## [62725] "send"              "sea"               "destroy"          
## [62728] "gandalf"           "revealed"          "us"               
## [62731] "destroy"           "craft"             "possess"          
## [62734] "said"              "elrond"            "dwell"            
## [62737] "beyond"            "sea"               "receive"          
## [62740] "good"              "ill"               "belongs"          
## [62743] "middle"            "earth"             "us"               
## [62746] "still"             "dwell"             "deal"             
## [62749] "said"              "glorfindel"        "let"              
## [62752] "us"                "cast"              "deeps"            
## [62755] "make"              "lies"              "saruman"          
## [62758] "come"              "true"              "clear"            
## [62761] "now"               "even"              "council"          
## [62764] "feet"              "already"           "crooked"          
## [62767] "path"              "knew"              "ring"             
## [62770] "lost"              "ever"              "wished"           
## [62773] "us"                "think"             "began"            
## [62776] "lust"              "yet"               "oft"              
## [62779] "lies"              "truth"             "hidden"           
## [62782] "sea"               "safe"              "safe"             
## [62785] "ever"              "said"              "gandalf"          
## [62788] "many"              "things"            "deep"             
## [62791] "waters"            "seas"              "lands"            
## [62794] "may"               "change"            "part"             
## [62797] "take"              "thought"           "season"           
## [62800] "lives"             "men"               "passing"          
## [62803] "age"               "world"             "seek"             
## [62806] "final"             "end"               "menace"           
## [62809] "even"              "hope"              "make"             
## [62812] "one"               "shall"             "find"             
## [62815] "roads"             "sea"               "said"             
## [62818] "galdor"            "return"            "iarwain"          
## [62821] "thought"           "dangerous"         "flight"           
## [62824] ""                  ""                  "now"              
## [62827] "fraught"           "gravest"           "peril"            
## [62830] "heart"             "tells"             "sauron"           
## [62833] "will"              "expect"            "us"               
## [62836] "take"              "western"           "way"              
## [62839] "learns"            "befallen"          "soon"             
## [62842] "will"              "nine"              "unhorsed"         
## [62845] "indeed"            "respite"           "ere"              
## [62848] "find"              "new"               "steeds"           
## [62851] "swifter"           "waning"            "might"            
## [62854] "gondor"            "stands"            "now"              
## [62857] "march"             "power"             "along"            
## [62860] "coasts"            "north"             "comes"            
## [62863] "assailing"         "white"             "towers"           
## [62866] "havens"            "hereafter"         "elves"            
## [62869] "may"               "escape"            "lengthening"      
## [62872] "shadows"           "middle"            "earth"            
## [62875] "long"              "yet"               "will"             
## [62878] "march"             "delayed"           "said"             
## [62881] "boromir"           "gondor"            "wanes"            
## [62884] "say"               "gondor"            "stands"           
## [62887] "even"              "end"               "strength"         
## [62890] "still"             "strong"            "yet"              
## [62893] "vigilance"         "can"               "longer"           
## [62896] "keep"              "back"              "nine"             
## [62899] "said"              "galdor"            "roads"            
## [62902] "may"               "find"              "gondor"           
## [62905] "guard"             "said"              "erestor"          
## [62908] "two"               "courses"           "glorfindel"       
## [62911] "already"           "declared"          "hide"             
## [62914] "ring"              "ever"              "unmake"           
## [62917] "beyond"            "power"             "will"             
## [62920] "read"              "riddle"            "us"               
## [62923] "none"              "can"               "said"             
## [62926] "elrond"            "gravely"           "least"            
## [62929] "none"              "can"               "foretell"         
## [62932] "will"              "come"              "pass"             
## [62935] "take"              "road"              "seems"            
## [62938] "now"               "clear"             "road"             
## [62941] "must"              "take"              "westward"         
## [62944] "road"              "seems"             "easiest"          
## [62947] "therefore"         "must"              "shunned"          
## [62950] "will"              "watched"           "often"            
## [62953] "elves"             "fled"              "way"              
## [62956] "now"               "last"              "must"             
## [62959] "take"              "hard"              "road"             
## [62962] "road"              "unforeseen"        "lies"             
## [62965] "hope"              "hope"              "walk"             
## [62968] "peril"             "mordor"            "must"             
## [62971] "send"              "ring"              "fire"             
## [62974] "silence"           "fell"              "frodo"            
## [62977] "even"              "fair"              "house"            
## [62980] "looking"           "upon"              "sunlit"           
## [62983] "valley"            "filled"            "noise"            
## [62986] "clear"             "waters"            "felt"             
## [62989] "dead"              "darkness"          "heart"            
## [62992] "boromir"           "stirred"           "frodo"            
## [62995] "looked"            "fingering"         "great"            
## [62998] "horn"              "frowning"          "length"           
## [63001] "spoke"             "understand"        "said"             
## [63004] "saruman"           "traitor"           "glimpse"          
## [63007] "wisdom"            "speak"             "ever"             
## [63010] "hiding"            "destroying"        "think"            
## [63013] "great"             "ring"              "come"             
## [63016] "hands"             "serve"             "us"               
## [63019] "hour"              "need"              "wielding"         
## [63022] "free"              "lords"             "free"             
## [63025] "may"               "surely"            "defeat"           
## [63028] "enemy"             "fears"             "deem"             
## [63031] "men"               "gondor"            "valiant"          
## [63034] "will"              "never"             "submit"           
## [63037] "may"               "beaten"            "valour"           
## [63040] "needs"             "first"             "strength"         
## [63043] "weapon"            "let"               "ring"             
## [63046] "weapon"            "power"             "say"              
## [63049] "take"              "go"                "forth"            
## [63052] "victory"           "alas"              "said"             
## [63055] "elrond"            "use"               "ruling"           
## [63058] "ring"              "now"               "know"             
## [63061] "well"              "belongs"           "sauron"           
## [63064] "made"              "alone"             "altogether"       
## [63067] "evil"              "strength"          "boromir"          
## [63070] "great"             "anyone"            "wield"            
## [63073] "will"              "save"              "already"          
## [63076] "great"             "power"             "holds"            
## [63079] "even"              "deadlier"          "peril"            
## [63082] "desire"            "corrupts"          "heart"            
## [63085] "consider"          "saruman"           "wise"             
## [63088] "ring"              "overthrow"         "lord"             
## [63091] "mordor"            "using"             "arts"             
## [63094] "set"               "saurons"           "throne"           
## [63097] "yet"               "another"           "dark"             
## [63100] "lord"              "appear"            "another"          
## [63103] "reason"            "ring"              "destroyed"        
## [63106] "long"              "world"             "will"             
## [63109] "danger"            "even"              "wise"             
## [63112] "nothing"           "evil"              "beginning"        
## [63115] "even"              "sauron"            "fear"             
## [63118] "take"              "ring"              "hide"             
## [63121] "will"              "take"              "ring"             
## [63124] "wield"             "said"              "gandalf"          
## [63127] "boromir"           "looked"            "doubtfully"       
## [63130] "bowed"             "head"              "said"             
## [63133] "gondor"            "must"              "trust"            
## [63136] "weapons"           "least"             "wise"             
## [63139] "ones"              "guard"             "ring"             
## [63142] "will"              "fight"             "mayhap"           
## [63145] "sword"             "broken"            "may"              
## [63148] "still"             "stem"              "tide"             
## [63151] "hand"              "wields"            "inherited"        
## [63154] "heirloom"          "sinews"            "kings"            
## [63157] "men"               "can"               "tell"             
## [63160] "said"              "aragorn"           "will"             
## [63163] "put"               "test"              "one"              
## [63166] "day"               "may"               "day"              
## [63169] "long"              "delayed"           "said"             
## [63172] "boromir"           "though"            "ask"              
## [63175] "aid"               "need"              "comfort"          
## [63178] "us"                "know"              "others"           
## [63181] "fought"            "also"              "means"            
## [63184] "comforted"         "said"              "elrond"           
## [63187] "powers"            "realms"            "know"             
## [63190] "hidden"            "anduin"            "great"            
## [63193] "flows"             "past"              "many"             
## [63196] "shores"            "ere"               "comes"            
## [63199] "argonath"          "gates"             "gondor"           
## [63202] "still"             "might"             "well"             
## [63205] "said"              "glóin"             "dwarf"            
## [63208] "strengths"         "joined"            "powers"           
## [63211] "used"              "league"            "rings"            
## [63214] "may"               "less"              "treacherous"      
## [63217] "might"             "used"              "need"             
## [63220] "seven"             "lost"              "us"               
## [63223] "balin"             "found"             "ring"             
## [63226] "thrór"             "last"              "naught"           
## [63229] "heard"             "since"             "thrór"            
## [63232] "perished"          "moria"             "indeed"           
## [63235] "may"               "now"               "reveal"           
## [63238] "partly"            "hope"              "find"             
## [63241] "ring"              "balin"             "went"             
## [63244] "away"              "balin"             "will"             
## [63247] "find"              "ring"              "moria"            
## [63250] "said"              "gandalf"           "thrór"            
## [63253] "gave"              "thráin"            "son"              
## [63256] "thráin"            "thorin"            "taken"            
## [63259] "torment"           "thráin"            "dungeons"         
## [63262] "dol"               "guldur"            "came"             
## [63265] "late"              "ah"                "alas"             
## [63268] "cried"             "glóin"             "will"             
## [63271] "day"               "come"              "revenge"          
## [63274] "still"             "three"             "three"            
## [63277] "rings"             "elves"             "mighty"           
## [63280] "rings"             "said"              "elf"              
## [63283] "lords"             "keep"              "yet"              
## [63286] "made"              "dark"              "lord"             
## [63289] "long"              "ago"               "idle"             
## [63292] "see"               "elf"               "lords"            
## [63295] "will"              "say"               "elves"            
## [63298] "returned"          "answer"            "hear"             
## [63301] "glóin"             "said"              "elrond"           
## [63304] "three"             "made"              "sauron"           
## [63307] "ever"              "touch"             "permitted"        
## [63310] "speak"             "much"              "hour"             
## [63313] "doubt"             "may"               "now"              
## [63316] "say"               "idle"              "made"             
## [63319] "weapons"           "war"               "conquest"         
## [63322] "power"             "made"              "desire"           
## [63325] "strength"          "domination"        "hoarded"          
## [63328] "wealth"            "understanding"     "making"           
## [63331] "healing"           "preserve"          "things"           
## [63334] "unstained"         "things"            "elves"            
## [63337] "middle"            "earth"             "measure"          
## [63340] "gained"            "though"            "sorrow"           
## [63343] "wrought"           "wield"             "three"            
## [63346] "will"              "turn"              "undoing"          
## [63349] "minds"             "hearts"            "will"             
## [63352] "become"            "revealed"          "sauron"           
## [63355] "regains"           "one"               "better"           
## [63358] "three"             "never"             "purpose"          
## [63361] "happen"            "ruling"            "ring"             
## [63364] "destroyed"         "counsel"           "asked"            
## [63367] "glóin"             "know"              "certain"          
## [63370] "answered"          "elrond"            "sadly"            
## [63373] "hope"              "three"             "rings"            
## [63376] "sauron"            "never"             "touched"          
## [63379] "become"            "free"              "rulers"           
## [63382] "might"             "heal"              "hurts"            
## [63385] "world"             "wrought"           "maybe"            
## [63388] "one"               "gone"              "three"            
## [63391] "will"              "fail"              "many"             
## [63394] "fair"              "things"            "will"             
## [63397] "fade"              "forgotten"         "belief"           
## [63400] "yet"               "elves"             "willing"          
## [63403] "endure"            "chance"            "said"             
## [63406] "glorfindel"        "power"             "sauron"           
## [63409] "may"               "broken"            "fear"             
## [63412] "dominion"          "taken"             "away"             
## [63415] "ever"              "thus"              "return"           
## [63418] "destroying"        "ring"              "said"             
## [63421] "erestor"           "yet"               "come"             
## [63424] "nearer"            "strength"          "finding"          
## [63427] "fire"              "made"              "path"             
## [63430] "despair"           "folly"             "say"              
## [63433] "long"              "wisdom"            "elrond"           
## [63436] "forbid"            "despair"           "folly"            
## [63439] "said"              "gandalf"           "despair"          
## [63442] "despair"           "see"               "end"              
## [63445] "beyond"            "doubt"             "wisdom"           
## [63448] "recognize"         "necessity"         "courses"          
## [63451] "weighed"           "though"            "folly"            
## [63454] "may"               "appear"            "cling"            
## [63457] "false"             "hope"              "well"             
## [63460] "let"               "folly"             "cloak"            
## [63463] "veil"              "eyes"              "enemy"            
## [63466] "wise"              "weighs"            "things"           
## [63469] "nicety"            "scales"            "malice"           
## [63472] "measure"           "knows"             "desire"           
## [63475] "desire"            "power"             "judges"           
## [63478] "hearts"            "heart"             "thought"          
## [63481] "will"              "enter"             "will"             
## [63484] "refuse"            "ring"              "may"              
## [63487] "seek"              "destroy"           "seek"             
## [63490] "shall"             "put"               "reckoning"        
## [63493] "least"             "said"              "elrond"           
## [63496] "road"              "must"              "trod"             
## [63499] "will"              "hard"              "neither"          
## [63502] "strength"          "wisdom"            "will"             
## [63505] "carry"             "us"                "far"              
## [63508] "upon"              "quest"             "may"              
## [63511] "attempted"         "weak"              "much"             
## [63514] "hope"              "strong"            "yet"              
## [63517] "oft"               "course"            "deeds"            
## [63520] "move"              "wheels"            "world"            
## [63523] "small"             "hands"             "must"             
## [63526] "eyes"              "great"             "elsewhere"        
## [63529] "well"              "well"              "master"           
## [63532] "elrond"            "said"              "bilbo"            
## [63535] "suddenly"          "say"               "plain"            
## [63538] "enough"            "pointing"          "bilbo"            
## [63541] "silly"             "hobbit"            "started"          
## [63544] "affair"            "bilbo"             "better"           
## [63547] "finish"            "comfortable"       "getting"          
## [63550] "book"              "want"              "know"             
## [63553] "just"              "writing"           "ending"           
## [63556] "thought"           "putting"           "lived"            
## [63559] "happily"           "ever"              "afterwards"       
## [63562] "end"               "days"              "good"             
## [63565] "ending"            "none"              "worse"            
## [63568] "used"              "now"               "shall"            
## [63571] "alter"             "look"              "like"             
## [63574] "coming"            "true"              "anyway"           
## [63577] "will"              "evidently"         "several"          
## [63580] "chapters"          "live"              "write"            
## [63583] "frightful"         "nuisance"          "start"            
## [63586] "boromir"           "looked"            "surprise"         
## [63589] "bilbo"             "laughter"          "died"             
## [63592] "lips"              "saw"               "others"           
## [63595] "regarded"          "old"               "hobbit"           
## [63598] "grave"             "respect"           "glóin"            
## [63601] "smiled"            "smile"             "came"             
## [63604] "old"               "memories"          "course"           
## [63607] "dear"              "bilbo"             "said"             
## [63610] "gandalf"           "really"            "started"          
## [63613] "affair"            "might"             "expected"         
## [63616] "finish"            "know"              "well"             
## [63619] "enough"            "now"               "starting"         
## [63622] "great"             "claim"             "small"            
## [63625] "part"              "played"            "great"            
## [63628] "deeds"             "hero"              "need"             
## [63631] "bow"               "though"            "word"             
## [63634] "meant"             "doubt"             "jest"             
## [63637] "making"            "valiant"           "offer"            
## [63640] "one"               "beyond"            "strength"         
## [63643] "bilbo"             "take"              "thing"            
## [63646] "back"              "passed"            "need"             
## [63649] "advice"            "longer"            "say"              
## [63652] "part"              "ended"             "unless"           
## [63655] "recorder"          "finish"            "book"             
## [63658] "leave"             "ending"            "unaltered"        
## [63661] "still"             "hope"              "get"              
## [63664] "ready"             "write"             "sequel"           
## [63667] "come"              "back"              "bilbo"            
## [63670] "laughed"           "never"             "known"            
## [63673] "give"              "pleasant"          "advice"           
## [63676] "said"              "unpleasant"        "advice"           
## [63679] "good"              "wonder"            "advice"           
## [63682] "bad"               "still"             "dont"             
## [63685] "suppose"           "strength"          "luck"             
## [63688] "left"              "deal"              "ring"             
## [63691] "grown"             "tell"              "mean"             
## [63694] "messengers"        "sent"              "ring"             
## [63697] "exactly"           "seems"             "council"          
## [63700] "decide"            "decide"            "elves"            
## [63703] "may"               "thrive"            "speech"           
## [63706] "alone"             "dwarves"           "endure"           
## [63709] "great"             "weariness"         "old"              
## [63712] "hobbit"            "miss"              "meal"             
## [63715] "noon"              "cant"              "think"            
## [63718] "names"             "now"               "put"              
## [63721] "till"              "dinner"            "one"              
## [63724] "answered"          "noon"              "bell"             
## [63727] "rang"              "still"             "one"              
## [63730] "spoke"             "frodo"             "glanced"          
## [63733] "faces"             "turned"            "council"          
## [63736] "sat"               "downcast"          "eyes"             
## [63739] "deep"              "thought"           "great"            
## [63742] "dread"             "fell"              "awaiting"         
## [63745] "pronouncement"     "doom"              "long"             
## [63748] "foreseen"          "vainly"            "hoped"            
## [63751] "might"             "never"             "spoken"           
## [63754] "overwhelming"      "longing"           "rest"             
## [63757] "remain"            "peace"             "bilbos"           
## [63760] "side"              "rivendell"         "filled"           
## [63763] "heart"             "last"              "effort"           
## [63766] "spoke"             "wondered"          "hear"             
## [63769] "words"             "will"              "using"            
## [63772] "small"             "voice"             "will"             
## [63775] "take"              "ring"              "said"             
## [63778] "though"            "know"              "way"              
## [63781] "elrond"            "raised"            "eyes"             
## [63784] "looked"            "frodo"             "felt"             
## [63787] "heart"             "pierced"           "sudden"           
## [63790] "keenness"          "glance"            "understand"       
## [63793] "aright"            "heard"             "said"             
## [63796] "think"             "task"              "appointed"        
## [63799] "frodo"             "find"              "way"              
## [63802] "one"               "will"              "hour"             
## [63805] "shire"             "folk"              "arise"            
## [63808] "quiet"             "fields"            "shake"            
## [63811] "towers"            "counsels"          "great"            
## [63814] "wise"              "foreseen"          "wise"             
## [63817] "expect"            "know"              "hour"             
## [63820] "struck"            "heavy"             "burden"           
## [63823] "heavy"             "none"              "lay"              
## [63826] "another"           "lay"               "take"             
## [63829] "freely"            "will"              "say"              
## [63832] "choice"            "right"             "though"           
## [63835] "mighty"            "elf"               "friends"          
## [63838] "old"               "hador"             "húrin"            
## [63841] "túrin"             "beren"             "assembled"        
## [63844] "together"          "seat"              "among"            
## [63847] "wont"              "send"              "alone"            
## [63850] "surely"            "master"            "cried"            
## [63853] "sam"               "unable"            "contain"          
## [63856] "longer"            "jumping"           "corner"           
## [63859] "quietly"           "sitting"           "floor"            
## [63862] "indeed"            "said"              "elrond"           
## [63865] "turning"           "towards"           "smile"            
## [63868] "least"             "shall"             "go"               
## [63871] "hardly"            "possible"          "separate"         
## [63874] "even"              "summoned"          "secret"           
## [63877] "council"           "sam"               "sat"              
## [63880] "blushing"          "muttering"         "nice"             
## [63883] "pickle"            "landed"            "mr"               
## [63886] "frodo"             "said"              "shaking"          
## [63889] "head"              "chapter"           "ring"             
## [63892] "goes"              "south"             "later"            
## [63895] "day"               "hobbits"           "held"             
## [63898] "meeting"           "bilbos"            "room"             
## [63901] "merry"             "pippin"            "indignant"        
## [63904] "heard"             "sam"               "crept"            
## [63907] "council"           "chosen"            "frodos"           
## [63910] "companion"         "unfair"            "said"             
## [63913] "pippin"            "instead"           "throwing"         
## [63916] "clapping"          "chains"            "elrond"           
## [63919] "goes"              "rewards"           "cheek"            
## [63922] "rewards"           "said"              "frodo"            
## [63925] "cant"              "imagine"           "severe"           
## [63928] "punishment"        "thinking"          "saying"           
## [63931] "condemned"         "go"                "hopeless"         
## [63934] "journey"           "reward"            "yesterday"        
## [63937] "dreamed"           "task"              "done"             
## [63940] "rest"              "long"              "perhaps"          
## [63943] "good"              "dont"              "wonder"           
## [63946] "said"              "merry"             "wish"             
## [63949] "envying"           "sam"               "go"               
## [63952] "will"              "punishment"        "us"               
## [63955] "left"              "behind"            "even"             
## [63958] "rivendell"         "come"              "long"             
## [63961] "way"               "stiff"             "times"            
## [63964] "want"              "go"                "thats"            
## [63967] "meant"             "said"              "pippin"           
## [63970] "hobbits"           "stick"             "together"         
## [63973] "will"              "shall"             "go"               
## [63976] "unless"            "chain"             "must"             
## [63979] "someone"           "intelligence"      "party"            
## [63982] "certainly"         "will"              "chosen"           
## [63985] "peregrin"          "took"              "said"             
## [63988] "gandalf"           "looking"           "window"           
## [63991] "near"              "ground"            "worrying"         
## [63994] "unnecessarily"     "nothing"           "decided"          
## [63997] "yet"               "nothing"           "decided"          
## [64000] "cried"             "pippin"            "shut"             
## [64003] "hours"             "talking"           "said"             
## [64006] "bilbo"             "deal"              "talk"             
## [64009] "everyone"          "eye"               "opener"           
## [64012] "even"              "old"               "gandalf"          
## [64015] "think"             "legolass"          "bit"              
## [64018] "news"              "gollum"            "caught"           
## [64021] "even"              "hop"               "though"           
## [64024] "passed"            "wrong"             "said"             
## [64027] "gandalf"           "inattentive"       "already"          
## [64030] "heard"             "gwaihir"           "want"             
## [64033] "know"              "real"              "eye"              
## [64036] "openers"           "put"               "frodo"            
## [64039] "one"               "surprised"         "well"             
## [64042] "anyway"            "said"              "bilbo"            
## [64045] "nothing"           "decided"           "beyond"           
## [64048] "choosing"          "poor"              "frodo"            
## [64051] "sam"               "afraid"            "time"             
## [64054] "might"             "come"              "let"              
## [64057] "ask"               "elrond"            "will"             
## [64060] "send"              "fair"              "number"           
## [64063] "reports"           "come"              "started"          
## [64066] "yet"               "gandalf"           "yes"              
## [64069] "said"              "wizard"            "scouts"           
## [64072] "sent"              "already"           "will"             
## [64075] "go"                "tomorrow"          "elrond"           
## [64078] "sending"           "elves"             "will"             
## [64081] "get"               "touch"             "rangers"          
## [64084] "maybe"             "thranduils"        "folk"             
## [64087] "mirkwood"          "aragorn"           "gone"             
## [64090] "elronds"           "sons"              "shall"            
## [64093] "scour"             "lands"             "round"            
## [64096] "many"              "long"              "leagues"          
## [64099] "move"              "made"              "cheer"            
## [64102] "frodo"             "will"              "probably"         
## [64105] "make"              "quite"             "long"             
## [64108] "stay"              "ah"                "said"             
## [64111] "sam"               "gloomily"          "well"             
## [64114] "just"              "wait"              "long"             
## [64117] "enough"            "winter"            "come"             
## [64120] "cant"              "helped"            "said"             
## [64123] "bilbo"             "fault"             "partly"           
## [64126] "frodo"             "lad"               "insisting"        
## [64129] "waiting"           "birthday"          "funny"            
## [64132] "way"               "honouring"         "cant"             
## [64135] "help"              "thinking"          "day"              
## [64138] "chosen"            "letting"           "bs"               
## [64141] "bag"               "end"               "cant"             
## [64144] "wait"              "now"               "fill"             
## [64147] "spring"            "cant"              "go"               
## [64150] "till"              "reports"           "come"             
## [64153] "back"              "winter"            "first"            
## [64156] "begins"            "bite"              "stones"           
## [64159] "crack"             "frosty"            "night"            
## [64162] "pools"             "black"             "trees"            
## [64165] "bare"              "tis"               "evil"             
## [64168] "wild"              "fare"              "afraid"           
## [64171] "will"              "just"              "luck"             
## [64174] "afraid"            "will"              "said"             
## [64177] "gandalf"           "cant"              "start"            
## [64180] "found"             "riders"            "thought"          
## [64183] "destroyed"         "flood"             "said"             
## [64186] "merry"             "destroy"           "ringwraiths"      
## [64189] "like"              "said"              "gandalf"          
## [64192] "power"             "master"            "stand"            
## [64195] "fall"              "hope"              "unhorsed"         
## [64198] "unmasked"          "made"              "less"             
## [64201] "dangerous"         "must"              "find"             
## [64204] "certain"           "meantime"          "try"              
## [64207] "forget"            "troubles"          "frodo"            
## [64210] "know"              "can"               "anything"         
## [64213] "help"              "will"              "whisper"          
## [64216] "ears"              "someone"           "said"             
## [64219] "intelligence"      "needed"            "party"            
## [64222] "right"             "think"             "shall"            
## [64225] "come"              "great"             "frodos"           
## [64228] "delight"           "announcement"      "gandalf"          
## [64231] "left"              "window"            "sill"             
## [64234] "sitting"           "took"              "hat"              
## [64237] "bowed"             "said"              "think"            
## [64240] "shall"             "come"              "count"            
## [64243] "anything"          "yet"               "matter"           
## [64246] "elrond"            "will"              "much"             
## [64249] "say"               "friend"            "strider"          
## [64252] "reminds"           "want"              "see"              
## [64255] "elrond"            "must"              "long"             
## [64258] "think"             "shall"             "said"             
## [64261] "frodo"             "bilbo"             "gandalf"          
## [64264] "gone"              "oh"                "dont"             
## [64267] "know"              "cant"              "count"            
## [64270] "days"              "rivendell"         "said"             
## [64273] "bilbo"             "quite"             "long"             
## [64276] "think"             "can"               "many"             
## [64279] "good"              "talk"              "helping"          
## [64282] "book"              "making"            "start"            
## [64285] "next"              "thought"           "ending"           
## [64288] "yes"               "several"           "dark"             
## [64291] "unpleasant"        "said"              "frodo"            
## [64294] "oh"                "wont"              "said"             
## [64297] "bilbo"             "books"             "good"             
## [64300] "endings"           "settled"           "lived"            
## [64303] "together"          "happily"           "ever"             
## [64306] "will"              "well"              "ever"             
## [64309] "comes"             "said"              "frodo"            
## [64312] "ah"                "said"              "sam"              
## [64315] "will"              "live"              "thats"            
## [64318] "often"             "wonder"            "hobbits"          
## [64321] "continued"         "talk"              "think"            
## [64324] "past"              "journey"           "perils"           
## [64327] "lay"               "ahead"             "virtue"           
## [64330] "land"              "rivendell"         "soon"             
## [64333] "fear"              "anxiety"           "lifted"           
## [64336] "minds"             "future"            "good"             
## [64339] "ill"               "forgotten"         "ceased"           
## [64342] "power"             "present"           "health"           
## [64345] "hope"              "grew"              "strong"           
## [64348] "content"           "good"              "day"              
## [64351] "came"              "taking"            "pleasure"         
## [64354] "every"             "meal"              "every"            
## [64357] "word"              "song"              "days"             
## [64360] "slipped"           "away"              "morning"          
## [64363] "dawned"            "bright"            "fair"             
## [64366] "evening"           "followed"          "cool"             
## [64369] "clear"             "autumn"            "waning"           
## [64372] "fast"              "slowly"            "golden"           
## [64375] "light"             "faded"             "pale"             
## [64378] "silver"            "lingering"         "leaves"           
## [64381] "fell"              "naked"             "trees"            
## [64384] "wind"              "began"             "blow"             
## [64387] "chill"             "misty"             "mountains"        
## [64390] "east"              "hunters"           "moon"             
## [64393] "waxed"             "round"             "night"            
## [64396] "sky"               "put"               "flight"           
## [64399] "lesser"            "stars"             "low"              
## [64402] "south"             "one"               "star"             
## [64405] "shone"             "red"               "every"            
## [64408] "night"             "moon"              "waned"            
## [64411] "shone"             "brighter"          "brighter"         
## [64414] "frodo"             "see"               "window"           
## [64417] "deep"              "heavens"           "burning"          
## [64420] "like"              "watchful"          "eye"              
## [64423] "glared"            "trees"             "brink"            
## [64426] "valley"            "hobbits"           "nearly"           
## [64429] "two"               "months"            "house"            
## [64432] "elrond"            "november"          "gone"             
## [64435] "last"              "shreds"            "autumn"           
## [64438] "december"          "passing"           "scouts"           
## [64441] "began"             "return"            "gone"             
## [64444] "north"             "beyond"            "springs"          
## [64447] "hoarwell"          "ettenmoors"        "others"           
## [64450] "gone"              "west"              "help"             
## [64453] "aragorn"           "rangers"           "searched"         
## [64456] "lands"             "far"               "greyflood"        
## [64459] "far"               "tharbad"           "old"              
## [64462] "north"             "road"              "crossed"          
## [64465] "river"             "ruined"            "town"             
## [64468] "many"              "gone"              "east"             
## [64471] "south"             "crossed"           "mountains"        
## [64474] "entered"           "mirkwood"          "others"           
## [64477] "climbed"           "pass"              "source"           
## [64480] "gladden"           "river"             "come"             
## [64483] "wilderland"        "gladden"           "fields"           
## [64486] "length"            "reached"           "old"              
## [64489] "home"              "radagast"          "rhosgobel"        
## [64492] "radagast"          "returned"          "high"             
## [64495] "pass"              "called"            "dimrill"          
## [64498] "stair"             "sons"              "elrond"           
## [64501] "elladan"           "elrohir"           "last"             
## [64504] "return"            "made"              "great"            
## [64507] "journey"           "passing"           "silverlode"       
## [64510] "strange"           "country"           "errand"           
## [64513] "speak"             "save"              "elrond"           
## [64516] "region"            "messengers"        "discovered"       
## [64519] "signs"             "tidings"           "riders"           
## [64522] "servants"          "enemy"             "even"             
## [64525] "eagles"            "misty"             "mountains"        
## [64528] "learned"           "fresh"             "news"             
## [64531] "nothing"           "seen"              "heard"            
## [64534] "gollum"            "wild"              "wolves"           
## [64537] "still"             "gathering"         "hunting"          
## [64540] "far"               "great"             "river"            
## [64543] "three"             "black"             "horses"           
## [64546] "found"             "drowned"           "flooded"          
## [64549] "ford"              "rocks"             "rapids"           
## [64552] "searchers"         "discovered"        "bodies"           
## [64555] "five"              "also"              "long"             
## [64558] "black"             "cloak"             "slashed"          
## [64561] "tattered"          "black"             "riders"           
## [64564] "trace"             "seen"              "nowhere"          
## [64567] "presence"          "felt"              "seemed"           
## [64570] "vanished"          "north"             "eight"            
## [64573] "nine"              "accounted"         "least"            
## [64576] "said"              "gandalf"           "rash"             
## [64579] "sure"              "yet"               "think"            
## [64582] "may"               "hope"              "now"              
## [64585] "ringwraiths"       "scattered"         "obliged"          
## [64588] "return"            "best"              "master"           
## [64591] "mordor"            "empty"             "shapeless"        
## [64594] "will"              "time"              "can"              
## [64597] "begin"             "hunt"              "course"           
## [64600] "enemy"             "servants"          "will"             
## [64603] "journey"           "way"               "borders"          
## [64606] "rivendell"         "can"               "pick"             
## [64609] "trail"             "careful"           "will"             
## [64612] "hard"              "find"              "must"             
## [64615] "delay"             "longer"            "elrond"           
## [64618] "summoned"          "hobbits"           "looked"           
## [64621] "gravely"           "frodo"             "time"             
## [64624] "come"              "said"              "ring"             
## [64627] "set"               "must"              "go"               
## [64630] "soon"              "go"                "must"             
## [64633] "count"             "errand"            "aided"            
## [64636] "war"               "force"             "must"             
## [64639] "pass"              "domain"            "enemy"            
## [64642] "far"               "aid"               "still"            
## [64645] "hold"              "word"              "frodo"            
## [64648] "will"              "ring"              "bearer"           
## [64651] "said"              "frodo"             "will"             
## [64654] "go"                "sam"               "help"             
## [64657] "much"              "even"              "counsel"          
## [64660] "said"              "elrond"            "can"              
## [64663] "foresee"           "little"            "road"             
## [64666] "task"              "achieved"          "know"             
## [64669] "shadow"            "crept"             "now"              
## [64672] "feet"              "mountains"         "draws"            
## [64675] "nigh"              "even"              "borders"          
## [64678] "greyflood"         "shadow"            "dark"             
## [64681] "will"              "meet"              "many"             
## [64684] "foes"              "open"              "disguised"        
## [64687] "may"               "find"              "friends"          
## [64690] "upon"              "way"               "least"            
## [64693] "look"              "will"              "send"             
## [64696] "messages"          "can"               "contrive"         
## [64699] "know"              "wide"              "world"            
## [64702] "perilous"          "lands"             "now"              
## [64705] "become"            "may"               "well"             
## [64708] "miscarry"          "come"              "quicker"          
## [64711] "will"              "choose"            "companions"       
## [64714] "go"                "far"               "will"             
## [64717] "fortune"           "allows"            "number"           
## [64720] "must"              "since"             "hope"             
## [64723] "speed"             "secrecy"           "host"             
## [64726] "elves"             "armour"            "elder"            
## [64729] "days"              "avail"             "little"           
## [64732] "save"              "arouse"            "power"            
## [64735] "mordor"            "company"           "ring"             
## [64738] "shall"             "nine"              "nine"             
## [64741] "walkers"           "shall"             "set"              
## [64744] "nine"              "riders"            "evil"             
## [64747] "faithful"          "servant"           "gandalf"          
## [64750] "will"              "go"                "shall"            
## [64753] "great"             "task"              "maybe"            
## [64756] "end"               "labours"           "rest"             
## [64759] "shall"             "represent"         "free"             
## [64762] "peoples"           "world"             "elves"            
## [64765] "dwarves"           "men"               "legolas"          
## [64768] "shall"             "elves"             "gimli"            
## [64771] "son"               "glóin"             "dwarves"          
## [64774] "willing"           "go"                "least"            
## [64777] "passes"            "mountains"         "maybe"            
## [64780] "beyond"            "men"               "shall"            
## [64783] "aragorn"           "son"               "arathorn"         
## [64786] "ring"              "isildur"           "concerns"         
## [64789] "closely"           "strider"           "said"             
## [64792] "frodo"             "yes"               "said"             
## [64795] "smile"             "ask"               "leave"            
## [64798] "companion"         "frodo"             "begged"           
## [64801] "come"              "said"              "frodo"            
## [64804] "thought"           "going"             "minas"            
## [64807] "tirith"            "boromir"           "said"             
## [64810] "aragorn"           "sword"             "broken"           
## [64813] "shall"             "reforged"          "ere"              
## [64816] "set"               "war"               "road"             
## [64819] "road"              "lie"               "together"         
## [64822] "many"              "hundreds"          "miles"            
## [64825] "therefore"         "boromir"           "will"             
## [64828] "also"              "company"           "valiant"          
## [64831] "man"               "remain"            "two"              
## [64834] "found"             "said"              "elrond"           
## [64837] "will"              "consider"          "household"        
## [64840] "may"               "find"              "seems"            
## [64843] "good"              "send"              "will"             
## [64846] "leave"             "place"             "us"               
## [64849] "cried"             "pippin"            "dismay"           
## [64852] "dont"              "want"              "left"             
## [64855] "behind"            "want"              "go"               
## [64858] "frodo"             "understand"        "imagine"          
## [64861] "lies"              "ahead"             "said"             
## [64864] "elrond"            "neither"           "frodo"            
## [64867] "said"              "gandalf"           "unexpectedly"     
## [64870] "supporting"        "pippin"            "us"               
## [64873] "see"               "clearly"           "true"             
## [64876] "hobbits"           "understood"        "danger"           
## [64879] "dare"              "go"                "still"            
## [64882] "wish"              "go"                "wish"             
## [64885] "dared"             "shamed"            "unhappy"          
## [64888] "think"             "elrond"            "matter"           
## [64891] "well"              "trust"             "rather"           
## [64894] "friendship"        "great"             "wisdom"           
## [64897] "even"              "chose"             "us"               
## [64900] "elf"               "lord"              "glorfindel"       
## [64903] "storm"             "dark"              "tower"            
## [64906] "open"              "road"              "fire"             
## [64909] "power"             "speak"             "gravely"          
## [64912] "said"              "elrond"            "doubt"            
## [64915] "shire"             "forebode"          "free"             
## [64918] "now"               "peril"             "two"              
## [64921] "thought"           "send"              "back"             
## [64924] "messengers"        "according"         "fashion"          
## [64927] "country"           "warn"              "people"           
## [64930] "danger"            "case"              "judge"            
## [64933] "younger"           "two"               "peregrin"         
## [64936] "took"              "remain"            "heart"            
## [64939] "going"             "master"            "elrond"           
## [64942] "will"              "lock"              "prison"           
## [64945] "send"              "home"              "tied"             
## [64948] "sack"              "said"              "pippin"           
## [64951] "otherwise"         "shall"             "follow"           
## [64954] "company"           "let"               "shall"            
## [64957] "go"                "said"              "elrond"           
## [64960] "sighed"            "now"               "tale"             
## [64963] "nine"              "filled"            "seven"            
## [64966] "days"              "company"           "must"             
## [64969] "depart"            "sword"             "elendil"          
## [64972] "forged"            "anew"              "elvish"           
## [64975] "smiths"            "blade"             "traced"           
## [64978] "device"            "seven"             "stars"            
## [64981] "set"               "crescent"          "moon"             
## [64984] "rayed"             "sun"               "written"          
## [64987] "many"              "runes"             "aragorn"          
## [64990] "son"               "arathorn"          "going"            
## [64993] "war"               "upon"              "marches"          
## [64996] "mordor"            "bright"            "sword"            
## [64999] "made"              "whole"             "light"            
## [65002] "sun"               "shone"             "redly"            
## [65005] "light"             "moon"              "shone"            
## [65008] "cold"              "edge"              "hard"             
## [65011] "keen"              "aragorn"           "gave"             
## [65014] "new"               "name"              "called"           
## [65017] "andúril"           "flame"             "west"             
## [65020] "aragorn"           "gandalf"           "walked"           
## [65023] "together"          "sat"               "speaking"         
## [65026] "road"              "perils"            "meet"             
## [65029] "pondered"          "storied"           "figured"          
## [65032] "maps"              "books"             "lore"             
## [65035] "house"             "elrond"            "sometimes"        
## [65038] "frodo"             "content"           "lean"             
## [65041] "guidance"          "spent"             "much"             
## [65044] "time"              "bilbo"             "last"             
## [65047] "days"              "hobbits"           "sat"              
## [65050] "together"          "evening"           "hall"             
## [65053] "fire"              "among"             "many"             
## [65056] "tales"             "heard"             "told"             
## [65059] "full"              "lay"               "beren"            
## [65062] "lúthien"           "winning"           "great"            
## [65065] "jewel"             "day"               "merry"            
## [65068] "pippin"            "frodo"             "sam"              
## [65071] "found"             "bilbo"             "small"            
## [65074] "room"              "bilbo"             "read"             
## [65077] "passages"          "book"              "still"            
## [65080] "seemed"            "incomplete"        "scraps"           
## [65083] "verses"            "take"              "notes"            
## [65086] "frodos"            "adventures"        "morning"          
## [65089] "last"              "day"               "frodo"            
## [65092] "alone"             "bilbo"             "old"              
## [65095] "hobbit"            "pulled"            "bed"              
## [65098] "wooden"            "box"               "lifted"           
## [65101] "lid"               "fumbled"           "inside"           
## [65104] "sword"             "said"              "broken"           
## [65107] "know"              "took"              "keep"             
## [65110] "safe"              "ive"               "forgotten"        
## [65113] "ask"               "smiths"            "mend"             
## [65116] "time"              "now"               "thought"          
## [65119] "perhaps"           "care"              "dont"             
## [65122] "know"              "took"              "box"              
## [65125] "small"             "sword"             "old"              
## [65128] "shabby"            "leathern"          "scabbard"         
## [65131] "drew"              "polished"          "well"             
## [65134] "tended"            "blade"             "glittered"        
## [65137] "suddenly"          "cold"              "bright"           
## [65140] "sting"             "said"              "thrust"           
## [65143] "little"            "effort"            "deep"             
## [65146] "wooden"            "beam"              "take"             
## [65149] "like"              "shant"             "want"             
## [65152] "expect"            "frodo"             "accepted"         
## [65155] "gratefully"        "also"              "said"             
## [65158] "bilbo"             "bringing"          "parcel"           
## [65161] "seemed"            "rather"            "heavy"            
## [65164] "size"              "unwound"           "several"          
## [65167] "folds"             "old"               "cloth"            
## [65170] "held"              "small"             "shirt"            
## [65173] "mail"              "close"             "woven"            
## [65176] "many"              "rings"             "supple"           
## [65179] "almost"            "linen"             "cold"             
## [65182] "ice"               "harder"            "steel"            
## [65185] "shone"             "like"              "moonlit"          
## [65188] "silver"            "studded"           "white"            
## [65191] "gems"              "belt"              "pearl"            
## [65194] "crystal"           "pretty"            "thing"            
## [65197] "isnt"              "said"              "bilbo"            
## [65200] "moving"            "light"             "useful"           
## [65203] "dwarf"             "mail"              "thorin"           
## [65206] "gave"              "got"               "back"             
## [65209] "michel"            "delving"           "started"          
## [65212] "packed"            "luggage"           "brought"          
## [65215] "mementoes"         "journey"           "away"             
## [65218] "except"            "ring"              "expect"           
## [65221] "use"               "dont"              "need"             
## [65224] "now"               "except"            "look"             
## [65227] "sometimes"         "hardly"            "feel"             
## [65230] "weight"            "put"               "look"             
## [65233] "well"              "dont"              "think"            
## [65236] "look"              "right"             "said"             
## [65239] "frodo"             "just"              "said"             
## [65242] "said"              "bilbo"             "never"            
## [65245] "mind"              "looks"             "can"              
## [65248] "wear"              "outer"             "clothes"          
## [65251] "come"              "must"              "share"            
## [65254] "secret"            "dont"              "tell"             
## [65257] "anybody"           "else"              "feel"             
## [65260] "happier"           "knew"              "wearing"          
## [65263] "fancy"             "turn"              "even"             
## [65266] "knives"            "black"             "riders"           
## [65269] "ended"             "low"               "voice"            
## [65272] "well"              "will"              "take"             
## [65275] "said"              "frodo"             "bilbo"            
## [65278] "put"               "fastened"          "sting"            
## [65281] "upon"              "glittering"        "belt"             
## [65284] "frodo"             "put"               "top"              
## [65287] "old"               "weather"           "stained"          
## [65290] "breeches"          "tunic"             "jacket"           
## [65293] "just"              "plain"             "hobbit"           
## [65296] "look"              "said"              "bilbo"            
## [65299] "now"               "appears"           "surface"          
## [65302] "good"              "luck"              "turned"           
## [65305] "away"              "looked"            "window"           
## [65308] "trying"            "hum"               "tune"             
## [65311] "thank"             "bilbo"             "past"             
## [65314] "kindnesses"        "said"              "frodo"            
## [65317] "dont"              "try"               "said"             
## [65320] "old"               "hobbit"            "turning"          
## [65323] "round"             "slapping"          "back"             
## [65326] "ow"                "cried"             "hard"             
## [65329] "now"               "slap"              "hobbits"          
## [65332] "must"              "stick"             "together"         
## [65335] "especially"        "bagginses"         "ask"              
## [65338] "return"            "take"              "much"             
## [65341] "care"              "can"               "bring"            
## [65344] "back"              "news"              "can"              
## [65347] "old"               "songs"             "tales"            
## [65350] "can"               "come"              "ill"              
## [65353] "best"              "finish"            "book"             
## [65356] "return"            "like"              "write"            
## [65359] "second"            "book"              "spared"           
## [65362] "broke"             "turned"            "window"           
## [65365] "singing"           "softly"            "sit"              
## [65368] "beside"            "fire"              "think"            
## [65371] "seen"              "meadow"            "flowers"          
## [65374] "butterflies"       "summers"           "yellow"           
## [65377] "leaves"            "gossamer"          "autumns"          
## [65380] "morning"           "mist"              "silver"           
## [65383] "sun"               "wind"              "upon"             
## [65386] "hair"              "sit"               "beside"           
## [65389] "fire"              "think"             "world"            
## [65392] "will"              "winter"            "comes"            
## [65395] "without"           "spring"            "shall"            
## [65398] "ever"              "see"               "still"            
## [65401] "many"              "things"            "never"            
## [65404] "seen"              "every"             "wood"             
## [65407] "every"             "spring"            "different"        
## [65410] "green"             "sit"               "beside"           
## [65413] "fire"              "think"             "people"           
## [65416] "long"              "ago"               "people"           
## [65419] "will"              "see"               "world"            
## [65422] "shall"             "never"             "know"             
## [65425] "sit"               "think"             "times"            
## [65428] "listen"            "returning"         "feet"             
## [65431] "voices"            "door"              "cold"             
## [65434] "grey"              "day"               "near"             
## [65437] "end"               "december"          "east"             
## [65440] "wind"              "streaming"         "bare"             
## [65443] "branches"          "trees"             "seething"         
## [65446] "dark"              "pines"             "hills"            
## [65449] "ragged"            "clouds"            "hurrying"         
## [65452] "overhead"          "dark"              "low"              
## [65455] "cheerless"         "shadows"           "early"            
## [65458] "evening"           "began"             "fall"             
## [65461] "company"           "made"              "ready"            
## [65464] "set"               "start"             "dusk"             
## [65467] "elrond"            "counselled"        "journey"          
## [65470] "cover"             "night"             "often"            
## [65473] "far"               "rivendell"         "fear"             
## [65476] "many"              "eyes"              "servants"         
## [65479] "sauron"            "said"              "doubt"            
## [65482] "news"              "discomfiture"      "riders"           
## [65485] "already"           "reached"           "will"             
## [65488] "filled"            "wrath"             "soon"             
## [65491] "now"               "spies"             "foot"             
## [65494] "wing"              "will"              "abroad"           
## [65497] "northern"          "lands"             "even"             
## [65500] "sky"               "must"              "beware"           
## [65503] "go"                "way"               "company"          
## [65506] "took"              "little"            "gear"             
## [65509] "war"               "hope"              "secrecy"          
## [65512] "battle"            "aragorn"           "andúril"          
## [65515] "weapon"            "went"              "forth"            
## [65518] "clad"              "rusty"             "green"            
## [65521] "brown"             "ranger"            "wilderness"       
## [65524] "boromir"           "long"              "sword"            
## [65527] "fashion"           "like"              "andúril"          
## [65530] "less"              "lineage"           "bore"             
## [65533] "also"              "shield"            "war"              
## [65536] "horn"              "loud"              "clear"            
## [65539] "sounds"            "valleys"           "hills"            
## [65542] "said"              "let"               "foes"             
## [65545] "gondor"            "flee"              "putting"          
## [65548] "lips"              "blew"              "blast"            
## [65551] "echoes"            "leapt"             "rock"             
## [65554] "rock"              "heard"             "voice"            
## [65557] "rivendell"         "sprang"            "feet"             
## [65560] "slow"              "wind"              "horn"             
## [65563] "boromir"           "said"              "elrond"           
## [65566] "stand"             "borders"           "land"             
## [65569] "dire"              "need"              "maybe"            
## [65572] "said"              "boromir"           "always"           
## [65575] "let"               "horn"              "cry"              
## [65578] "setting"           "forth"             "though"           
## [65581] "thereafter"        "may"               "walk"             
## [65584] "shadows"           "will"              "go"               
## [65587] "forth"             "thief"             "night"            
## [65590] "gimli"             "dwarf"             "alone"            
## [65593] "wore"              "openly"            "short"            
## [65596] "shirt"             "steel"             "rings"            
## [65599] "dwarves"           "make"              "light"            
## [65602] "burdens"           "belt"              "broad"            
## [65605] "bladed"            "axe"               "legolas"          
## [65608] "bow"               "quiver"            "belt"             
## [65611] "long"              "white"             "knife"            
## [65614] "younger"           "hobbits"           "wore"             
## [65617] "swords"            "taken"             "barrow"           
## [65620] "frodo"             "took"              "sting"            
## [65623] "mail"              "coat"              "bilbo"            
## [65626] "wished"            "remained"          "hidden"           
## [65629] "gandalf"           "bore"              "staff"            
## [65632] "girt"              "side"              "elven"            
## [65635] "sword"             "glamdring"         "mate"             
## [65638] "orcrist"           "lay"               "now"              
## [65641] "upon"              "breast"            "thorin"           
## [65644] "lonely"            "mountain"          "well"             
## [65647] "furnished"         "elrond"            "thick"            
## [65650] "warm"              "clothes"           "jackets"          
## [65653] "cloaks"            "lined"             "fur"              
## [65656] "spare"             "food"              "clothes"          
## [65659] "blankets"          "needs"             "laden"            
## [65662] "pony"              "none"              "poor"             
## [65665] "beast"             "brought"           "bree"             
## [65668] "stay"              "rivendell"         "worked"           
## [65671] "great"             "wonder"            "change"           
## [65674] "glossy"            "seemed"            "vigour"           
## [65677] "youth"             "sam"               "insisted"         
## [65680] "choosing"          "declaring"         "bill"             
## [65683] "called"            "pine"              "come"             
## [65686] "animal"            "can"               "nearly"           
## [65689] "talk"              "said"              "talk"             
## [65692] "stayed"            "much"              "longer"           
## [65695] "gave"              "look"              "plain"            
## [65698] "mr"                "pippin"            "speak"            
## [65701] "dont"              "let"               "go"               
## [65704] "sam"               "ill"               "follow"           
## [65707] "bill"              "going"             "beast"            
## [65710] "burden"            "yet"               "member"           
## [65713] "company"           "seem"              "depressed"        
## [65716] "farewells"         "said"              "great"            
## [65719] "hall"              "fire"              "waiting"          
## [65722] "now"               "gandalf"           "yet"              
## [65725] "come"              "house"             "gleam"            
## [65728] "firelight"         "came"              "open"             
## [65731] "doors"             "soft"              "lights"           
## [65734] "glowing"           "many"              "windows"          
## [65737] "bilbo"             "huddled"           "cloak"            
## [65740] "stood"             "silent"            "doorstep"         
## [65743] "beside"            "frodo"             "aragorn"          
## [65746] "sat"               "head"              "bowed"            
## [65749] "knees"             "elrond"            "knew"             
## [65752] "fully"             "hour"              "meant"            
## [65755] "others"            "seen"              "grey"             
## [65758] "shapes"            "darkness"          "sam"              
## [65761] "standing"          "pony"              "sucking"          
## [65764] "teeth"             "staring"           "moodily"          
## [65767] "gloom"             "river"             "roared"           
## [65770] "stonily"           "desire"            "adventure"        
## [65773] "lowest"            "ebb"               "bill"             
## [65776] "lad"               "said"              "oughtnt"          
## [65779] "took"              "us"                "stayed"           
## [65782] "et"                "best"              "hay"              
## [65785] "till"              "new"               "grass"            
## [65788] "comes"             "bill"              "swished"          
## [65791] "tail"              "said"              "nothing"          
## [65794] "sam"               "eased"             "pack"             
## [65797] "shoulders"         "went"              "anxiously"        
## [65800] "mind"              "things"            "stowed"           
## [65803] "wondering"         "forgotten"         "anything"         
## [65806] "chief"             "treasure"          "cooking"          
## [65809] "gear"              "little"            "box"              
## [65812] "salt"              "always"            "carried"          
## [65815] "refilled"          "good"              "supply"           
## [65818] "pipe"              "weed"              "near"             
## [65821] "enough"            "ill"               "warrant"          
## [65824] "flint"             "tinder"            "woollen"          
## [65827] "hose"              "linen"             "various"          
## [65830] "small"             "belongings"        "masters"          
## [65833] "frodo"             "forgotten"         "sam"              
## [65836] "stowed"            "bring"             "triumph"          
## [65839] "called"            "went"              "rope"             
## [65842] "muttered"          "rope"              "last"             
## [65845] "night"             "said"              "sam"              
## [65848] "bit"               "rope"              "youll"            
## [65851] "want"              "havent"            "got"              
## [65854] "well"              "ill"               "want"             
## [65857] "cant"              "get"               "now"              
## [65860] "moment"            "elrond"            "came"             
## [65863] "gandalf"           "called"            "company"          
## [65866] "last"              "word"              "said"             
## [65869] "low"               "voice"             "ring"             
## [65872] "bearer"            "setting"           "quest"            
## [65875] "mount"             "doom"              "alone"            
## [65878] "charge"            "laid"              "neither"          
## [65881] "cast"              "away"              "ring"             
## [65884] "deliver"           "servant"           "enemy"            
## [65887] "indeed"            "let"               "handle"           
## [65890] "save"              "members"           "company"          
## [65893] "council"           "gravest"           "need"             
## [65896] "others"            "go"                "free"             
## [65899] "companions"        "help"              "way"              
## [65902] "may"               "tarry"             "come"             
## [65905] "back"              "turn"              "aside"            
## [65908] "paths"             "chance"            "allows"           
## [65911] "go"                "less"              "easy"             
## [65914] "will"              "withdraw"          "yet"              
## [65917] "oath"              "bond"              "laid"             
## [65920] "go"                "will"              "yet"              
## [65923] "know"              "strength"          "hearts"           
## [65926] "foresee"           "may"               "meet"             
## [65929] "upon"              "road"              "faithless"        
## [65932] "says"              "farewell"          "road"             
## [65935] "darkens"           "said"              "gimli"            
## [65938] "maybe"             "said"              "elrond"           
## [65941] "let"               "vow"               "walk"             
## [65944] "dark"              "seen"              "nightfall"        
## [65947] "yet"               "sworn"             "word"             
## [65950] "may"               "strengthen"        "quaking"          
## [65953] "heart"             "said"              "gimli"            
## [65956] "break"             "said"              "elrond"           
## [65959] "look"              "far"               "ahead"            
## [65962] "go"                "now"               "good"             
## [65965] "hearts"            "farewell"          "may"              
## [65968] "blessing"          "elves"             "men"              
## [65971] "free"              "folk"              "go"               
## [65974] "may"               "stars"             "shine"            
## [65977] "upon"              "faces"             "good"             
## [65980] "good"              "luck"              "cried"            
## [65983] "bilbo"             "stuttering"        "cold"             
## [65986] "dont"              "suppose"           "will"             
## [65989] "able"              "keep"              "diary"            
## [65992] "frodo"             "lad"               "shall"            
## [65995] "expect"            "full"              "account"          
## [65998] "get"               "back"              "dont"             
## [66001] "long"              "farewell"          "many"             
## [66004] "others"            "elronds"           "household"        
## [66007] "stood"             "shadows"           "watched"          
## [66010] "go"                "bidding"           "farewell"         
## [66013] "soft"              "voices"            "laughter"         
## [66016] "song"              "music"             "last"             
## [66019] "turned"            "away"              "faded"            
## [66022] "silently"          "dusk"              "crossed"          
## [66025] "bridge"            "wound"             "slowly"           
## [66028] "long"              "steep"             "paths"            
## [66031] "led"               "cloven"            "vale"             
## [66034] "rivendell"         "came"              "length"           
## [66037] "high"              "moor"              "wind"             
## [66040] "hissed"            "heather"           "one"              
## [66043] "glance"            "last"              "homely"           
## [66046] "house"             "twinkling"         "strode"           
## [66049] "away"              "far"               "night"            
## [66052] "ford"              "bruinen"           "left"             
## [66055] "road"              "turning"           "southwards"       
## [66058] "went"              "narrow"            "paths"            
## [66061] "among"             "folded"            "lands"            
## [66064] "purpose"           "hold"              "course"           
## [66067] "west"              "mountains"         "many"             
## [66070] "miles"             "days"              "country"          
## [66073] "much"              "rougher"           "barren"           
## [66076] "green"             "vale"              "great"            
## [66079] "river"             "wilderland"        "side"             
## [66082] "range"             "going"             "slow"             
## [66085] "hoped"             "way"               "escape"           
## [66088] "notice"            "unfriendly"        "eyes"             
## [66091] "spies"             "sauron"            "hitherto"         
## [66094] "seldom"            "seen"              "empty"            
## [66097] "country"           "paths"             "little"           
## [66100] "known"             "except"            "people"           
## [66103] "rivendell"         "gandalf"           "walked"           
## [66106] "front"             "went"              "aragorn"          
## [66109] "knew"              "land"              "even"             
## [66112] "dark"              "others"            "file"             
## [66115] "behind"            "legolas"           "whose"            
## [66118] "eyes"              "keen"              "rearguard"        
## [66121] "first"             "part"              "journey"          
## [66124] "hard"              "dreary"            "frodo"            
## [66127] "remembered"        "little"            "save"             
## [66130] "wind"              "many"              "sunless"          
## [66133] "days"              "icy"               "blast"            
## [66136] "came"              "mountains"         "east"             
## [66139] "garment"           "seemed"            "able"             
## [66142] "keep"              "searching"         "fingers"          
## [66145] "though"            "company"           "well"             
## [66148] "clad"              "seldom"            "felt"             
## [66151] "warm"              "either"            "moving"           
## [66154] "rest"              "slept"             "uneasily"         
## [66157] "middle"            "day"               "hollow"           
## [66160] "land"              "hidden"            "tangled"          
## [66163] "thorn"             "bushes"            "grew"             
## [66166] "thickets"          "many"              "places"           
## [66169] "late"              "afternoon"         "roused"           
## [66172] "watch"             "took"              "chief"            
## [66175] "meal"              "cold"              "cheerless"        
## [66178] "rule"              "seldom"            "risk"             
## [66181] "lighting"          "fire"              "evening"          
## [66184] "went"              "always"            "nearly"           
## [66187] "southward"         "find"              "way"              
## [66190] "first"             "seemed"            "hobbits"          
## [66193] "although"          "walked"            "stumbled"         
## [66196] "weary"             "creeping"          "forward"          
## [66199] "like"              "snails"            "getting"          
## [66202] "nowhere"           "day"               "land"             
## [66205] "looked"            "much"              "day"              
## [66208] "yet"               "steadily"          "mountains"        
## [66211] "drawing"           "nearer"            "south"            
## [66214] "rivendell"         "rose"              "ever"             
## [66217] "higher"            "bent"              "westwards"        
## [66220] "feet"              "main"              "range"            
## [66223] "tumbled"           "ever"              "wider"            
## [66226] "land"              "bleak"             "hills"            
## [66229] "deep"              "valleys"           "filled"           
## [66232] "turbulent"         "waters"            "paths"            
## [66235] "winding"           "led"               "often"            
## [66238] "edge"              "sheer"             "fall"             
## [66241] "treacherous"       "swamps"            "fortnight"        
## [66244] "way"               "weather"           "changed"          
## [66247] "wind"              "suddenly"          "fell"             
## [66250] "veered"            "round"             "south"            
## [66253] "swift"             "flowing"           "clouds"           
## [66256] "lifted"            "melted"            "away"             
## [66259] "sun"               "came"              "pale"             
## [66262] "bright"            "came"              "cold"             
## [66265] "clear"             "dawn"              "end"              
## [66268] "long"              "stumbling"         "night"            
## [66271] "march"             "travellers"        "reached"          
## [66274] "low"               "ridge"             "crowned"          
## [66277] "ancient"           "holly"             "trees"            
## [66280] "whose"             "grey"              "green"            
## [66283] "trunks"            "seemed"            "built"            
## [66286] "stone"             "hills"             "dark"             
## [66289] "leaves"            "shone"             "berries"          
## [66292] "glowed"            "red"               "light"            
## [66295] "rising"            "sun"               "away"             
## [66298] "south"             "frodo"             "see"              
## [66301] "dim"               "shapes"            "lofty"            
## [66304] "mountains"         "seemed"            "now"              
## [66307] "stand"             "across"            "path"             
## [66310] "company"           "taking"            "left"             
## [66313] "high"              "range"             "rose"             
## [66316] "three"             "peaks"             "tallest"          
## [66319] "nearest"           "stood"             "like"             
## [66322] "tooth"             "tipped"            "snow"             
## [66325] "great"             "bare"              "northern"         
## [66328] "precipice"         "still"             "largely"          
## [66331] "shadow"            "sunlight"          "slanted"          
## [66334] "upon"              "glowed"            "red"              
## [66337] "gandalf"           "stood"             "frodos"           
## [66340] "side"              "looked"            "hand"             
## [66343] "done"              "well"              "said"             
## [66346] "reached"           "borders"           "country"          
## [66349] "men"               "call"              "hollin"           
## [66352] "many"              "elves"             "lived"            
## [66355] "happier"           "days"              "eregion"          
## [66358] "name"              "five"              "forty"            
## [66361] "leagues"           "crow"              "flies"            
## [66364] "come"              "though"            "many"             
## [66367] "long"              "miles"             "feet"             
## [66370] "walked"            "land"              "weather"          
## [66373] "will"              "milder"            "now"              
## [66376] "perhaps"           "dangerous"         "dangerous"        
## [66379] "real"              "sunrise"           "mighty"           
## [66382] "welcome"           "said"              "frodo"            
## [66385] "throwing"          "back"              "hood"             
## [66388] "letting"           "morning"           "light"            
## [66391] "fall"              "face"              "mountains"        
## [66394] "ahead"             "us"                "said"             
## [66397] "pippin"            "must"              "turned"           
## [66400] "eastwards"         "night"             "said"             
## [66403] "gandalf"           "see"               "ahead"            
## [66406] "clear"             "light"             "beyond"           
## [66409] "peaks"             "range"             "bends"            
## [66412] "round"             "south"             "west"             
## [66415] "many"              "maps"              "elronds"          
## [66418] "house"             "suppose"           "never"            
## [66421] "thought"           "look"              "yes"              
## [66424] "sometimes"         "said"              "pippin"           
## [66427] "dont"              "remember"          "frodo"            
## [66430] "better"            "head"              "sort"             
## [66433] "thing"             "need"              "map"              
## [66436] "said"              "gimli"             "come"             
## [66439] "legolas"           "gazing"            "strange"          
## [66442] "light"             "deep"              "eyes"             
## [66445] "land"              "fathers"           "worked"           
## [66448] "old"               "wrought"           "image"            
## [66451] "mountains"         "many"              "works"            
## [66454] "metal"             "stone"             "many"             
## [66457] "songs"             "tales"             "stand"            
## [66460] "tall"              "dreams"            "baraz"            
## [66463] "zirak"             "shathûr"           "seen"             
## [66466] "afar"              "waking"            "life"             
## [66469] "know"              "names"             "lies"             
## [66472] "khazad"            "dûm"               "dwarrowdelf"      
## [66475] "now"               "called"            "black"            
## [66478] "pit"               "moria"             "elvish"           
## [66481] "tongue"            "yonder"            "stands"           
## [66484] "barazinbar"        "redhorn"           "cruel"            
## [66487] "caradhras"         "beyond"            "silvertine"       
## [66490] "cloudyhead"        "celebdil"          "white"            
## [66493] "fanuidhol"         "grey"              "call"             
## [66496] "zirak"             "zigil"             "bundushathûr"     
## [66499] "misty"             "mountains"         "divide"           
## [66502] "arms"              "lies"              "deep"             
## [66505] "shadowed"          "valley"            "forget"           
## [66508] "azanulbizar"       "dimrill"           "dale"             
## [66511] "elves"             "call"              "nanduhirion"      
## [66514] "dimrill"           "dale"              "making"           
## [66517] "said"              "gandalf"           "climb"            
## [66520] "pass"              "called"            "redhorn"          
## [66523] "gate"              "far"               "side"             
## [66526] "caradhras"         "shall"             "come"             
## [66529] "dimrill"           "stair"             "deep"             
## [66532] "vale"              "dwarves"           "lies"             
## [66535] "mirrormere"        "river"             "silverlode"       
## [66538] "rises"             "icy"               "springs"          
## [66541] "dark"              "water"             "kheled"           
## [66544] "zâram"             "said"              "gimli"            
## [66547] "cold"              "springs"           "kibil"            
## [66550] "nâla"              "heart"             "trembles"         
## [66553] "thought"           "may"               "see"              
## [66556] "soon"              "may"               "joy"              
## [66559] "sight"             "good"              "dwarf"            
## [66562] "said"              "gandalf"           "whatever"         
## [66565] "may"               "least"             "stay"             
## [66568] "valley"            "must"              "go"               
## [66571] "silverlode"        "secret"            "woods"            
## [66574] "great"             "river"             "paused"           
## [66577] "yes"               "asked"             "merry"            
## [66580] "end"               "journey"           "end"              
## [66583] "said"              "gandalf"           "look"             
## [66586] "far"               "ahead"             "let"              
## [66589] "us"                "glad"              "first"            
## [66592] "stage"             "safely"            "think"            
## [66595] "will"              "rest"              "today"            
## [66598] "tonight"           "well"              "wholesome"        
## [66601] "air"               "hollin"            "much"             
## [66604] "evil"              "must"              "befall"           
## [66607] "country"           "wholly"            "forgets"          
## [66610] "elves"             "dwelt"             "true"             
## [66613] "said"              "legolas"           "elves"            
## [66616] "land"              "race"              "strange"          
## [66619] "us"                "silvan"            "folk"             
## [66622] "trees"             "grass"             "now"              
## [66625] "remember"          "hear"              "stones"           
## [66628] "lament"            "deep"              "delved"           
## [66631] "us"                "fair"              "wrought"          
## [66634] "us"                "high"              "builded"          
## [66637] "us"                "gone"              "gone"             
## [66640] "sought"            "havens"            "long"             
## [66643] "ago"               "morning"           "lit"              
## [66646] "fire"              "deep"              "hollow"           
## [66649] "shrouded"          "great"             "bushes"           
## [66652] "holly"             "supper"            "breakfast"        
## [66655] "merrier"           "since"             "set"              
## [66658] "hurry"             "bed"               "afterwards"       
## [66661] "expected"          "night"             "sleep"            
## [66664] "mean"              "go"                "evening"          
## [66667] "next"              "day"               "aragorn"          
## [66670] "silent"            "restless"          "left"             
## [66673] "company"           "wandered"          "ridge"            
## [66676] "stood"             "shadow"            "tree"             
## [66679] "looking"           "southwards"        "westwards"        
## [66682] "head"              "posed"             "listening"        
## [66685] "returned"          "brink"             "dell"             
## [66688] "looked"            "others"            "laughing"         
## [66691] "talking"           "matter"            "strider"          
## [66694] "merry"             "called"            "looking"          
## [66697] "miss"              "east"              "wind"             
## [66700] "indeed"            "answered"          "miss"             
## [66703] "something"         "country"           "hollin"           
## [66706] "many"              "seasons"           "folk"             
## [66709] "dwell"             "now"               "many"             
## [66712] "creatures"         "live"              "times"            
## [66715] "especially"        "birds"             "yet"              
## [66718] "now"               "things"            "silent"           
## [66721] "can"               "feel"              "sound"            
## [66724] "miles"             "us"                "voices"           
## [66727] "seem"              "make"              "ground"           
## [66730] "echo"              "understand"        "gandalf"          
## [66733] "looked"            "sudden"            "interest"         
## [66736] "guess"             "reason"            "asked"            
## [66739] "surprise"          "seeing"            "four"             
## [66742] "hobbits"           "mention"           "rest"             
## [66745] "us"                "people"            "seldom"           
## [66748] "seen"              "heard"             "hope"             
## [66751] "answered"          "aragorn"           "sense"            
## [66754] "watchfulness"      "fear"              "never"            
## [66757] "must"              "careful"           "said"             
## [66760] "gandalf"           "bring"             "ranger"           
## [66763] "well"              "pay"               "attention"        
## [66766] "especially"        "ranger"            "aragorn"          
## [66769] "must"              "stop"              "talking"          
## [66772] "aloud"             "rest"              "quietly"          
## [66775] "set"               "watch"             "sams"             
## [66778] "turn"              "day"               "take"             
## [66781] "first"             "watch"             "aragorn"          
## [66784] "joined"            "others"            "fell"             
## [66787] "asleep"            "silence"           "grew"             
## [66790] "even"              "sam"               "felt"             
## [66793] "breathing"         "sleepers"          "plainly"          
## [66796] "heard"             "swish"             "ponys"            
## [66799] "tail"              "occasional"        "movements"        
## [66802] "feet"              "became"            "loud"             
## [66805] "noises"            "sam"               "hear"             
## [66808] "joints"            "creaking"          "stirred"          
## [66811] "dead"              "silence"           "around"           
## [66814] "hung"              "clear"             "blue"             
## [66817] "sky"               "sun"               "rode"             
## [66820] "east"              "away"              "south"            
## [66823] "dark"              "patch"             "appeared"         
## [66826] "grew"              "drove"             "north"            
## [66829] "like"              "flying"            "smoke"            
## [66832] "wind"              "whats"             "strider"          
## [66835] "dont"              "look"              "like"             
## [66838] "cloud"             "said"              "sam"              
## [66841] "whisper"           "aragorn"           "made"             
## [66844] "answer"            "gazing"            "intently"         
## [66847] "sky"               "long"              "sam"              
## [66850] "see"               "approaching"       "flocks"           
## [66853] "birds"             "flying"            "great"            
## [66856] "speed"             "wheeling"          "circling"         
## [66859] "traversing"        "land"              "searching"        
## [66862] "something"         "steadily"          "drawing"          
## [66865] "nearer"            "lie"               "flat"             
## [66868] "still"             "hissed"            "aragorn"          
## [66871] "pulling"           "sam"               "shade"            
## [66874] "holly"             "bush"              "whole"            
## [66877] "regiment"          "birds"             "broken"           
## [66880] "away"              "suddenly"          "main"             
## [66883] "host"              "came"              "flying"           
## [66886] "low"               "straight"          "towards"          
## [66889] "ridge"             "sam"               "thought"          
## [66892] "kind"              "crow"              "large"            
## [66895] "size"              "passed"            "overhead"         
## [66898] "dense"             "throng"            "shadow"           
## [66901] "followed"          "darkly"            "ground"           
## [66904] "one"               "harsh"             "croak"            
## [66907] "heard"             "dwindled"          "distance"         
## [66910] "north"             "west"              "sky"              
## [66913] "clear"             "aragorn"           "rise"             
## [66916] "sprang"            "went"              "wakened"          
## [66919] "gandalf"           "regiments"         "black"            
## [66922] "crows"             "flying"            "land"             
## [66925] "mountains"         "greyflood"         "said"             
## [66928] "passed"            "hollin"            "natives"          
## [66931] "crebain"           "fangorn"           "dunland"          
## [66934] "know"              "possibly"          "trouble"          
## [66937] "away"              "south"             "fleeing"          
## [66940] "think"             "spying"            "land"             
## [66943] "also"              "glimpsed"          "many"             
## [66946] "hawks"             "flying"            "high"             
## [66949] "sky"               "think"             "move"             
## [66952] "evening"           "hollin"            "longer"           
## [66955] "wholesome"         "us"                "watched"          
## [66958] "case"              "redhorn"           "gate"             
## [66961] "said"              "gandalf"           "can"              
## [66964] "get"               "without"           "seen"             
## [66967] "imagine"           "will"              "think"            
## [66970] "must"              "moving"            "soon"             
## [66973] "dark"              "afraid"            "right"            
## [66976] "luckily"           "fire"              "made"             
## [66979] "little"            "smoke"             "burned"           
## [66982] "low"               "crebain"           "came"             
## [66985] "said"              "aragorn"           "must"             
## [66988] "put"               "lit"               "well"             
## [66991] "isnt"              "plague"            "nuisance"         
## [66994] "said"              "pippin"            "news"             
## [66997] "fire"              "move"              "night"            
## [67000] "broken"            "soon"              "woke"             
## [67003] "late"              "afternoon"         "pack"             
## [67006] "crows"             "looked"            "forward"          
## [67009] "real"              "good"              "meal"             
## [67012] "tonight"           "something"         "hot"              
## [67015] "well"              "can"               "go"               
## [67018] "looking"           "forward"           "said"             
## [67021] "gandalf"           "may"               "many"             
## [67024] "unexpected"        "feasts"            "ahead"            
## [67027] "like"              "pipe"              "smoke"            
## [67030] "comfort"           "warmer"            "feet"             
## [67033] "however"           "certain"           "one"              
## [67036] "thing"             "rate"              "will"             
## [67039] "get"               "warmer"            "get"              
## [67042] "south"             "warm"              "shouldnt"         
## [67045] "wonder"            "muttered"          "sam"              
## [67048] "frodo"             "im"                "beginning"        
## [67051] "think"             "time"              "got"              
## [67054] "sight"             "fiery"             "mountain"         
## [67057] "saw"               "end"               "road"             
## [67060] "speak"             "thought"           "first"            
## [67063] "redhorn"           "whatever"          "name"             
## [67066] "might"             "till"              "gimli"            
## [67069] "spoke"             "piece"             "fair"             
## [67072] "jaw"               "cracker"           "dwarf"            
## [67075] "language"          "must"              "maps"             
## [67078] "conveyed"          "nothing"           "sams"             
## [67081] "mind"              "distances"         "strange"          
## [67084] "lands"             "seemed"            "vast"             
## [67087] "quite"             "reckoning"         "day"              
## [67090] "company"           "remained"          "hiding"           
## [67093] "dark"              "birds"             "passed"           
## [67096] "now"               "westering"         "sun"              
## [67099] "grew"              "red"               "disappeared"      
## [67102] "southwards"        "dusk"              "company"          
## [67105] "set"               "turning"           "now"              
## [67108] "half"              "east"              "steered"          
## [67111] "course"            "towards"           "caradhras"        
## [67114] "far"               "away"              "still"            
## [67117] "glowed"            "faintly"           "red"              
## [67120] "last"              "light"             "vanished"         
## [67123] "sun"               "one"               "one"              
## [67126] "white"             "stars"             "sprang"           
## [67129] "forth"             "sky"               "faded"            
## [67132] "guided"            "aragorn"           "struck"           
## [67135] "good"              "path"              "looked"           
## [67138] "frodo"             "like"              "remains"          
## [67141] "ancient"           "road"              "broad"            
## [67144] "well"              "planned"           "hollin"           
## [67147] "mountain"          "pass"              "moon"             
## [67150] "now"               "full"              "rose"             
## [67153] "mountains"         "cast"              "pale"             
## [67156] "light"             "shadows"           "stones"           
## [67159] "black"             "many"              "looked"           
## [67162] "worked"            "hands"             "though"           
## [67165] "now"               "lay"               "tumbled"          
## [67168] "ruinous"           "bleak"             "barren"           
## [67171] "land"              "cold"              "chill"            
## [67174] "hour"              "first"             "stir"             
## [67177] "dawn"              "moon"              "low"              
## [67180] "frodo"             "looked"            "sky"              
## [67183] "suddenly"          "saw"               "felt"             
## [67186] "shadow"            "pass"              "high"             
## [67189] "stars"             "moment"            "faded"            
## [67192] "flashed"           "shivered"          "see"              
## [67195] "anything"          "pass"              "whispered"        
## [67198] "gandalf"           "just"              "ahead"            
## [67201] "felt"              "whatever"          "answered"         
## [67204] "may"               "nothing"           "wisp"             
## [67207] "thin"              "cloud"             "moving"           
## [67210] "fast"              "muttered"          "aragorn"          
## [67213] "wind"              "nothing"           "happened"         
## [67216] "night"             "next"              "morning"          
## [67219] "dawned"            "even"              "brighter"         
## [67222] "air"               "chill"             "already"          
## [67225] "wind"              "turning"           "back"             
## [67228] "towards"           "east"              "two"              
## [67231] "nights"            "marched"           "climbing"         
## [67234] "steadily"          "ever"              "slowly"           
## [67237] "road"              "wound"             "hills"            
## [67240] "mountains"         "towered"           "nearer"           
## [67243] "nearer"            "third"             "morning"          
## [67246] "caradhras"         "rose"              "mighty"           
## [67249] "peak"              "tipped"            "snow"             
## [67252] "like"              "silver"            "sheer"            
## [67255] "naked"             "sides"             "dull"             
## [67258] "red"               "stained"           "blood"            
## [67261] "black"             "look"              "sky"              
## [67264] "sun"               "wan"               "wind"             
## [67267] "gone"              "now"               "round"            
## [67270] "north"             "east"              "gandalf"          
## [67273] "snuffed"           "air"               "looked"           
## [67276] "back"              "winter"            "deepens"          
## [67279] "behind"            "us"                "said"             
## [67282] "quietly"           "aragorn"           "heights"          
## [67285] "away"              "north"             "whiter"           
## [67288] "snow"              "lying"             "far"              
## [67291] "shoulders"         "tonight"           "shall"            
## [67294] "way"               "high"              "towards"          
## [67297] "redhorn"           "gate"              "may"              
## [67300] "well"              "seen"              "watchers"         
## [67303] "narrow"            "path"              "waylaid"          
## [67306] "evil"              "weather"           "may"              
## [67309] "prove"             "deadly"            "enemy"            
## [67312] "think"             "course"            "now"              
## [67315] "aragorn"           "frodo"             "overheard"        
## [67318] "words"             "understood"        "gandalf"          
## [67321] "aragorn"           "continuing"        "debate"           
## [67324] "begun"             "long"              "listened"         
## [67327] "anxiously"         "think"             "good"             
## [67330] "course"            "beginning"         "end"              
## [67333] "know"              "well"              "gandalf"          
## [67336] "answered"          "aragorn"           "perils"           
## [67339] "known"             "unknown"           "will"             
## [67342] "grow"              "go"                "must"             
## [67345] "go"                "good"              "delaying"         
## [67348] "passage"           "mountains"         "south"            
## [67351] "passes"            "till"              "one"              
## [67354] "comes"             "gap"               "rohan"            
## [67357] "trust"             "way"               "since"            
## [67360] "news"              "saruman"           "knows"            
## [67363] "side"              "now"               "marshals"         
## [67366] "horse"             "lords"             "serve"            
## [67369] "knows"             "indeed"            "said"             
## [67372] "gandalf"           "another"           "way"              
## [67375] "pass"              "caradhras"         "dark"             
## [67378] "secret"            "way"               "spoken"           
## [67381] "let"               "us"                "speak"            
## [67384] "yet"               "say"               "nothing"          
## [67387] "others"            "beg"               "plain"            
## [67390] "way"               "must"              "decide"           
## [67393] "go"                "answered"          "gandalf"          
## [67396] "let"               "us"                "weigh"            
## [67399] "matter"            "minds"             "others"           
## [67402] "rest"              "sleep"             "said"             
## [67405] "aragorn"           "late"              "afternoon"        
## [67408] "others"            "finishing"         "breakfast"        
## [67411] "gandalf"           "aragorn"           "went"             
## [67414] "aside"             "together"          "stood"            
## [67417] "looking"           "caradhras"         "sides"            
## [67420] "now"               "dark"              "sullen"           
## [67423] "head"              "grey"              "cloud"            
## [67426] "frodo"             "watched"           "wondering"        
## [67429] "way"               "debate"            "go"               
## [67432] "returned"          "company"           "gandalf"          
## [67435] "spoke"             "knew"              "decided"          
## [67438] "face"              "weather"           "high"             
## [67441] "pass"              "relieved"          "guess"            
## [67444] "dark"              "secret"            "way"              
## [67447] "mention"           "seemed"            "fill"             
## [67450] "aragorn"           "dismay"            "frodo"            
## [67453] "glad"              "abandoned"         "signs"            
## [67456] "seen"              "lately"            "said"             
## [67459] "gandalf"           "fear"              "redhorn"          
## [67462] "gate"              "may"               "watched"          
## [67465] "also"              "doubts"            "weather"          
## [67468] "coming"            "behind"            "snow"             
## [67471] "may"               "come"              "must"             
## [67474] "go"                "speed"             "can"              
## [67477] "even"              "will"              "take"             
## [67480] "us"                "two"               "marches"          
## [67483] "reach"             "top"               "pass"             
## [67486] "dark"              "will"              "come"             
## [67489] "early"             "evening"           "must"             
## [67492] "leave"             "soon"              "can"              
## [67495] "get"               "ready"             "will"             
## [67498] "add"               "word"              "advice"           
## [67501] "may"               "said"              "boromir"          
## [67504] "born"              "shadow"            "white"            
## [67507] "mountains"         "know"              "something"        
## [67510] "journeys"          "high"              "places"           
## [67513] "shall"             "meet"              "bitter"           
## [67516] "cold"              "worse"             "come"             
## [67519] "side"              "will"              "help"             
## [67522] "us"                "keep"              "secret"           
## [67525] "frozen"            "death"             "leave"            
## [67528] "still"             "trees"             "bushes"           
## [67531] "us"                "carry"             "faggot"           
## [67534] "wood"              "large"             "can"              
## [67537] "bear"              "bill"              "take"             
## [67540] "bit"               "couldnt"           "lad"              
## [67543] "said"              "sam"               "pony"             
## [67546] "looked"            "mournfully"        "well"             
## [67549] "said"              "gandalf"           "must"             
## [67552] "use"               "wood"              "unless"           
## [67555] "choice"            "fire"              "death"            
## [67558] "company"           "set"               "good"             
## [67561] "speed"             "first"             "soon"             
## [67564] "way"               "became"            "steep"            
## [67567] "difficult"         "twisting"          "climbing"         
## [67570] "road"              "many"              "places"           
## [67573] "almost"            "disappeared"       "blocked"          
## [67576] "many"              "fallen"            "stones"           
## [67579] "night"             "grew"              "deadly"           
## [67582] "dark"              "great"             "clouds"           
## [67585] "bitter"            "wind"              "swirled"          
## [67588] "among"             "rocks"             "midnight"         
## [67591] "climbed"           "knees"             "great"            
## [67594] "mountains"         "narrow"            "path"             
## [67597] "now"               "wound"             "sheer"            
## [67600] "wall"              "cliffs"            "left"             
## [67603] "grim"              "flanks"            "caradhras"        
## [67606] "towered"           "invisible"         "gloom"            
## [67609] "right"             "gulf"              "darkness"         
## [67612] "land"              "fell"              "suddenly"         
## [67615] "deep"              "ravine"            "laboriously"      
## [67618] "climbed"           "sharp"             "slope"            
## [67621] "halted"            "moment"            "top"              
## [67624] "frodo"             "felt"              "soft"             
## [67627] "touch"             "face"              "put"              
## [67630] "arm"               "saw"               "dim"              
## [67633] "white"             "flakes"            "snow"             
## [67636] "settling"          "sleeve"            "went"             
## [67639] "long"              "snow"              "falling"          
## [67642] "fast"              "filling"           "air"              
## [67645] "swirling"          "frodos"            "eyes"             
## [67648] "dark"              "bent"              "shapes"           
## [67651] "gandalf"           "aragorn"           "pace"             
## [67654] "two"               "ahead"             "hardly"           
## [67657] "seen"              "dont"              "like"             
## [67660] "panted"            "sam"               "just"             
## [67663] "behind"            "snows"             "right"            
## [67666] "fine"              "morning"           "like"             
## [67669] "bed"               "falling"           "wish"             
## [67672] "lot"               "go"                "hobbiton"         
## [67675] "folk"              "might"             "welcome"          
## [67678] "except"            "high"              "moors"            
## [67681] "northfarthing"     "heavy"             "fall"             
## [67684] "rare"              "shire"             "regarded"         
## [67687] "pleasant"          "event"             "chance"           
## [67690] "fun"               "living"            "hobbit"           
## [67693] "save"              "bilbo"             "remember"         
## [67696] "fell"              "winter"            "white"            
## [67699] "wolves"            "invaded"           "shire"            
## [67702] "frozen"            "brandywine"        "gandalf"          
## [67705] "halted"            "snow"              "thick"            
## [67708] "hood"              "shoulders"         "already"          
## [67711] "ankle"             "deep"              "boots"            
## [67714] "feared"            "said"              "say"              
## [67717] "now"               "aragorn"           "feared"           
## [67720] "aragorn"           "answered"          "less"             
## [67723] "things"            "knew"              "risk"             
## [67726] "snow"              "though"            "seldom"           
## [67729] "falls"             "heavily"           "far"              
## [67732] "south"             "save"              "high"             
## [67735] "mountains"         "high"              "yet"              
## [67738] "still"             "far"               "paths"            
## [67741] "usually"           "open"              "winter"           
## [67744] "wonder"            "contrivance"       "enemy"            
## [67747] "said"              "boromir"           "say"              
## [67750] "land"              "can"               "govern"           
## [67753] "storms"            "mountains"         "shadow"           
## [67756] "stand"             "upon"              "borders"          
## [67759] "mordor"            "strange"           "powers"           
## [67762] "many"              "allies"            "arm"              
## [67765] "grown"             "long"              "indeed"           
## [67768] "said"              "gimli"             "can"              
## [67771] "draw"              "snow"              "north"            
## [67774] "trouble"           "us"                "three"            
## [67777] "hundred"           "leagues"           "away"             
## [67780] "arm"               "grown"             "long"             
## [67783] "said"              "gandalf"           "halted"           
## [67786] "wind"              "died"              "snow"             
## [67789] "slackened"         "almost"            "ceased"           
## [67792] "tramped"           "gone"              "furlong"          
## [67795] "storm"             "returned"          "fresh"            
## [67798] "fury"              "wind"              "whistled"         
## [67801] "snow"              "became"            "blinding"         
## [67804] "blizzard"          "soon"              "even"             
## [67807] "boromir"           "found"             "hard"             
## [67810] "keep"              "going"             "hobbits"          
## [67813] "bent"              "nearly"            "double"           
## [67816] "toiled"            "along"             "behind"           
## [67819] "taller"            "folk"              "plain"            
## [67822] "go"                "much"              "snow"             
## [67825] "continued"         "frodos"            "feet"             
## [67828] "felt"              "like"              "lead"             
## [67831] "pippin"            "dragging"          "behind"           
## [67834] "even"              "gimli"             "stout"            
## [67837] "dwarf"             "grumbling"         "trudged"          
## [67840] "company"           "halted"            "suddenly"         
## [67843] "come"              "agreement"         "without"          
## [67846] "words"             "spoken"            "heard"            
## [67849] "eerie"             "noises"            "darkness"         
## [67852] "round"             "may"               "trick"            
## [67855] "wind"              "cracks"            "gullies"          
## [67858] "rocky"             "wall"              "sounds"           
## [67861] "shrill"            "cries"             "wild"             
## [67864] "howls"             "laughter"          "stones"           
## [67867] "began"             "fall"              "mountain"         
## [67870] "side"              "whistling"         "heads"            
## [67873] "crashing"          "path"              "beside"           
## [67876] "every"             "now"               "heard"            
## [67879] "dull"              "rumble"            "great"            
## [67882] "boulder"           "rolled"            "hidden"           
## [67885] "heights"           "go"                "tonight"          
## [67888] "said"              "boromir"           "let"              
## [67891] "call"              "wind"              "will"             
## [67894] "fell"              "voices"            "air"              
## [67897] "stones"            "aimed"             "us"               
## [67900] "call"              "wind"              "said"             
## [67903] "aragorn"           "make"              "say"              
## [67906] "untrue"            "many"              "evil"             
## [67909] "unfriendly"        "things"            "world"            
## [67912] "little"            "love"              "go"               
## [67915] "two"               "legs"              "yet"              
## [67918] "league"            "sauron"            "purposes"         
## [67921] "world"             "longer"            "caradhras"        
## [67924] "called"            "cruel"             "ill"              
## [67927] "name"              "said"              "gimli"            
## [67930] "long"              "years"             "ago"              
## [67933] "rumour"            "sauron"            "heard"            
## [67936] "lands"             "matters"           "little"           
## [67939] "enemy"             "beat"              "attack"           
## [67942] "said"              "gandalf"           "can"              
## [67945] "cried"             "pippin"            "miserably"        
## [67948] "leaning"           "merry"             "frodo"            
## [67951] "shivering"         "either"            "stop"             
## [67954] "go"                "back"              "said"             
## [67957] "gandalf"           "good"              "going"            
## [67960] "little"            "higher"            "remember"         
## [67963] "rightly"           "path"              "leaves"           
## [67966] "cliff"             "runs"              "wide"             
## [67969] "shallow"           "trough"            "bottom"           
## [67972] "long"              "hard"              "slope"            
## [67975] "shelter"           "snow"              "stones"           
## [67978] "anything"          "else"              "good"             
## [67981] "going"             "back"              "storm"            
## [67984] "holds"             "said"              "aragorn"          
## [67987] "passed"            "place"             "way"              
## [67990] "offered"           "shelter"           "cliff"            
## [67993] "wall"              "now"               "shelter"          
## [67996] "muttered"          "sam"               "shelter"          
## [67999] "one"               "wall"              "roof"             
## [68002] "make"              "house"             "company"          
## [68005] "now"               "gathered"          "together"         
## [68008] "close"             "cliff"             "faced"            
## [68011] "southwards"        "near"              "bottom"           
## [68014] "leaned"            "little"            "hoped"            
## [68017] "give"              "protection"        "northerly"        
## [68020] "wind"              "falling"           "stones"           
## [68023] "eddying"           "blasts"            "swirled"          
## [68026] "round"             "every"             "side"             
## [68029] "snow"              "flowed"            "ever"             
## [68032] "denser"            "clouds"            "huddled"          
## [68035] "together"          "backs"             "wall"             
## [68038] "bill"              "pony"              "stood"            
## [68041] "patiently"         "dejectedly"        "front"            
## [68044] "hobbits"           "screened"          "little"           
## [68047] "long"              "drifting"          "snow"             
## [68050] "hocks"             "went"              "mounting"         
## [68053] "larger"            "companions"        "hobbits"          
## [68056] "soon"              "entirely"          "buried"           
## [68059] "great"             "sleepiness"        "came"             
## [68062] "frodo"             "felt"              "sinking"          
## [68065] "fast"              "warm"              "hazy"             
## [68068] "dream"             "thought"           "fire"             
## [68071] "heating"           "toes"              "shadows"          
## [68074] "side"              "hearth"            "heard"            
## [68077] "bilbos"            "voice"             "speaking"         
## [68080] "dont"              "think"             "much"             
## [68083] "diary"             "said"              "snowstorms"       
## [68086] "january"           "twelfth"           "need"             
## [68089] "come"              "back"              "report"           
## [68092] "wanted"            "rest"              "sleep"            
## [68095] "bilbo"             "frodo"             "answered"         
## [68098] "effort"            "felt"              "shaken"           
## [68101] "came"              "back"              "painfully"        
## [68104] "wakefulness"       "boromir"           "lifted"           
## [68107] "ground"            "nest"              "snow"             
## [68110] "will"              "death"             "halflings"        
## [68113] "gandalf"           "said"              "boromir"          
## [68116] "useless"           "sit"               "snow"             
## [68119] "goes"              "heads"             "must"             
## [68122] "something"         "save"              "give"             
## [68125] "said"              "gandalf"           "searching"        
## [68128] "pack"              "drawing"           "leathern"         
## [68131] "flask"             "just"              "mouthful"         
## [68134] "us"                "precious"          "miruvor"          
## [68137] "cordial"           "imladris"          "elrond"           
## [68140] "gave"              "parting"           "pass"             
## [68143] "round"             "soon"              "frodo"            
## [68146] "swallowed"         "little"            "warm"             
## [68149] "fragrant"          "liquor"            "felt"             
## [68152] "new"               "strength"          "heart"            
## [68155] "heavy"             "drowsiness"        "left"             
## [68158] "limbs"             "others"            "also"             
## [68161] "revived"           "found"             "fresh"            
## [68164] "hope"              "vigour"            "snow"             
## [68167] "relent"            "whirled"           "thicker"          
## [68170] "ever"              "wind"              "blew"             
## [68173] "louder"            "say"               "fire"             
## [68176] "asked"             "boromir"           "suddenly"         
## [68179] "choice"            "seems"             "near"             
## [68182] "now"               "fire"              "death"            
## [68185] "gandalf"           "doubtless"         "shall"            
## [68188] "hidden"            "unfriendly"        "eyes"             
## [68191] "snow"              "covered"           "us"               
## [68194] "will"              "help"              "us"               
## [68197] "may"               "make"              "fire"             
## [68200] "can"               "answered"          "gandalf"          
## [68203] "watchers"          "can"               "endure"           
## [68206] "storm"             "can"               "see"              
## [68209] "us"                "fire"              "though"           
## [68212] "brought"           "wood"              "kindlings"        
## [68215] "advice"            "boromir"           "passed"           
## [68218] "skill"             "elf"               "even"             
## [68221] "dwarf"             "strike"            "flame"            
## [68224] "hold"              "amid"              "swirling"         
## [68227] "wind"              "catch"             "wet"              
## [68230] "fuel"              "last"              "reluctantly"      
## [68233] "gandalf"           "took"              "hand"             
## [68236] "picking"           "faggot"            "held"             
## [68239] "aloft"             "moment"            "word"             
## [68242] "command"           "naur"              "edraith"          
## [68245] "ammen"             "thrust"            "end"              
## [68248] "staff"             "midst"             "great"            
## [68251] "spout"             "green"             "blue"             
## [68254] "flame"             "sprang"            "wood"             
## [68257] "flared"            "sputtered"         "see"              
## [68260] "least"             "revealed"          "said"             
## [68263] "written"           "gandalf"           "signs"            
## [68266] "can"               "read"              "rivendell"        
## [68269] "mouths"            "anduin"            "company"          
## [68272] "cared"             "longer"            "watchers"         
## [68275] "unfriendly"        "eyes"              "hearts"           
## [68278] "rejoiced"          "see"               "light"            
## [68281] "fire"              "wood"              "burned"           
## [68284] "merrily"           "though"            "round"            
## [68287] "snow"              "hissed"            "pools"            
## [68290] "slush"             "crept"             "feet"             
## [68293] "warmed"            "hands"             "gladly"           
## [68296] "blaze"             "stood"             "stooping"         
## [68299] "circle"            "round"             "little"           
## [68302] "dancing"           "blowing"           "flames"           
## [68305] "red"               "light"             "tired"            
## [68308] "anxious"           "faces"             "behind"           
## [68311] "night"             "like"              "black"            
## [68314] "wall"              "wood"              "burning"          
## [68317] "fast"              "snow"              "still"            
## [68320] "fell"              "fire"              "burned"           
## [68323] "low"               "last"              "faggot"           
## [68326] "thrown"            "night"             "getting"          
## [68329] "old"               "said"              "aragorn"          
## [68332] "dawn"              "far"               "dawn"             
## [68335] "can"               "pierce"            "clouds"           
## [68338] "said"              "gimli"             "boromir"          
## [68341] "stepped"           "circle"            "stared"           
## [68344] "blackness"         "snow"              "growing"          
## [68347] "less"              "said"              "wind"             
## [68350] "quieter"           "frodo"             "gazed"            
## [68353] "wearily"           "flakes"            "still"            
## [68356] "falling"           "dark"              "revealed"         
## [68359] "white"             "moment"            "light"            
## [68362] "dying"             "fire"              "long"             
## [68365] "time"              "see"               "sign"             
## [68368] "slackening"        "suddenly"          "sleep"            
## [68371] "beginning"         "creep"             "aware"            
## [68374] "wind"              "indeed"            "fallen"           
## [68377] "flakes"            "becoming"          "larger"           
## [68380] "fewer"             "slowly"            "dim"              
## [68383] "light"             "began"             "grow"             
## [68386] "last"              "snow"              "stopped"          
## [68389] "altogether"        "light"             "grew"             
## [68392] "stronger"          "showed"            "silent"           
## [68395] "shrouded"          "world"             "refuge"           
## [68398] "white"             "humps"             "domes"            
## [68401] "shapeless"         "deeps"             "beneath"          
## [68404] "path"              "trodden"           "altogether"       
## [68407] "lost"              "heights"           "hidden"           
## [68410] "great"             "clouds"            "still"            
## [68413] "heavy"             "threat"            "snow"             
## [68416] "gimli"             "looked"            "shook"            
## [68419] "head"              "caradhras"         "forgiven"         
## [68422] "us"                "said"              "snow"             
## [68425] "yet"               "fling"             "us"               
## [68428] "go"                "sooner"            "go"               
## [68431] "back"              "better"            "agreed"           
## [68434] "retreat"           "now"               "difficult"        
## [68437] "might"             "well"              "prove"            
## [68440] "impossible"        "paces"             "ashes"            
## [68443] "fire"              "snow"              "lay"              
## [68446] "many"              "feet"              "deep"             
## [68449] "higher"            "heads"             "hobbits"          
## [68452] "places"            "scooped"           "piled"            
## [68455] "wind"              "great"             "drifts"           
## [68458] "cliff"             "gandalf"           "go"               
## [68461] "us"                "bright"            "flame"            
## [68464] "might"             "melt"              "path"             
## [68467] "said"              "legolas"           "storm"            
## [68470] "troubled"          "little"            "alone"            
## [68473] "company"           "remained"          "still"            
## [68476] "light"             "heart"             "elves"            
## [68479] "fly"               "mountains"         "might"            
## [68482] "fetch"             "sun"               "save"             
## [68485] "us"                "answered"          "gandalf"          
## [68488] "must"              "something"         "work"             
## [68491] "burn"              "snow"              "well"             
## [68494] "said"              "boromir"           "heads"            
## [68497] "loss"              "bodies"            "must"             
## [68500] "serve"             "say"               "country"          
## [68503] "strongest"         "us"                "must"             
## [68506] "seek"              "way"               "see"              
## [68509] "though"            "now"               "snow"             
## [68512] "clad"              "path"              "came"             
## [68515] "turned"            "shoulder"          "rock"             
## [68518] "yonder"            "snow"              "first"            
## [68521] "began"             "burden"            "us"               
## [68524] "reach"             "point"             "maybe"            
## [68527] "prove"             "easier"            "beyond"           
## [68530] "furlong"           "guess"             "let"              
## [68533] "us"                "force"             "path"             
## [68536] "thither"           "said"              "aragorn"          
## [68539] "aragorn"           "tallest"           "company"          
## [68542] "boromir"           "little"            "less"             
## [68545] "height"            "broader"           "heavier"          
## [68548] "build"             "led"               "way"              
## [68551] "aragorn"           "followed"          "slowly"           
## [68554] "moved"             "soon"              "toiling"          
## [68557] "heavily"           "places"            "snow"             
## [68560] "breast"            "high"              "often"            
## [68563] "boromir"           "seemed"            "swimming"         
## [68566] "burrowing"         "great"             "arms"             
## [68569] "rather"            "walking"           "legolas"          
## [68572] "watched"           "smile"             "upon"             
## [68575] "lips"              "turned"            "others"           
## [68578] "strongest"         "must"              "seek"             
## [68581] "way"               "say"               "say"              
## [68584] "let"               "ploughman"         "plough"           
## [68587] "choose"            "otter"             "swimming"         
## [68590] "running"           "light"             "grass"            
## [68593] "leaf"              "snow"              "elf"              
## [68596] "sprang"            "forth"             "nimbly"           
## [68599] "frodo"             "noticed"           "first"            
## [68602] "time"              "though"            "long"             
## [68605] "known"             "elf"               "boots"            
## [68608] "wore"              "light"             "shoes"            
## [68611] "always"            "feet"              "made"             
## [68614] "little"            "imprint"           "snow"             
## [68617] "farewell"          "said"              "gandalf"          
## [68620] "go"                "find"              "sun"              
## [68623] "swift"             "runner"            "firm"             
## [68626] "sand"              "shot"              "away"             
## [68629] "quickly"           "overtaking"        "toiling"          
## [68632] "men"               "wave"              "hand"             
## [68635] "passed"            "sped"              "distance"         
## [68638] "vanished"          "round"             "rocky"            
## [68641] "turn"              "others"            "waited"           
## [68644] "huddled"           "together"          "watching"         
## [68647] "boromir"           "aragorn"           "dwindled"         
## [68650] "black"             "specks"            "whiteness"        
## [68653] "length"            "passed"            "sight"            
## [68656] "time"              "dragged"           "clouds"           
## [68659] "lowered"           "now"               "flakes"           
## [68662] "snow"              "came"              "curling"          
## [68665] "hour"              "maybe"             "went"             
## [68668] "though"            "seemed"            "far"              
## [68671] "longer"            "last"              "saw"              
## [68674] "legolas"           "coming"            "back"             
## [68677] "time"              "boromir"           "aragorn"          
## [68680] "reappeared"        "round"             "bend"             
## [68683] "far"               "behind"            "came"             
## [68686] "labouring"         "slope"             "well"             
## [68689] "cried"             "legolas"           "ran"              
## [68692] "brought"           "sun"               "walking"          
## [68695] "blue"              "fields"            "south"            
## [68698] "little"            "wreath"            "snow"             
## [68701] "redhorn"           "hillock"           "troubles"         
## [68704] "brought"           "back"              "gleam"            
## [68707] "good"              "hope"              "doomed"           
## [68710] "go"                "feet"              "greatest"         
## [68713] "wind"              "drift"             "just"             
## [68716] "beyond"            "turn"              "strong"           
## [68719] "men"               "almost"            "buried"           
## [68722] "despaired"         "returned"          "told"             
## [68725] "drift"             "little"            "wider"            
## [68728] "wall"              "side"              "snow"             
## [68731] "suddenly"          "grows"             "less"             
## [68734] "white"             "coverlet"          "cool"             
## [68737] "hobbits"           "toes"              "ah"               
## [68740] "said"              "growled"           "gimli"            
## [68743] "ordinary"          "storm"             "ill"              
## [68746] "will"              "caradhras"         "love"             
## [68749] "elves"             "dwarves"           "drift"            
## [68752] "laid"              "cut"               "escape"           
## [68755] "happily"           "caradhras"         "forgotten"        
## [68758] "men"               "said"              "boromir"          
## [68761] "came"              "moment"            "doughty"          
## [68764] "men"               "may"               "say"              
## [68767] "though"            "lesser"            "men"              
## [68770] "spades"            "might"             "served"           
## [68773] "better"            "still"             "thrust"           
## [68776] "lane"              "drift"             "may"              
## [68779] "grateful"          "run"               "light"            
## [68782] "elves"             "get"               "even"             
## [68785] "cut"               "drift"             "said"             
## [68788] "pippin"            "voicing"           "thought"          
## [68791] "hobbits"           "hope"              "said"             
## [68794] "boromir"           "weary"             "still"            
## [68797] "strength"          "left"              "aragorn"          
## [68800] "will"              "bear"              "little"           
## [68803] "folk"              "others"            "doubt"            
## [68806] "will"              "make"              "shift"            
## [68809] "tread"             "path"              "behind"           
## [68812] "us"                "come"              "master"           
## [68815] "peregrin"          "will"              "begin"            
## [68818] "lifted"            "hobbit"            "cling"            
## [68821] "back"              "shall"             "need"             
## [68824] "arms"              "said"              "strode"           
## [68827] "forward"           "aragorn"           "merry"            
## [68830] "came"              "behind"            "pippin"           
## [68833] "marvelled"         "strength"          "seeing"           
## [68836] "passage"           "already"           "forced"           
## [68839] "tool"              "great"             "limbs"            
## [68842] "even"              "now"               "burdened"         
## [68845] "widening"          "track"             "followed"         
## [68848] "thrusting"         "snow"              "aside"            
## [68851] "went"              "came"              "length"           
## [68854] "great"             "drift"             "flung"            
## [68857] "across"            "mountain"          "path"             
## [68860] "like"              "sheer"             "sudden"           
## [68863] "wall"              "crest"             "sharp"            
## [68866] "shaped"            "knives"            "reared"           
## [68869] "twice"             "height"            "boromir"          
## [68872] "middle"            "passage"           "beaten"           
## [68875] "rising"            "falling"           "like"             
## [68878] "bridge"            "far"               "side"             
## [68881] "merry"             "pippin"            "set"              
## [68884] "waited"            "legolas"           "rest"             
## [68887] "company"           "arrive"            "boromir"          
## [68890] "returned"          "carrying"          "sam"              
## [68893] "behind"            "narrow"            "now"              
## [68896] "well"              "trodden"           "track"            
## [68899] "came"              "gandalf"           "leading"          
## [68902] "bill"              "gimli"             "perched"          
## [68905] "among"             "baggage"           "last"             
## [68908] "came"              "aragorn"           "carrying"         
## [68911] "frodo"             "passed"            "lane"             
## [68914] "hardly"            "frodo"             "touched"          
## [68917] "ground"            "deep"              "rumble"           
## [68920] "rolled"            "fall"              "stones"           
## [68923] "slithering"        "snow"              "spray"            
## [68926] "half"              "blinded"           "company"          
## [68929] "crouched"          "cliff"             "air"              
## [68932] "cleared"           "saw"               "path"             
## [68935] "blocked"           "behind"            "enough"           
## [68938] "enough"            "cried"             "gimli"            
## [68941] "departing"         "quickly"           "may"              
## [68944] "indeed"            "last"              "stroke"           
## [68947] "malice"            "mountain"          "seemed"           
## [68950] "expended"          "caradhras"         "satisfied"        
## [68953] "invaders"          "beaten"            "dare"             
## [68956] "return"            "threat"            "snow"             
## [68959] "lifted"            "clouds"            "began"            
## [68962] "break"             "light"             "grew"             
## [68965] "broader"           "legolas"           "reported"         
## [68968] "found"             "snow"              "became"           
## [68971] "steadily"          "shallow"           "went"             
## [68974] "even"              "hobbits"           "trudge"           
## [68977] "along"             "soon"              "stood"            
## [68980] "flat"              "shelf"             "head"             
## [68983] "steep"             "slope"             "felt"             
## [68986] "first"             "flakes"            "snow"             
## [68989] "night"             "morning"           "now"              
## [68992] "far"               "advanced"          "high"             
## [68995] "place"             "looked"            "back"             
## [68998] "westwards"         "lower"             "lands"            
## [69001] "far"               "away"              "tumble"           
## [69004] "country"           "lay"               "foot"             
## [69007] "mountain"          "dell"              "started"          
## [69010] "climb"             "pass"              "frodos"           
## [69013] "legs"              "ached"             "chilled"          
## [69016] "bone"              "hungry"            "head"             
## [69019] "dizzy"             "thought"           "long"             
## [69022] "painful"           "march"             "downhill"         
## [69025] "black"             "specks"            "swam"             
## [69028] "eyes"              "rubbed"            "black"            
## [69031] "specks"            "remained"          "distance"         
## [69034] "still"             "high"              "lower"            
## [69037] "foothills"         "dark"              "dots"             
## [69040] "circling"          "air"               "birds"            
## [69043] "said"              "aragorn"           "pointing"         
## [69046] "helped"            "now"               "said"             
## [69049] "gandalf"           "whether"           "good"             
## [69052] "evil"              "nothing"           "us"               
## [69055] "must"              "go"                "even"             
## [69058] "knees"             "caradhras"         "will"             
## [69061] "wait"              "another"           "night"            
## [69064] "fall"              "cold"              "wind"             
## [69067] "flowed"            "behind"            "turned"           
## [69070] "backs"             "redhorn"           "gate"             
## [69073] "stumbled"          "wearily"           "slope"            
## [69076] "caradhras"         "defeated"          "chapter"          
## [69079] "journey"           "dark"              "evening"          
## [69082] "grey"              "light"             "waning"           
## [69085] "fast"              "halted"            "night"            
## [69088] "weary"             "mountains"         "veiled"           
## [69091] "deepening"         "dusk"              "wind"             
## [69094] "cold"              "gandalf"           "spared"           
## [69097] "one"               "mouthful"          "miruvor"          
## [69100] "rivendell"         "eaten"             "food"             
## [69103] "called"            "council"           "course"           
## [69106] "go"                "tonight"           "said"             
## [69109] "attack"            "redhorn"           "gate"             
## [69112] "tired"             "us"                "must"             
## [69115] "rest"              "go"                "asked"            
## [69118] "frodo"             "still"             "journey"          
## [69121] "errand"            "us"                "answered"         
## [69124] "gandalf"           "choice"            "go"               
## [69127] "return"            "rivendell"         "pippins"          
## [69130] "face"              "brightened"        "visibly"          
## [69133] "mere"              "mention"           "return"           
## [69136] "rivendell"         "merry"             "sam"              
## [69139] "looked"            "hopefully"         "aragorn"          
## [69142] "boromir"           "made"              "sign"             
## [69145] "frodo"             "looked"            "troubled"         
## [69148] "wish"              "back"              "said"             
## [69151] "can"               "return"            "without"          
## [69154] "shame"             "unless"            "indeed"           
## [69157] "way"               "already"           "defeated"         
## [69160] "right"             "frodo"             "said"             
## [69163] "gandalf"           "go"                "back"             
## [69166] "admit"             "defeat"            "face"             
## [69169] "worse"             "defeat"            "come"             
## [69172] "go"                "back"              "now"              
## [69175] "ring"              "must"              "remain"           
## [69178] "shall"             "able"              "set"              
## [69181] "sooner"            "later"             "rivendell"        
## [69184] "will"              "besieged"          "brief"            
## [69187] "bitter"            "time"              "will"             
## [69190] "destroyed"         "ringwraiths"       "deadly"           
## [69193] "enemies"           "shadows"           "yet"              
## [69196] "power"             "terror"            "possess"          
## [69199] "ruling"            "ring"              "masters"          
## [69202] "hand"              "must"              "go"               
## [69205] "way"               "said"              "frodo"            
## [69208] "sigh"              "sam"               "sank"             
## [69211] "back"              "gloom"             "way"              
## [69214] "may"               "attempt"           "said"             
## [69217] "gandalf"           "thought"           "beginning"        
## [69220] "first"             "considered"        "journey"          
## [69223] "try"               "pleasant"          "way"              
## [69226] "spoken"            "company"           "aragorn"          
## [69229] "pass"              "mountains"         "least"            
## [69232] "tried"             "worse"             "road"             
## [69235] "redhorn"           "gate"              "must"             
## [69238] "evil"              "indeed"            "said"             
## [69241] "merry"             "better"            "tell"             
## [69244] "us"                "let"               "us"               
## [69247] "know"              "worst"             "road"             
## [69250] "speak"             "leads"             "mines"            
## [69253] "moria"             "said"              "gandalf"          
## [69256] "gimli"             "lifted"            "head"             
## [69259] "smouldering"       "fire"              "eyes"             
## [69262] "others"            "dread"             "fell"             
## [69265] "mention"           "name"              "even"             
## [69268] "hobbits"           "legend"            "vague"            
## [69271] "fear"              "road"              "may"              
## [69274] "lead"              "moria"             "can"              
## [69277] "hope"              "will"              "lead"             
## [69280] "moria"             "said"              "aragorn"          
## [69283] "darkly"            "name"              "ill"              
## [69286] "omen"              "said"              "boromir"          
## [69289] "see"               "need"              "go"               
## [69292] "cross"             "mountains"         "let"              
## [69295] "us"                "journey"           "southwards"       
## [69298] "come"              "gap"               "rohan"            
## [69301] "men"               "friendly"          "people"           
## [69304] "taking"            "road"              "followed"         
## [69307] "way"               "hither"            "might"            
## [69310] "pass"              "cross"             "isen"             
## [69313] "langstrand"        "lebennin"          "come"             
## [69316] "gondor"            "regions"           "nigh"             
## [69319] "sea"               "things"            "changed"          
## [69322] "since"             "came"              "north"            
## [69325] "boromir"           "answered"          "gandalf"          
## [69328] "hear"              "told"              "saruman"          
## [69331] "may"               "business"          "ere"              
## [69334] "ring"              "must"              "come"             
## [69337] "near"              "isengard"          "can"              
## [69340] "means"             "prevented"         "gap"              
## [69343] "rohan"             "closed"            "us"               
## [69346] "go"                "bearer"            "longer"           
## [69349] "road"              "afford"            "time"             
## [69352] "might"             "spend"             "year"             
## [69355] "journey"           "pass"              "many"             
## [69358] "lands"             "empty"             "harbourless"      
## [69361] "yet"               "safe"              "watchful"         
## [69364] "eyes"              "saruman"           "enemy"            
## [69367] "came"              "north"             "boromir"          
## [69370] "enemys"            "eyes"              "one"              
## [69373] "stray"             "wanderer"          "south"            
## [69376] "matter"            "small"             "concern"          
## [69379] "mind"              "busy"              "pursuit"          
## [69382] "ring"              "return"            "now"              
## [69385] "member"            "rings"             "company"          
## [69388] "peril"             "long"              "remain"           
## [69391] "us"                "danger"            "will"             
## [69394] "increase"          "every"             "league"           
## [69397] "go"                "south"             "naked"            
## [69400] "sky"               "since"             "open"             
## [69403] "attempt"           "mountain"          "pass"             
## [69406] "plight"            "become"            "desperate"        
## [69409] "fear"              "see"               "now"              
## [69412] "little"            "hope"              "soon"             
## [69415] "vanish"            "sight"             "cover"            
## [69418] "trail"             "therefore"         "advise"           
## [69421] "go"                "neither"           "mountains"        
## [69424] "round"             "road"              "rate"             
## [69427] "enemy"             "will"              "least"            
## [69430] "expect"            "us"                "take"             
## [69433] "know"              "expects"           "said"             
## [69436] "boromir"           "may"               "watch"            
## [69439] "roads"             "likely"            "unlikely"         
## [69442] "case"              "enter"             "moria"            
## [69445] "walk"              "trap"              "hardly"           
## [69448] "better"            "knocking"          "gates"            
## [69451] "dark"              "tower"             "name"             
## [69454] "moria"             "black"             "speak"            
## [69457] "know"              "liken"             "moria"            
## [69460] "stronghold"        "sauron"            "answered"         
## [69463] "gandalf"           "alone"             "ever"             
## [69466] "dungeons"          "dark"              "lord"             
## [69469] "older"             "lesser"            "dwelling"         
## [69472] "dol"               "guldur"            "pass"             
## [69475] "gates"             "barad"             "dûr"              
## [69478] "return"            "lead"              "moria"            
## [69481] "hope"              "coming"            "orcs"             
## [69484] "may"               "prove"             "ill"              
## [69487] "us"                "true"              "orcs"             
## [69490] "misty"             "mountains"         "scattered"        
## [69493] "destroyed"         "battle"            "five"             
## [69496] "armies"            "eagles"            "report"           
## [69499] "orcs"              "gathering"         "afar"             
## [69502] "hope"              "moria"             "still"            
## [69505] "free"              "even"              "chance"           
## [69508] "dwarves"           "deep"              "hall"             
## [69511] "fathers"           "balin"             "son"              
## [69514] "fundin"            "may"               "found"            
## [69517] "however"           "may"               "prove"            
## [69520] "one"               "must"              "tread"            
## [69523] "path"              "need"              "chooses"          
## [69526] "will"              "tread"             "path"             
## [69529] "gandalf"           "said"              "gimli"            
## [69532] "will"              "go"                "look"             
## [69535] "halls"             "durin"             "whatever"         
## [69538] "may"               "wait"              "can"              
## [69541] "find"              "doors"             "shut"             
## [69544] "good"              "gimli"             "said"             
## [69547] "gandalf"           "encourage"         "will"             
## [69550] "seek"              "hidden"            "doors"            
## [69553] "together"          "will"              "come"             
## [69556] "ruins"             "dwarves"           "dwarfs"           
## [69559] "head"              "will"              "less"             
## [69562] "easy"              "bewilder"          "elves"            
## [69565] "men"               "hobbits"           "yet"              
## [69568] "will"              "first"             "time"             
## [69571] "moria"             "sought"            "long"             
## [69574] "thráin"            "son"               "thrór"            
## [69577] "lost"              "passed"            "came"             
## [69580] "alive"             "passed"            "dimrill"          
## [69583] "gate"              "said"              "aragorn"          
## [69586] "quietly"           "though"            "also"             
## [69589] "came"              "memory"            "evil"             
## [69592] "wish"              "enter"             "moria"            
## [69595] "second"            "time"              "dont"             
## [69598] "wish"              "enter"             "even"             
## [69601] "said"              "pippin"            "muttered"         
## [69604] "sam"               "course"            "said"             
## [69607] "gandalf"           "question"          "will"             
## [69610] "follow"            "lead"              "will"             
## [69613] "said"              "gimli"             "eagerly"          
## [69616] "will"              "said"              "aragorn"          
## [69619] "heavily"           "followed"          "lead"             
## [69622] "almost"            "disaster"          "snow"             
## [69625] "said"              "word"              "blame"            
## [69628] "will"              "follow"            "lead"             
## [69631] "now"               "last"              "warning"          
## [69634] "move"              "ring"              "us"               
## [69637] "others"            "thinking"          "now"              
## [69640] "gandalf"           "say"               "pass"             
## [69643] "doors"             "moria"             "beware"           
## [69646] "will"              "go"                "said"             
## [69649] "boromir"           "unless"            "vote"             
## [69652] "whole"             "company"           "legolas"          
## [69655] "little"            "folk"              "say"              
## [69658] "ring"              "bearers"           "voice"            
## [69661] "surely"            "heard"             "wish"             
## [69664] "go"                "moria"             "said"             
## [69667] "legolas"           "hobbits"           "said"             
## [69670] "nothing"           "sam"               "looked"           
## [69673] "frodo"             "last"              "frodo"            
## [69676] "spoke"             "wish"              "go"               
## [69679] "said"              "neither"           "wish"             
## [69682] "refuse"            "advice"            "gandalf"          
## [69685] "beg"               "vote"              "slept"            
## [69688] "gandalf"           "will"              "get"              
## [69691] "votes"             "easier"            "light"            
## [69694] "morning"           "cold"              "gloom"            
## [69697] "wind"              "howls"             "words"            
## [69700] "fell"              "silent"            "thought"          
## [69703] "heard"             "wind"              "hissing"          
## [69706] "among"             "rocks"             "trees"            
## [69709] "howling"           "wailing"           "round"            
## [69712] "empty"             "spaces"            "night"            
## [69715] "suddenly"          "aragorn"           "leapt"            
## [69718] "feet"              "wind"              "howls"            
## [69721] "cried"             "howling"           "wolf"             
## [69724] "voices"            "wargs"             "come"             
## [69727] "west"              "mountains"         "need"             
## [69730] "wait"              "morning"           "said"             
## [69733] "gandalf"           "said"              "hunt"             
## [69736] "even"              "live"              "see"              
## [69739] "dawn"              "now"               "will"             
## [69742] "wish"              "journey"           "south"            
## [69745] "night"             "wild"              "wolves"           
## [69748] "trail"             "far"               "moria"            
## [69751] "asked"             "boromir"           "door"             
## [69754] "south"             "west"              "caradhras"        
## [69757] "fifteen"           "miles"             "crow"             
## [69760] "flies"             "maybe"             "twenty"           
## [69763] "wolf"              "runs"              "answered"         
## [69766] "gandalf"           "grimly"            "let"              
## [69769] "us"                "start"             "soon"             
## [69772] "light"             "tomorrow"          "can"              
## [69775] "said"              "boromir"           "wolf"             
## [69778] "one"               "hears"             "worse"            
## [69781] "orc"               "one"               "fears"            
## [69784] "true"              "said"              "aragorn"          
## [69787] "loosening"         "sword"             "sheath"           
## [69790] "warg"              "howls"             "also"             
## [69793] "orc"               "prowls"            "wish"             
## [69796] "taken"             "elronds"           "advice"           
## [69799] "muttered"          "pippin"            "sam"              
## [69802] "good"              "enough"            "breed"            
## [69805] "bandobras"         "bullroarer"        "howls"            
## [69808] "freeze"            "blood"             "dont"             
## [69811] "ever"              "remember"          "feeling"          
## [69814] "wretched"          "hearts"            "right"            
## [69817] "toes"              "mr"                "pippin"           
## [69820] "said"              "sam"               "arent"            
## [69823] "etten"             "yet"               "stout"            
## [69826] "folk"              "us"                "whatever"         
## [69829] "may"               "store"             "old"              
## [69832] "gandalf"           "ill"               "wager"            
## [69835] "isnt"              "wolfs"             "belly"            
## [69838] "defence"           "night"             "company"          
## [69841] "climbed"           "top"               "small"            
## [69844] "hill"              "sheltering"        "crowned"          
## [69847] "knot"              "old"               "twisted"          
## [69850] "trees"             "lay"               "broken"           
## [69853] "circle"            "boulder"           "stones"           
## [69856] "midst"             "lit"               "fire"             
## [69859] "hope"              "darkness"          "silence"          
## [69862] "keep"              "trail"             "discovery"        
## [69865] "hunting"           "packs"             "round"            
## [69868] "fire"              "sat"               "guard"            
## [69871] "dozed"             "uneasily"          "poor"             
## [69874] "bill"              "pony"              "trembled"         
## [69877] "sweated"           "stood"             "howling"          
## [69880] "wolves"            "now"               "round"            
## [69883] "sometimes"         "nearer"            "sometimes"        
## [69886] "dead"              "night"             "many"             
## [69889] "shining"           "eyes"              "seen"             
## [69892] "peering"           "brow"              "hill"             
## [69895] "advanced"          "almost"            "ring"             
## [69898] "stones"            "gap"               "circle"           
## [69901] "great"             "dark"              "wolf"             
## [69904] "shape"             "seen"              "halted"           
## [69907] "gazing"            "shuddering"        "howl"             
## [69910] "broke"             "captain"           "summoning"        
## [69913] "pack"              "assault"           "gandalf"          
## [69916] "stood"             "strode"            "forward"          
## [69919] "holding"           "staff"             "aloft"            
## [69922] "listen"            "hound"             "sauron"           
## [69925] "cried"             "gandalf"           "fly"              
## [69928] "value"             "foul"              "skin"             
## [69931] "will"              "shrivel"           "tail"             
## [69934] "snout"             "come"              "within"           
## [69937] "ring"              "wolf"              "snarled"          
## [69940] "sprang"            "towards"           "great"            
## [69943] "leap"              "moment"            "sharp"            
## [69946] "twang"             "legolas"           "loosed"           
## [69949] "bow"               "hideous"           "yell"             
## [69952] "leaping"           "shape"             "thudded"          
## [69955] "ground"            "elvish"            "arrow"            
## [69958] "pierced"           "throat"            "watching"         
## [69961] "eyes"              "suddenly"          "extinguished"     
## [69964] "gandalf"           "aragorn"           "strode"           
## [69967] "forward"           "hill"              "deserted"         
## [69970] "hunting"           "packs"             "fled"             
## [69973] "darkness"          "grew"              "silent"           
## [69976] "cry"               "came"              "sighing"          
## [69979] "wind"              "night"             "old"              
## [69982] "westward"          "waning"            "moon"             
## [69985] "setting"           "gleaming"          "fitfully"         
## [69988] "breaking"          "clouds"            "suddenly"         
## [69991] "frodo"             "started"           "sleep"            
## [69994] "without"           "warning"           "storm"            
## [69997] "howls"             "broke"             "fierce"           
## [70000] "wild"              "camp"              "great"            
## [70003] "host"              "wargs"             "gathered"         
## [70006] "silently"          "now"               "attacking"        
## [70009] "every"             "side"              "fling"            
## [70012] "fuel"              "fire"              "cried"            
## [70015] "gandalf"           "hobbits"           "draw"             
## [70018] "blades"            "stand"             "back"             
## [70021] "back"              "leaping"           "light"            
## [70024] "fresh"             "wood"              "blazed"           
## [70027] "frodo"             "saw"               "many"             
## [70030] "grey"              "shapes"            "spring"           
## [70033] "ring"              "stones"            "followed"         
## [70036] "throat"            "one"               "huge"             
## [70039] "leader"            "aragorn"           "passed"           
## [70042] "sword"             "thrust"            "great"            
## [70045] "sweep"             "boromir"           "hewed"            
## [70048] "head"              "another"           "beside"           
## [70051] "gimli"             "stood"             "stout"            
## [70054] "legs"              "apart"             "wielding"         
## [70057] "dwarf"             "axe"               "bow"              
## [70060] "legolas"           "singing"           "wavering"         
## [70063] "firelight"         "gandalf"           "seemed"           
## [70066] "suddenly"          "grow"              "rose"             
## [70069] "great"             "menacing"          "shape"            
## [70072] "like"              "monument"          "ancient"          
## [70075] "king"              "stone"             "set"              
## [70078] "upon"              "hill"              "stooping"         
## [70081] "like"              "cloud"             "lifted"           
## [70084] "burning"           "branch"            "strode"           
## [70087] "meet"              "wolves"            "gave"             
## [70090] "back"              "high"              "air"              
## [70093] "tossed"            "blazing"           "brand"            
## [70096] "flared"            "sudden"            "white"            
## [70099] "radiance"          "like"              "lightning"        
## [70102] "voice"             "rolled"            "like"             
## [70105] "thunder"           "naur"              "edraith"          
## [70108] "ammen"             "naur"              "dan"              
## [70111] "ngaurhoth"         "cried"             "roar"             
## [70114] "crackle"           "tree"              "burst"            
## [70117] "leaf"              "bloom"             "blinding"         
## [70120] "flame"             "fire"              "leapt"            
## [70123] "tree"              "top"               "tree"             
## [70126] "top"               "whole"             "hill"             
## [70129] "crowned"           "dazzling"          "light"            
## [70132] "swords"            "knives"            "defenders"        
## [70135] "shone"             "flickered"         "last"             
## [70138] "arrow"             "legolas"           "kindled"          
## [70141] "air"               "flew"              "plunged"          
## [70144] "burning"           "heart"             "great"            
## [70147] "wolf"              "chieftain"         "others"           
## [70150] "fled"              "slowly"            "fire"             
## [70153] "died"              "till"              "nothing"          
## [70156] "left"              "falling"           "ash"              
## [70159] "sparks"            "bitter"            "smoke"            
## [70162] "curled"            "burned"            "tree"             
## [70165] "stumps"            "blew"              "darkly"           
## [70168] "hill"              "first"             "light"            
## [70171] "dawn"              "came"              "dimly"            
## [70174] "sky"               "enemies"           "routed"           
## [70177] "return"            "tell"              "mr"               
## [70180] "pippin"            "said"              "sam"              
## [70183] "shething"          "sword"             "wolves"           
## [70186] "wont"              "get"               "eye"              
## [70189] "opener"            "mistake"           "nearly"           
## [70192] "singed"            "hair"              "head"             
## [70195] "full"              "light"             "morning"          
## [70198] "came"              "signs"             "wolves"           
## [70201] "found"             "looked"            "vain"             
## [70204] "bodies"            "dead"              "trace"            
## [70207] "fight"             "remained"          "charred"          
## [70210] "trees"             "arrows"            "legolas"          
## [70213] "lying"             "hill"              "top"              
## [70216] "undamaged"         "save"              "one"              
## [70219] "point"             "left"              "feared"           
## [70222] "said"              "gandalf"           "ordinary"         
## [70225] "wolves"            "hunting"           "food"             
## [70228] "wilderness"        "let"               "us"               
## [70231] "eat"               "quickly"           "go"               
## [70234] "day"               "weather"           "changed"          
## [70237] "almost"            "command"           "power"            
## [70240] "longer"            "use"               "snow"             
## [70243] "since"             "retreated"         "pass"             
## [70246] "power"             "wished"            "now"              
## [70249] "clear"             "light"             "things"           
## [70252] "moved"             "wild"              "seen"             
## [70255] "far"               "away"              "wind"             
## [70258] "turning"           "north"             "north"            
## [70261] "west"              "night"             "now"              
## [70264] "failed"            "clouds"            "vanished"         
## [70267] "southwards"        "sky"               "opened"           
## [70270] "high"              "blue"              "stood"            
## [70273] "upon"              "hill"              "side"             
## [70276] "ready"             "depart"            "pale"             
## [70279] "sunlight"          "gleamed"           "mountain"         
## [70282] "tops"              "must"              "reach"            
## [70285] "doors"             "sunset"            "said"             
## [70288] "gandalf"           "fear"              "shall"            
## [70291] "reach"             "far"               "path"             
## [70294] "may"               "winding"           "aragorn"          
## [70297] "guide"             "us"                "seldom"           
## [70300] "walked"            "country"           "west"             
## [70303] "wall"              "moria"             "long"             
## [70306] "ago"               "lies"              "said"             
## [70309] "pointing"          "away"              "south"            
## [70312] "eastwards"         "mountains"         "sides"            
## [70315] "fell"              "sheer"             "shadows"          
## [70318] "feet"              "distance"          "dimly"            
## [70321] "seen"              "line"              "bare"             
## [70324] "cliffs"            "midst"             "taller"           
## [70327] "rest"              "one"               "great"            
## [70330] "grey"              "wall"              "left"             
## [70333] "pass"              "led"               "southwards"       
## [70336] "back"              "starting"          "point"            
## [70339] "may"               "noticed"           "well"             
## [70342] "now"               "several"           "miles"            
## [70345] "less"              "cross"             "haste"            
## [70348] "needed"            "let"               "us"               
## [70351] "go"                "know"              "hope"             
## [70354] "said"              "boromir"           "grimly"           
## [70357] "gandalf"           "will"              "find"             
## [70360] "seeks"             "coming"            "cliff"            
## [70363] "shall"             "find"              "gates"            
## [70366] "lost"              "ever"              "choices"          
## [70369] "seem"              "ill"               "caught"           
## [70372] "wolves"            "wall"              "likeliest"        
## [70375] "chance"            "lead"              "gimli"            
## [70378] "now"               "walked"            "ahead"            
## [70381] "wizards"           "side"              "eager"            
## [70384] "come"              "moria"             "together"         
## [70387] "led"               "company"           "back"             
## [70390] "towards"           "mountains"         "road"             
## [70393] "old"               "moria"             "west"             
## [70396] "lain"              "along"             "course"           
## [70399] "stream"            "sirannon"          "ran"              
## [70402] "feet"              "cliffs"            "near"             
## [70405] "doors"             "stood"             "either"           
## [70408] "gandalf"           "astray"            "else"             
## [70411] "land"              "changed"           "recent"           
## [70414] "years"             "strike"            "stream"           
## [70417] "looked"            "find"              "miles"            
## [70420] "southwards"        "start"             "morning"          
## [70423] "passing"           "towards"           "noon"             
## [70426] "still"             "company"           "wandered"         
## [70429] "scrambled"         "barren"            "country"          
## [70432] "red"               "stones"            "nowhere"          
## [70435] "see"               "gleam"             "water"            
## [70438] "hear"              "sound"             "bleak"            
## [70441] "dry"               "hearts"            "sank"             
## [70444] "saw"               "living"            "thing"            
## [70447] "bird"              "sky"               "night"            
## [70450] "bring"             "caught"            "lost"             
## [70453] "land"              "none"              "cared"            
## [70456] "think"             "suddenly"          "gimli"            
## [70459] "pressed"           "ahead"             "called"           
## [70462] "back"              "standing"          "knoll"            
## [70465] "pointing"          "right"             "hurrying"         
## [70468] "saw"               "deep"              "narrow"           
## [70471] "channel"           "empty"             "silent"           
## [70474] "hardly"            "trickle"           "water"            
## [70477] "flowed"            "among"             "brown"            
## [70480] "red"               "stained"           "stones"           
## [70483] "bed"               "near"              "side"             
## [70486] "path"              "much"              "broken"           
## [70489] "decayed"           "wound"             "way"              
## [70492] "among"             "ruined"            "walls"            
## [70495] "paving"            "stones"            "ancient"          
## [70498] "highroad"          "ah"                "last"             
## [70501] "said"              "gandalf"           "stream"           
## [70504] "ran"               "sirannon"          "gate"             
## [70507] "stream"            "used"              "call"             
## [70510] "happened"          "water"             "guess"            
## [70513] "used"              "swift"             "noisy"            
## [70516] "come"              "must"              "hurry"            
## [70519] "late"              "company"           "footsore"         
## [70522] "tired"             "trudged"           "doggedly"         
## [70525] "along"             "rough"             "winding"          
## [70528] "track"             "many"              "miles"            
## [70531] "sun"               "turned"            "noon"             
## [70534] "began"             "go"                "west"             
## [70537] "brief"             "halt"              "hasty"            
## [70540] "meal"              "went"              "mountains"        
## [70543] "frowned"           "path"              "lay"              
## [70546] "deep"              "trough"            "land"             
## [70549] "see"               "higher"            "shoulders"        
## [70552] "far"               "eastward"          "peaks"            
## [70555] "length"            "came"              "sharp"            
## [70558] "bend"              "road"              "veering"          
## [70561] "southwards"        "brink"             "channel"          
## [70564] "steep"             "fall"              "land"             
## [70567] "left"              "turned"            "went"             
## [70570] "due"               "east"              "rounding"         
## [70573] "corner"            "saw"               "low"              
## [70576] "cliff"             "five"              "fathoms"          
## [70579] "high"              "broken"            "jagged"           
## [70582] "top"               "trickling"         "water"            
## [70585] "dripped"           "wide"              "cleft"            
## [70588] "seemed"            "carved"            "fall"             
## [70591] "strong"            "full"              "indeed"           
## [70594] "things"            "changed"           "said"             
## [70597] "gandalf"           "mistaking"         "place"            
## [70600] "remains"           "stair"             "falls"            
## [70603] "remember"          "right"             "flight"           
## [70606] "steps"             "cut"               "rock"             
## [70609] "side"              "main"              "road"             
## [70612] "wound"             "away"              "left"             
## [70615] "climbed"           "several"           "loops"            
## [70618] "level"             "ground"            "top"              
## [70621] "used"              "shallow"           "valley"           
## [70624] "beyond"            "falls"             "right"            
## [70627] "walls"             "moria"             "sirannon"         
## [70630] "flowed"            "road"              "beside"           
## [70633] "let"               "us"                "go"               
## [70636] "see"               "things"            "like"             
## [70639] "now"               "found"             "stone"            
## [70642] "steps"             "without"           "difficulty"       
## [70645] "gimli"             "sprang"            "swiftly"          
## [70648] "followed"          "gandalf"           "frodo"            
## [70651] "reached"           "top"               "saw"              
## [70654] "go"                "way"               "reason"           
## [70657] "drying"            "gate"              "stream"           
## [70660] "revealed"          "behind"            "sinking"          
## [70663] "sun"               "filled"            "cool"             
## [70666] "western"           "sky"               "glimmering"       
## [70669] "gold"              "stretched"         "dark"             
## [70672] "still"             "lake"              "neither"          
## [70675] "sky"               "sunset"            "reflected"        
## [70678] "sullen"            "surface"           "sirannon"         
## [70681] "dammed"            "filled"            "valley"           
## [70684] "beyond"            "ominous"           "water"            
## [70687] "reared"            "vast"              "cliffs"           
## [70690] "stern"             "faces"             "pallid"           
## [70693] "fading"            "light"             "final"            
## [70696] "impassable"        "sign"              "gate"             
## [70699] "entrance"          "fissure"           "crack"            
## [70702] "frodo"             "see"               "frowning"         
## [70705] "stone"             "walls"             "moria"            
## [70708] "said"              "gandalf"           "pointing"         
## [70711] "across"            "water"             "gate"             
## [70714] "stood"             "upon"              "time"             
## [70717] "elven"             "door"              "end"              
## [70720] "road"              "hollin"            "come"             
## [70723] "way"               "blocked"           "none"             
## [70726] "company"           "guess"             "will"             
## [70729] "wish"              "swim"              "gloomy"           
## [70732] "water"             "end"               "day"              
## [70735] "unwholesome"       "look"              "must"             
## [70738] "find"              "way"               "round"            
## [70741] "northern"          "edge"              "said"             
## [70744] "gimli"             "first"             "thing"            
## [70747] "company"           "climb"             "main"             
## [70750] "path"              "see"               "will"             
## [70753] "lead"              "us"                "even"             
## [70756] "lake"              "get"               "baggage"          
## [70759] "pony"              "stair"             "case"             
## [70762] "take"              "poor"              "beast"            
## [70765] "mines"             "said"              "gandalf"          
## [70768] "road"              "mountains"         "dark"             
## [70771] "road"              "places"            "narrow"           
## [70774] "steep"             "tread"             "even"             
## [70777] "can"               "poor"              "old"              
## [70780] "bill"              "said"              "frodo"            
## [70783] "thought"           "poor"              "sam"              
## [70786] "wonder"            "will"              "say"              
## [70789] "sorry"             "said"              "gandalf"          
## [70792] "poor"              "bill"              "useful"           
## [70795] "companion"         "goes"              "heart"            
## [70798] "turn"              "adrift"            "now"              
## [70801] "travelled"         "lighter"           "brought"          
## [70804] "animal"            "least"             "one"              
## [70807] "sam"               "fond"              "way"              
## [70810] "feared"            "along"             "obliged"          
## [70813] "take"              "road"              "day"              
## [70816] "drawing"           "end"               "cold"             
## [70819] "stars"             "glinting"          "sky"              
## [70822] "high"              "sunset"            "company"          
## [70825] "speed"             "climbed"           "slopes"           
## [70828] "reached"           "side"              "lake"             
## [70831] "breadth"           "looked"            "two"              
## [70834] "three"             "furlongs"          "widest"           
## [70837] "point"             "far"               "stretched"        
## [70840] "away"              "southward"         "see"              
## [70843] "failing"           "light"             "northern"         
## [70846] "end"               "half"              "mile"             
## [70849] "stood"             "stony"             "ridges"           
## [70852] "enclosed"          "valley"            "waters"           
## [70855] "edge"              "rim"               "open"             
## [70858] "ground"            "hurried"           "forward"          
## [70861] "still"             "mile"              "two"              
## [70864] "go"                "reach"             "point"            
## [70867] "far"               "shore"             "gandalf"          
## [70870] "making"            "still"             "find"             
## [70873] "doors"             "came"              "northernmost"     
## [70876] "corner"            "lake"              "found"            
## [70879] "narrow"            "creek"             "barred"           
## [70882] "way"               "green"             "stagnant"         
## [70885] "thrust"            "like"              "slimy"            
## [70888] "arm"               "towards"           "enclosing"        
## [70891] "hills"             "gimli"             "strode"           
## [70894] "forward"           "undeterred"        "found"            
## [70897] "water"             "shallow"           "ankle"            
## [70900] "deep"              "edge"              "behind"           
## [70903] "walked"            "file"              "threading"        
## [70906] "way"               "care"              "weedy"            
## [70909] "pools"             "sliding"           "greasy"           
## [70912] "stones"            "footing"           "treacherous"      
## [70915] "frodo"             "shuddered"         "disgust"          
## [70918] "touch"             "dark"              "unclean"          
## [70921] "water"             "feet"              "sam"              
## [70924] "last"              "company"           "led"              
## [70927] "bill"              "dry"               "ground"           
## [70930] "far"               "side"              "came"             
## [70933] "soft"              "sound"             "swish"            
## [70936] "followed"          "plop"              "fish"             
## [70939] "disturbed"         "still"             "surface"          
## [70942] "water"             "turning"           "quickly"          
## [70945] "saw"               "ripples"           "black"            
## [70948] "edged"             "shadow"            "waning"           
## [70951] "light"             "great"             "rings"            
## [70954] "widening"          "outwards"          "point"            
## [70957] "far"               "lake"              "bubbling"         
## [70960] "noise"             "silence"           "dusk"             
## [70963] "deepened"          "last"              "gleams"           
## [70966] "sunset"            "veiled"            "cloud"            
## [70969] "gandalf"           "now"               "pressed"          
## [70972] "great"             "pace"              "others"           
## [70975] "followed"          "quickly"           "reached"          
## [70978] "strip"             "dry"               "land"             
## [70981] "lake"              "cliffs"            "narrow"           
## [70984] "often"             "hardly"            "dozen"            
## [70987] "yards"             "across"            "encumbered"       
## [70990] "fallen"            "rock"              "stones"           
## [70993] "found"             "way"               "hugging"          
## [70996] "cliff"             "keeping"           "far"              
## [70999] "dark"              "water"             "might"            
## [71002] "mile"              "southwards"        "along"            
## [71005] "shore"             "came"              "upon"             
## [71008] "holly"             "trees"             "stumps"           
## [71011] "dead"              "boughs"            "rotting"          
## [71014] "shallows"          "remains"           "seemed"           
## [71017] "old"               "thickets"          "hedge"            
## [71020] "lined"             "road"              "across"           
## [71023] "drowned"           "valley"            "close"            
## [71026] "cliff"             "stood"             "still"            
## [71029] "strong"            "living"            "two"              
## [71032] "tall"              "trees"             "larger"           
## [71035] "trees"             "holly"             "frodo"            
## [71038] "ever"              "seen"              "imagined"         
## [71041] "great"             "roots"             "spread"           
## [71044] "wall"              "water"             "looming"          
## [71047] "cliffs"            "looked"            "like"             
## [71050] "mere"              "bushes"            "seen"             
## [71053] "far"               "top"               "stair"            
## [71056] "now"               "towered"           "overhead"         
## [71059] "stiff"             "dark"              "silent"           
## [71062] "throwing"          "deep"              "night"            
## [71065] "shadows"           "feet"              "standing"         
## [71068] "like"              "sentinel"          "pillars"          
## [71071] "end"               "road"              "well"             
## [71074] "last"              "said"              "gandalf"          
## [71077] "elven"             "way"               "hollin"           
## [71080] "ended"             "holly"             "token"            
## [71083] "people"            "land"              "planted"          
## [71086] "mark"              "end"               "domain"           
## [71089] "west"              "door"              "made"             
## [71092] "chiefly"           "use"               "traffic"          
## [71095] "lords"             "moria"             "happier"          
## [71098] "days"              "still"             "close"            
## [71101] "friendship"        "times"             "folk"             
## [71104] "different"         "race"              "even"             
## [71107] "dwarves"           "elves"             "fault"            
## [71110] "dwarves"           "friendship"        "waned"            
## [71113] "said"              "gimli"             "heard"            
## [71116] "fault"             "elves"             "said"             
## [71119] "legolas"           "heard"             "said"             
## [71122] "gandalf"           "will"              "give"             
## [71125] "judgement"         "now"               "beg"              
## [71128] "two"               "legolas"           "gimli"            
## [71131] "least"             "friends"           "help"             
## [71134] "need"              "doors"             "shut"             
## [71137] "hidden"            "sooner"            "find"             
## [71140] "better"            "night"             "hand"             
## [71143] "turning"           "others"            "said"             
## [71146] "searching"         "will"              "make"             
## [71149] "ready"             "enter"             "mines"            
## [71152] "fear"              "must"              "say"              
## [71155] "farewell"          "good"              "beast"            
## [71158] "burden"            "must"              "lay"              
## [71161] "aside"             "much"              "stuff"            
## [71164] "brought"           "bitter"            "weather"          
## [71167] "will"              "need"              "inside"           
## [71170] "hope"              "come"              "journey"          
## [71173] "south"             "instead"           "us"               
## [71176] "must"              "take"              "share"            
## [71179] "pony"              "carried"           "especially"       
## [71182] "food"              "water"             "skins"            
## [71185] "cant"              "leave"             "poor"             
## [71188] "old"               "bill"              "behind"           
## [71191] "forsaken"          "place"             "mr"               
## [71194] "gandalf"           "cried"             "sam"              
## [71197] "angry"             "distressed"        "wont"             
## [71200] "thats"             "flat"              "come"             
## [71203] "far"               "sorry"             "sam"              
## [71206] "said"              "wizard"            "door"             
## [71209] "opens"             "think"             "will"             
## [71212] "able"              "drag"              "bill"             
## [71215] "inside"            "long"              "dark"             
## [71218] "moria"             "will"              "choose"           
## [71221] "bill"              "master"            "hed"              
## [71224] "follow"            "mr"                "frodo"            
## [71227] "dragons"           "den"               "led"              
## [71230] "protested"         "sam"               "itd"              
## [71233] "nothing"           "short"             "murder"           
## [71236] "turn"              "loose"             "wolves"           
## [71239] "will"              "short"             "murder"           
## [71242] "hope"              "said"              "gandalf"          
## [71245] "laid"              "hand"              "ponys"            
## [71248] "head"              "spoke"             "low"              
## [71251] "voice"             "go"                "words"            
## [71254] "guard"             "guiding"           "said"             
## [71257] "wise"              "beast"             "learned"          
## [71260] "much"              "rivendell"         "make"             
## [71263] "ways"              "places"            "can"              
## [71266] "find"              "grass"             "come"             
## [71269] "time"              "elronds"           "house"            
## [71272] "wherever"          "wish"              "go"               
## [71275] "sam"               "will"              "quite"            
## [71278] "much"              "chance"            "escaping"         
## [71281] "wolves"            "getting"           "home"             
## [71284] "sam"               "stood"             "sullenly"         
## [71287] "pony"              "returned"          "answer"           
## [71290] "bill"              "seeming"           "understand"       
## [71293] "well"              "going"             "nuzzled"          
## [71296] "putting"           "nose"              "sams"             
## [71299] "ear"               "sam"               "burst"            
## [71302] "tears"             "fumbled"           "straps"           
## [71305] "unlading"          "ponys"             "packs"            
## [71308] "throwing"          "ground"            "others"           
## [71311] "sorted"            "goods"             "making"           
## [71314] "pile"              "left"              "behind"           
## [71317] "dividing"          "rest"              "done"             
## [71320] "turned"            "watch"             "gandalf"          
## [71323] "appeared"          "done"              "nothing"          
## [71326] "standing"          "two"               "trees"            
## [71329] "gazing"            "blank"             "wall"             
## [71332] "cliff"             "bore"              "hole"             
## [71335] "eyes"              "gimli"             "wandering"        
## [71338] "tapping"           "stone"             "axe"              
## [71341] "legolas"           "pressed"           "rock"             
## [71344] "listening"         "well"              "ready"            
## [71347] "said"              "merry"             "doors"            
## [71350] "cant"              "see"               "sign"             
## [71353] "dwarf"             "doors"             "made"             
## [71356] "seen"              "shut"              "said"             
## [71359] "gimli"             "invisible"         "masters"          
## [71362] "find"              "open"              "secret"           
## [71365] "forgotten"         "door"              "made"             
## [71368] "secret"            "known"             "dwarves"          
## [71371] "said"              "gandalf"           "coming"           
## [71374] "suddenly"          "life"              "turning"          
## [71377] "round"             "unless"            "things"           
## [71380] "altogether"        "changed"           "eyes"             
## [71383] "know"              "look"              "may"              
## [71386] "discover"          "signs"             "walked"           
## [71389] "forward"           "wall"              "right"            
## [71392] "shadow"            "trees"             "smooth"           
## [71395] "space"             "passed"            "hands"            
## [71398] "fro"               "muttering"         "words"            
## [71401] "breath"            "stepped"           "back"             
## [71404] "look"              "said"              "can"              
## [71407] "see"               "anything"          "now"              
## [71410] "moon"              "now"               "shone"            
## [71413] "upon"              "grey"              "face"             
## [71416] "rock"              "see"               "nothing"          
## [71419] "else"              "slowly"            "surface"          
## [71422] "wizards"           "hands"             "passed"           
## [71425] "faint"             "lines"             "appeared"         
## [71428] "like"              "slender"           "veins"            
## [71431] "silver"            "running"           "stone"            
## [71434] "first"             "pale"              "gossamer"         
## [71437] "threads"           "fine"              "twinkled"         
## [71440] "fitfully"          "moon"              "caught"           
## [71443] "steadily"          "grew"              "broader"          
## [71446] "clearer"           "design"            "guessed"          
## [71449] "top"               "high"              "gandalf"          
## [71452] "reach"             "arch"              "interlacing"      
## [71455] "letters"           "elvish"            "character"        
## [71458] "though"            "threads"           "places"           
## [71461] "blurred"           "broken"            "outline"          
## [71464] "seen"              "anvil"             "hammer"           
## [71467] "surmounted"        "crown"             "seven"            
## [71470] "stars"             "beneath"           "two"              
## [71473] "trees"             "bearing"           "crescent"         
## [71476] "moons"             "clearly"           "else"             
## [71479] "shone"             "forth"             "middle"           
## [71482] "door"              "single"            "star"             
## [71485] "many"              "rays"              "emblems"          
## [71488] "durin"             "cried"             "gimli"            
## [71491] "tree"              "high"              "elves"            
## [71494] "said"              "legolas"           "star"             
## [71497] "house"             "fëanor"            "said"             
## [71500] "gandalf"           "wrought"           "ithildin"         
## [71503] "mirrors"           "starlight"         "moonlight"        
## [71506] "sleeps"            "touched"           "one"              
## [71509] "speaks"            "words"             "now"              
## [71512] "long"              "forgotten"         "middle"           
## [71515] "earth"             "long"              "since"            
## [71518] "heard"             "thought"           "deeply"           
## [71521] "recall"            "mind"              "writing"          
## [71524] "say"               "asked"             "frodo"            
## [71527] "trying"            "decipher"          "inscription"      
## [71530] "arch"              "thought"           "knew"             
## [71533] "elf"               "letters"           "read"             
## [71536] "words"             "elven"             "tongue"           
## [71539] "west"              "middle"            "earth"            
## [71542] "elder"             "days"              "answered"         
## [71545] "gandalf"           "say"               "anything"         
## [71548] "importance"        "us"                "say"              
## [71551] "doors"             "durin"             "lord"             
## [71554] "moria"             "speak"             "friend"           
## [71557] "enter"             "underneath"        "small"            
## [71560] "faint"             "written"           "narvi"            
## [71563] "made"              "celebrimbor"       "hollin"           
## [71566] "drew"              "signs"             "mean"             
## [71569] "speak"             "friend"            "enter"            
## [71572] "asked"             "merry"             "plain"            
## [71575] "enough"            "said"              "gimli"            
## [71578] "friend"            "speak"             "password"         
## [71581] "doors"             "will"              "open"             
## [71584] "can"               "enter"             "yes"              
## [71587] "said"              "gandalf"           "doors"            
## [71590] "probably"          "governed"          "words"            
## [71593] "dwarf"             "gates"             "will"             
## [71596] "open"              "special"           "times"            
## [71599] "particular"        "persons"           "locks"            
## [71602] "keys"              "still"             "needed"           
## [71605] "necessary"         "times"             "words"            
## [71608] "known"             "doors"             "key"              
## [71611] "days"              "durin"             "secret"           
## [71614] "usually"           "stood"             "open"             
## [71617] "doorwards"         "sat"               "shut"             
## [71620] "knew"              "opening"           "word"             
## [71623] "speak"             "pass"              "least"            
## [71626] "recorded"          "gimli"             "said"             
## [71629] "dwarf"             "word"              "remembered"       
## [71632] "narvi"             "craft"             "kindred"          
## [71635] "vanished"          "earth"             "know"             
## [71638] "word"              "gandalf"           "asked"            
## [71641] "boromir"           "surprise"          "said"             
## [71644] "wizard"            "others"            "looked"           
## [71647] "dismayed"          "aragorn"           "knew"             
## [71650] "gandalf"           "well"              "remained"         
## [71653] "silent"            "unmoved"           "use"              
## [71656] "bringing"          "us"                "accursed"         
## [71659] "spot"              "cried"             "boromir"          
## [71662] "glancing"          "back"              "shudder"          
## [71665] "dark"              "water"             "told"             
## [71668] "us"                "passed"            "mines"            
## [71671] "know"              "enter"             "answer"           
## [71674] "first"             "question"          "boromir"          
## [71677] "said"              "wizard"            "know"             
## [71680] "word"              "yet"               "shall"            
## [71683] "soon"              "see"               "added"            
## [71686] "glint"             "eyes"              "bristling"        
## [71689] "brows"             "may"               "ask"              
## [71692] "use"               "deeds"             "proved"           
## [71695] "useless"           "question"          "doubt"            
## [71698] "tale"              "wits"              "left"             
## [71701] "enter"             "way"               "came"             
## [71704] "east"              "wish"              "know"             
## [71707] "will"              "tell"              "doors"            
## [71710] "open"              "outwards"          "inside"           
## [71713] "may"               "thrust"            "open"             
## [71716] "hands"             "outside"           "nothing"          
## [71719] "will"              "move"              "save"             
## [71722] "spell"             "command"           "forced"           
## [71725] "inwards"           "going"             "asked"            
## [71728] "pippin"            "undaunted"         "wizards"          
## [71731] "bristling"         "brows"             "knock"            
## [71734] "doors"             "head"              "peregrin"         
## [71737] "took"              "said"              "gandalf"          
## [71740] "shatter"           "allowed"           "little"           
## [71743] "peace"             "foolish"           "questions"        
## [71746] "will"              "seek"              "opening"          
## [71749] "words"             "knew"              "every"            
## [71752] "spell"             "tongues"           "elves"            
## [71755] "men"               "orcs"              "ever"             
## [71758] "used"              "purpose"           "can"              
## [71761] "still"             "remember"          "ten"              
## [71764] "score"             "without"           "searching"        
## [71767] "mind"              "trials"            "think"            
## [71770] "will"              "needed"            "shall"            
## [71773] "call"              "gimli"             "words"            
## [71776] "secret"            "dwarf"             "tongue"           
## [71779] "teach"             "none"              "opening"          
## [71782] "words"             "elvish"            "like"             
## [71785] "writing"           "arch"              "seems"            
## [71788] "certain"           "stepped"           "rock"             
## [71791] "lightly"           "touched"           "staff"            
## [71794] "silver"            "star"              "middle"           
## [71797] "beneath"           "sign"              "anvil"            
## [71800] "annon"             "edhellen"          "edro"             
## [71803] "hi"                "ammen"             "fennas"           
## [71806] "nogothrim"         "lasto"             "beth"             
## [71809] "lammen"            "said"              "commanding"       
## [71812] "voice"             "silver"            "lines"            
## [71815] "faded"             "blank"             "grey"             
## [71818] "stone"             "stir"              "many"             
## [71821] "times"             "repeated"          "words"            
## [71824] "different"         "order"             "varied"           
## [71827] "tried"             "spells"            "one"              
## [71830] "another"           "speaking"          "now"              
## [71833] "faster"            "louder"            "now"              
## [71836] "soft"              "slow"              "spoke"            
## [71839] "many"              "single"            "words"            
## [71842] "elvish"            "speech"            "nothing"          
## [71845] "happened"          "cliff"             "towered"          
## [71848] "night"             "countless"         "stars"            
## [71851] "kindled"           "wind"              "blew"             
## [71854] "cold"              "doors"             "stood"            
## [71857] "fast"              "gandalf"           "approached"       
## [71860] "wall"              "lifting"           "arms"             
## [71863] "spoke"             "tones"             "command"          
## [71866] "rising"            "wrath"             "edro"             
## [71869] "edro"              "cried"             "struck"           
## [71872] "rock"              "staff"             "open"             
## [71875] "open"              "shouted"           "followed"         
## [71878] "command"           "every"             "language"         
## [71881] "ever"              "spoken"            "west"             
## [71884] "middle"            "earth"             "threw"            
## [71887] "staff"             "ground"            "sat"              
## [71890] "silence"           "moment"            "far"              
## [71893] "wind"              "bore"              "listening"        
## [71896] "ears"              "howling"           "wolves"           
## [71899] "bill"              "pony"              "started"          
## [71902] "fear"              "sam"               "sprang"           
## [71905] "side"              "whispered"         "softly"           
## [71908] "let"               "run"               "away"             
## [71911] "said"              "boromir"           "seems"            
## [71914] "shall"             "need"              "still"            
## [71917] "wolves"            "find"              "us"               
## [71920] "hate"              "foul"              "pool"             
## [71923] "stooped"           "picking"           "large"            
## [71926] "stone"             "cast"              "far"              
## [71929] "dark"              "water"             "stone"            
## [71932] "vanished"          "soft"              "slap"             
## [71935] "instant"           "swish"             "bubble"           
## [71938] "great"             "rippling"          "rings"            
## [71941] "formed"            "surface"           "beyond"           
## [71944] "stone"             "fallen"            "moved"            
## [71947] "slowly"            "towards"           "foot"             
## [71950] "cliff"             "boromir"           "said"             
## [71953] "frodo"             "hate"              "place"            
## [71956] "afraid"            "dont"              "know"             
## [71959] "wolves"            "dark"              "behind"           
## [71962] "doors"             "something"         "else"             
## [71965] "afraid"            "pool"              "dont"             
## [71968] "disturb"           "wish"              "get"              
## [71971] "away"              "said"              "merry"            
## [71974] "doesnt"            "gandalf"           "something"        
## [71977] "quick"             "said"              "pippin"           
## [71980] "gandalf"           "took"              "notice"           
## [71983] "sat"               "head"              "bowed"            
## [71986] "either"            "despair"           "anxious"          
## [71989] "thought"           "mournful"          "howling"          
## [71992] "wolves"            "heard"             "ripples"          
## [71995] "water"             "grew"              "came"             
## [71998] "closer"            "already"           "lapping"          
## [72001] "shore"             "suddenness"        "startled"         
## [72004] "wizard"            "sprang"            "feet"             
## [72007] "laughing"          "cried"             "course"           
## [72010] "course"            "absurdly"          "simple"           
## [72013] "like"              "riddles"           "see"              
## [72016] "answer"            "picking"           "staff"            
## [72019] "stood"             "rock"              "said"             
## [72022] "clear"             "voice"             "mellon"           
## [72025] "star"              "shone"             "briefly"          
## [72028] "faded"             "silently"          "great"            
## [72031] "doorway"           "outlined"          "though"           
## [72034] "crack"             "joint"             "visible"          
## [72037] "slowly"            "divided"           "middle"           
## [72040] "swung"             "outwards"          "inch"             
## [72043] "inch"              "doors"             "lay"              
## [72046] "back"              "wall"              "opening"          
## [72049] "shadowy"           "stair"             "seen"             
## [72052] "climbing"          "steeply"           "beyond"           
## [72055] "lower"             "steps"             "darkness"         
## [72058] "deeper"            "night"             "company"          
## [72061] "stared"            "wonder"            "wrong"            
## [72064] "said"              "gandalf"           "gimli"            
## [72067] "merry"             "people"            "right"            
## [72070] "track"             "opening"           "word"             
## [72073] "inscribed"         "archway"           "time"             
## [72076] "translation"       "say"               "friend"           
## [72079] "enter"             "speak"             "elvish"           
## [72082] "word"              "friend"            "doors"            
## [72085] "opened"            "quite"             "simple"           
## [72088] "simple"            "learned"           "lore"             
## [72091] "master"            "suspicious"        "days"             
## [72094] "happier"           "times"             "now"              
## [72097] "let"               "us"                "go"               
## [72100] "strode"            "forward"           "set"              
## [72103] "foot"              "lowest"            "step"             
## [72106] "moment"            "several"           "things"           
## [72109] "happened"          "frodo"             "felt"             
## [72112] "something"         "seize"             "ankle"            
## [72115] "fell"              "cry"               "bill"             
## [72118] "pony"              "gave"              "wild"             
## [72121] "neigh"             "fear"              "turned"           
## [72124] "tail"              "dashed"            "away"             
## [72127] "along"             "lakeside"          "darkness"         
## [72130] "sam"               "leaped"            "hearing"          
## [72133] "frodos"            "cry"               "ran"              
## [72136] "back"              "weeping"           "cursing"          
## [72139] "others"            "swung"             "round"            
## [72142] "saw"               "waters"            "lake"             
## [72145] "seething"          "host"              "snakes"           
## [72148] "swimming"          "southern"          "end"              
## [72151] "water"             "long"              "sinuous"          
## [72154] "tentacle"          "crawled"           "pale"             
## [72157] "green"             "luminous"          "wet"              
## [72160] "fingered"          "end"               "hold"             
## [72163] "frodos"            "foot"              "dragging"         
## [72166] "water"             "sam"               "knees"            
## [72169] "now"               "slashing"          "knife"            
## [72172] "arm"               "let"               "go"               
## [72175] "frodo"             "sam"               "pulled"           
## [72178] "away"              "crying"            "help"             
## [72181] "twenty"            "others"            "arms"             
## [72184] "came"              "rippling"          "dark"             
## [72187] "water"             "boiled"            "hideous"          
## [72190] "stench"            "gateway"           "stairs"           
## [72193] "quick"             "shouted"           "gandalf"          
## [72196] "leaping"           "back"              "rousing"          
## [72199] "horror"            "seemed"            "rooted"           
## [72202] "sam"               "ground"            "stood"            
## [72205] "drove"             "forward"           "just"             
## [72208] "time"              "sam"               "frodo"            
## [72211] "steps"             "gandalf"           "just"             
## [72214] "begun"             "climb"             "groping"          
## [72217] "tentacles"         "writhed"           "across"           
## [72220] "narrow"            "shore"             "fingered"         
## [72223] "cliff"             "wall"              "doors"            
## [72226] "one"               "came"              "wriggling"        
## [72229] "threshold"         "glistening"        "starlight"        
## [72232] "gandalf"           "turned"            "paused"           
## [72235] "considering"       "word"              "close"            
## [72238] "gate"              "within"            "need"             
## [72241] "many"              "coiling"           "arms"             
## [72244] "seized"            "doors"             "either"           
## [72247] "side"              "horrible"          "strength"         
## [72250] "swung"             "round"             "shattering"       
## [72253] "echo"              "slammed"           "light"            
## [72256] "lost"              "noise"             "rending"          
## [72259] "crashing"          "came"              "dully"            
## [72262] "ponderous"         "stone"             "sam"              
## [72265] "clinging"          "frodos"            "arm"              
## [72268] "collapsed"         "step"              "black"            
## [72271] "darkness"          "poor"              "old"              
## [72274] "bill"              "said"              "choking"          
## [72277] "voice"             "poor"              "old"              
## [72280] "bill"              "wolves"            "snakes"           
## [72283] "snakes"            "much"              "choose"           
## [72286] "mr"                "frodo"             "come"             
## [72289] "heard"             "gandalf"           "go"               
## [72292] "back"              "steps"             "thrust"           
## [72295] "staff"             "doors"             "quiver"           
## [72298] "stone"             "stairs"            "trembled"         
## [72301] "doors"             "open"              "well"             
## [72304] "well"              "said"              "wizard"           
## [72307] "passage"           "blocked"           "behind"           
## [72310] "us"                "now"               "one"              
## [72313] "way"               "side"              "mountains"        
## [72316] "fear"              "sounds"            "boulders"         
## [72319] "piled"             "trees"             "uprooted"         
## [72322] "thrown"            "across"            "gate"             
## [72325] "sorry"             "trees"             "beautiful"        
## [72328] "stood"             "long"              "felt"             
## [72331] "something"         "horrible"          "near"             
## [72334] "moment"            "foot"              "first"            
## [72337] "touched"           "water"             "said"             
## [72340] "frodo"             "thing"             "many"             
## [72343] "know"              "answered"          "gandalf"          
## [72346] "arms"              "guided"            "one"              
## [72349] "purpose"           "something"         "crept"            
## [72352] "driven"            "dark"              "waters"           
## [72355] "mountains"         "older"             "fouler"           
## [72358] "things"            "orcs"              "deep"             
## [72361] "places"            "world"             "speak"            
## [72364] "aloud"             "thought"           "whatever"         
## [72367] "dwelt"             "lake"              "seized"           
## [72370] "frodo"             "first"             "among"            
## [72373] "company"           "boromir"           "muttered"         
## [72376] "breath"            "echoing"           "stone"            
## [72379] "magnified"         "sound"             "hoarse"           
## [72382] "whisper"           "hear"              "deep"             
## [72385] "places"            "world"             "thither"          
## [72388] "going"             "wish"              "will"             
## [72391] "lead"              "us"                "now"              
## [72394] "deadly"            "dark"              "will"             
## [72397] "said"              "gandalf"           "gimli"            
## [72400] "shall"             "walk"              "follow"           
## [72403] "staff"             "wizard"            "passed"           
## [72406] "ahead"             "great"             "steps"            
## [72409] "held"              "staff"             "aloft"            
## [72412] "tip"               "came"              "faint"            
## [72415] "radiance"          "wide"              "stairway"         
## [72418] "sound"             "undamaged"         "two"              
## [72421] "hundred"           "steps"             "counted"          
## [72424] "broad"             "shallow"           "top"              
## [72427] "found"             "arched"            "passage"          
## [72430] "level"             "floor"             "leading"          
## [72433] "dark"              "let"               "us"               
## [72436] "sit"               "rest"              "something"        
## [72439] "eat"               "landing"           "since"            
## [72442] "cant"              "find"              "dining"           
## [72445] "room"              "said"              "frodo"            
## [72448] "begun"             "shake"             "terror"           
## [72451] "clutching"         "arm"               "suddenly"         
## [72454] "felt"              "extremely"         "hungry"           
## [72457] "proposal"          "welcomed"          "sat"              
## [72460] "upper"             "steps"             "dim"              
## [72463] "figures"           "gloom"             "eaten"            
## [72466] "gandalf"           "gave"              "third"            
## [72469] "sip"               "miruvor"           "rivendell"        
## [72472] "will"              "last"              "much"             
## [72475] "longer"            "afraid"            "said"             
## [72478] "think"             "need"              "horror"           
## [72481] "gate"              "unless"            "great"            
## [72484] "luck"              "shall"             "need"             
## [72487] "left"              "see"               "side"             
## [72490] "go"                "carefully"         "water"            
## [72493] "many"              "streams"           "wells"            
## [72496] "mines"             "touched"           "may"              
## [72499] "chance"            "filling"           "skins"            
## [72502] "bottles"           "till"              "come"             
## [72505] "dimrill"           "dale"              "long"             
## [72508] "going"             "take"              "us"               
## [72511] "asked"             "frodo"             "say"              
## [72514] "answered"          "gandalf"           "depends"          
## [72517] "many"              "chances"           "going"            
## [72520] "straight"          "without"           "mishap"           
## [72523] "losing"            "way"               "shall"            
## [72526] "take"              "three"             "four"             
## [72529] "marches"           "expect"            "less"             
## [72532] "forty"             "miles"             "west"             
## [72535] "door"              "east"              "gate"             
## [72538] "direct"            "line"              "road"             
## [72541] "may"               "wind"              "much"             
## [72544] "brief"             "rest"              "started"          
## [72547] "way"               "eager"             "get"              
## [72550] "journey"           "quickly"           "possible"         
## [72553] "willing"           "tired"             "go"               
## [72556] "marching"          "still"             "several"          
## [72559] "hours"             "gandalf"           "walked"           
## [72562] "front"             "left"              "hand"             
## [72565] "held"              "glimmering"        "staff"            
## [72568] "light"             "just"              "showed"           
## [72571] "ground"            "feet"              "right"            
## [72574] "held"              "sword"             "glamdring"        
## [72577] "behind"            "came"              "gimli"            
## [72580] "eyes"              "glinting"          "dim"              
## [72583] "light"             "turned"            "head"             
## [72586] "side"              "side"              "behind"           
## [72589] "dwarf"             "walked"            "frodo"            
## [72592] "drawn"             "short"             "sword"            
## [72595] "sting"             "gleam"             "came"             
## [72598] "blades"            "sting"             "glamdring"        
## [72601] "comfort"           "work"              "elvish"           
## [72604] "smiths"            "elder"             "days"             
## [72607] "swords"            "shone"             "cold"             
## [72610] "light"             "orcs"              "near"             
## [72613] "hand"              "behind"            "frodo"            
## [72616] "went"              "sam"               "legolas"          
## [72619] "young"             "hobbits"           "boromir"          
## [72622] "dark"              "rear"              "grim"             
## [72625] "silent"            "walked"            "aragorn"          
## [72628] "passage"           "twisted"           "round"            
## [72631] "turns"             "began"             "descend"          
## [72634] "went"              "steadily"          "long"             
## [72637] "became"            "level"             "air"              
## [72640] "grew"              "hot"               "stifling"         
## [72643] "foul"              "times"             "felt"             
## [72646] "currents"          "cooler"            "air"              
## [72649] "upon"              "faces"             "issuing"          
## [72652] "half"              "guessed"           "openings"         
## [72655] "walls"             "many"              "pale"             
## [72658] "ray"               "wizards"           "staff"            
## [72661] "frodo"             "caught"            "glimpses"         
## [72664] "stairs"            "arches"            "passages"         
## [72667] "tunnels"           "sloping"           "running"          
## [72670] "steeply"           "opening"           "blankly"          
## [72673] "dark"              "either"            "side"             
## [72676] "bewildering"       "beyond"            "hope"             
## [72679] "remembering"       "gimli"             "aided"            
## [72682] "gandalf"           "little"            "except"           
## [72685] "stout"             "courage"           "least"            
## [72688] "others"            "troubled"          "mere"             
## [72691] "darkness"          "often"             "wizard"           
## [72694] "consulted"         "points"            "choice"           
## [72697] "way"               "doubtful"          "always"           
## [72700] "gandalf"           "final"             "word"             
## [72703] "mines"             "moria"             "vast"             
## [72706] "intricate"         "beyond"            "imagination"      
## [72709] "gimli"             "glóins"            "son"              
## [72712] "dwarf"             "mountain"          "race"             
## [72715] "though"            "gandalf"           "far"              
## [72718] "memories"          "journey"           "long"             
## [72721] "now"               "little"            "help"             
## [72724] "even"              "gloom"             "despite"          
## [72727] "windings"          "road"              "knew"             
## [72730] "whither"           "wished"            "go"               
## [72733] "falter"            "long"              "path"             
## [72736] "led"               "towards"           "goal"             
## [72739] "afraid"            "said"              "aragorn"          
## [72742] "pause"             "longer"            "usual"            
## [72745] "gandalf"           "gimli"             "whispering"       
## [72748] "together"          "others"            "crowded"          
## [72751] "behind"            "waiting"           "anxiously"        
## [72754] "afraid"            "many"              "journey"          
## [72757] "never"             "one"               "dark"             
## [72760] "tales"             "rivendell"         "greater"          
## [72763] "deeds"             "seen"              "will"             
## [72766] "go"                "astray"            "path"             
## [72769] "find"              "led"               "us"               
## [72772] "fears"             "will"              "lead"             
## [72775] "us"                "whatever"          "cost"             
## [72778] "surer"             "finding"           "way"              
## [72781] "home"              "blind"             "night"            
## [72784] "cats"              "queen"             "berúthiel"        
## [72787] "well"              "company"           "guide"            
## [72790] "fuel"              "means"             "making"           
## [72793] "torches"           "desperate"         "scramble"         
## [72796] "doors"             "many"              "things"           
## [72799] "left"              "behind"            "without"          
## [72802] "light"             "soon"              "come"             
## [72805] "grief"             "many"              "roads"            
## [72808] "choose"            "also"              "many"             
## [72811] "places"            "holes"             "pitfalls"         
## [72814] "dark"              "wells"             "beside"           
## [72817] "path"              "passing"           "feet"             
## [72820] "echoed"            "fissures"          "chasms"           
## [72823] "walls"             "floor"             "every"            
## [72826] "now"               "crack"             "open"             
## [72829] "right"             "feet"              "widest"           
## [72832] "seven"             "feet"              "across"           
## [72835] "long"              "pippin"            "summon"           
## [72838] "enough"            "courage"           "leap"             
## [72841] "dreadful"          "gap"               "noise"            
## [72844] "churning"          "water"             "came"             
## [72847] "far"               "great"             "mill"             
## [72850] "wheel"             "turning"           "depths"           
## [72853] "rope"              "muttered"          "sam"              
## [72856] "knew"              "id"                "want"             
## [72859] "hadnt"             "got"               "dangers"          
## [72862] "became"            "frequent"          "march"            
## [72865] "became"            "slower"            "already"          
## [72868] "seemed"            "tramping"          "endlessly"        
## [72871] "mountains"         "roots"             "weary"            
## [72874] "yet"               "seemed"            "comfort"          
## [72877] "thought"           "halting"           "anywhere"         
## [72880] "frodos"            "spirits"           "risen"            
## [72883] "escape"            "food"              "draught"          
## [72886] "cordial"           "now"               "deep"             
## [72889] "uneasiness"        "growing"           "dread"            
## [72892] "crept"             "though"            "healed"           
## [72895] "rivendell"         "knife"             "stroke"           
## [72898] "grim"              "wound"             "without"          
## [72901] "effect"            "senses"            "sharper"          
## [72904] "aware"             "things"            "seen"             
## [72907] "one"               "sign"              "change"           
## [72910] "soon"              "noticed"           "see"              
## [72913] "dark"              "companions"        "save"             
## [72916] "perhaps"           "gandalf"           "case"             
## [72919] "bearer"            "ring"              "hung"             
## [72922] "upon"              "chain"             "breast"           
## [72925] "whiles"            "seemed"            "heavy"            
## [72928] "weight"            "felt"              "certainty"        
## [72931] "evil"              "ahead"             "evil"             
## [72934] "following"         "said"              "nothing"          
## [72937] "gripped"           "tighter"           "hilt"             
## [72940] "sword"             "went"              "doggedly"         
## [72943] "company"           "behind"            "spoke"            
## [72946] "seldom"            "hurried"           "whispers"         
## [72949] "sound"             "sound"             "feet"             
## [72952] "dull"              "stump"             "gimlis"           
## [72955] "dwarf"             "boots"             "heavy"            
## [72958] "tread"             "boromir"           "light"            
## [72961] "step"              "legolas"           "soft"             
## [72964] "scarce"            "heard"             "patter"           
## [72967] "hobbit"            "feet"              "rear"             
## [72970] "slow"              "firm"              "footfalls"        
## [72973] "aragorn"           "long"              "stride"           
## [72976] "halted"            "moment"            "heard"            
## [72979] "nothing"           "unless"            "occasionally"     
## [72982] "faint"             "trickle"           "drip"             
## [72985] "unseen"            "water"             "yet"              
## [72988] "frodo"             "began"             "hear"             
## [72991] "imagine"           "heard"             "something"        
## [72994] "else"              "like"              "faint"            
## [72997] "fall"              "soft"              "bare"             
## [73000] "feet"              "never"             "loud"             
## [73003] "enough"            "near"              "enough"           
## [73006] "feel"              "certain"           "heard"            
## [73009] "started"           "never"             "stopped"          
## [73012] "company"           "moving"            "echo"             
## [73015] "halted"            "pattered"          "little"           
## [73018] "grew"              "still"             "nightfall"        
## [73021] "entered"           "mines"             "going"            
## [73024] "several"           "hours"             "brief"            
## [73027] "halts"             "gandalf"           "came"             
## [73030] "first"             "serious"           "check"            
## [73033] "stood"             "wide"              "dark"             
## [73036] "arch"              "opening"           "three"            
## [73039] "passages"          "led"               "general"          
## [73042] "direction"         "eastwards"         "left"             
## [73045] "hand"              "passage"           "plunged"          
## [73048] "right"             "hand"              "climbed"          
## [73051] "middle"            "way"               "seemed"           
## [73054] "run"               "smooth"            "level"            
## [73057] "narrow"            "memory"            "place"            
## [73060] "said"              "gandalf"           "standing"         
## [73063] "uncertainly"       "arch"              "held"             
## [73066] "staff"             "hope"              "finding"          
## [73069] "marks"             "inscription"       "might"            
## [73072] "help"              "choice"            "nothing"          
## [73075] "kind"              "seen"              "weary"            
## [73078] "decide"            "said"              "shaking"          
## [73081] "head"              "expect"            "weary"            
## [73084] "wearier"           "better"            "halt"             
## [73087] "left"              "night"             "know"             
## [73090] "mean"              "ever"              "dark"             
## [73093] "outside"           "late"              "moon"             
## [73096] "riding"            "westward"          "middle"           
## [73099] "night"             "passed"            "poor"             
## [73102] "old"               "bill"              "said"             
## [73105] "sam"               "wonder"            "hope"             
## [73108] "wolves"            "havent"            "got"              
## [73111] "yet"               "left"              "great"            
## [73114] "arch"              "found"             "stone"            
## [73117] "door"              "half"              "closed"           
## [73120] "swung"             "back"              "easily"           
## [73123] "gentle"            "thrust"            "beyond"           
## [73126] "seemed"            "lie"               "wide"             
## [73129] "chamber"           "cut"               "rock"             
## [73132] "steady"            "steady"            "cried"            
## [73135] "gandalf"           "merry"             "pippin"           
## [73138] "pushed"            "forward"           "glad"             
## [73141] "find"              "place"             "rest"             
## [73144] "least"             "feeling"           "shelter"          
## [73147] "open"              "passage"           "steady"           
## [73150] "know"              "inside"            "yet"              
## [73153] "will"              "go"                "first"            
## [73156] "went"              "cautiously"        "others"           
## [73159] "filed"             "behind"            "said"             
## [73162] "pointing"          "staff"             "middle"           
## [73165] "floor"             "feet"              "saw"              
## [73168] "large"             "round"             "hole"             
## [73171] "like"              "mouth"             "well"             
## [73174] "broken"            "rusty"             "chains"           
## [73177] "lay"               "edge"              "trailed"          
## [73180] "black"             "pit"               "fragments"        
## [73183] "stone"             "lay"               "near"             
## [73186] "one"               "might"             "fallen"           
## [73189] "still"             "wondering"         "going"            
## [73192] "strike"            "bottom"            "said"             
## [73195] "aragorn"           "merry"             "let"              
## [73198] "guide"             "go"                "first"            
## [73201] "one"               "seems"             "guardroom"        
## [73204] "made"              "watching"          "three"            
## [73207] "passages"          "said"              "gimli"            
## [73210] "hole"              "plainly"           "well"             
## [73213] "guards"            "use"               "covered"          
## [73216] "stone"             "lid"               "lid"              
## [73219] "broken"            "must"              "take"             
## [73222] "care"              "dark"              "pippin"           
## [73225] "felt"              "curiously"         "attracted"        
## [73228] "well"              "others"            "unrolling"        
## [73231] "blankets"          "making"            "beds"             
## [73234] "walls"             "chamber"           "far"              
## [73237] "possible"          "hole"              "floor"            
## [73240] "crept"             "edge"              "peered"           
## [73243] "chill"             "air"               "seemed"           
## [73246] "strike"            "face"              "rising"           
## [73249] "invisible"         "depths"            "moved"            
## [73252] "sudden"            "impulse"           "groped"           
## [73255] "loose"             "stone"             "let"              
## [73258] "drop"              "felt"              "heart"            
## [73261] "beat"              "many"              "times"            
## [73264] "sound"             "far"               "stone"            
## [73267] "fallen"            "deep"              "water"            
## [73270] "cavernous"         "place"             "came"             
## [73273] "plunk"             "distant"           "magnified"        
## [73276] "repeated"          "hollow"            "shaft"            
## [73279] "whats"             "cried"             "gandalf"          
## [73282] "relieved"          "pippin"            "confessed"        
## [73285] "done"              "angry"             "pippin"           
## [73288] "see"               "eye"               "glinting"         
## [73291] "fool"              "took"              "growled"          
## [73294] "serious"           "journey"           "hobbit"           
## [73297] "walking"           "party"             "throw"            
## [73300] "next"              "time"              "will"             
## [73303] "nuisance"          "now"               "quiet"            
## [73306] "nothing"           "heard"             "several"          
## [73309] "minutes"           "came"              "depths"           
## [73312] "faint"             "knocks"            "tom"              
## [73315] "tap"               "tap"               "tom"              
## [73318] "stopped"           "echoes"            "died"             
## [73321] "away"              "repeated"          "tap"              
## [73324] "tom"               "tom"               "tap"              
## [73327] "tap"               "tap"               "tom"              
## [73330] "sounded"           "disquietingly"     "like"             
## [73333] "signals"           "sort"              "knocking"         
## [73336] "died"              "away"              "heard"            
## [73339] "sound"             "hammer"            "never"            
## [73342] "heard"             "one"               "said"             
## [73345] "gimli"             "yes"               "said"             
## [73348] "gandalf"           "like"              "may"              
## [73351] "nothing"           "peregrins"         "foolish"          
## [73354] "stone"             "probably"          "something"        
## [73357] "disturbed"         "better"            "left"             
## [73360] "quiet"             "pray"              "nothing"          
## [73363] "kind"              "let"               "us"               
## [73366] "hope"              "shall"             "get"              
## [73369] "rest"              "without"           "trouble"          
## [73372] "pippin"            "can"               "go"               
## [73375] "first"             "watch"             "reward"           
## [73378] "growled"           "rolled"            "blanket"          
## [73381] "pippin"            "sat"               "miserably"        
## [73384] "door"              "pitch"             "dark"             
## [73387] "kept"              "turning"           "round"            
## [73390] "fearing"           "unknown"           "thing"            
## [73393] "crawl"             "well"              "wished"           
## [73396] "cover"             "hole"              "blanket"          
## [73399] "dared"             "move"              "go"               
## [73402] "near"              "even"              "though"           
## [73405] "gandalf"           "seemed"            "asleep"           
## [73408] "actually"          "gandalf"           "awake"            
## [73411] "though"            "lying"             "still"            
## [73414] "silent"            "deep"              "thought"          
## [73417] "trying"            "recall"            "every"            
## [73420] "memory"            "former"            "journey"          
## [73423] "mines"             "considering"       "anxiously"        
## [73426] "next"              "course"            "take"             
## [73429] "false"             "turn"              "now"              
## [73432] "might"             "disastrous"        "hour"             
## [73435] "rose"              "came"              "pippin"           
## [73438] "get"               "corner"            "sleep"            
## [73441] "lad"               "said"              "kindly"           
## [73444] "tone"              "want"              "sleep"            
## [73447] "expect"            "get"               "wink"             
## [73450] "may"               "well"              "watching"         
## [73453] "know"              "matter"            "muttered"         
## [73456] "sat"               "door"              "need"             
## [73459] "smoke"             "tasted"            "since"            
## [73462] "morning"           "snowstorm"         "last"             
## [73465] "thing"             "pippin"            "saw"              
## [73468] "sleep"             "took"              "dark"             
## [73471] "glimpse"           "old"               "wizard"           
## [73474] "huddled"           "floor"             "shielding"        
## [73477] "glowing"           "chip"              "gnarled"          
## [73480] "hands"             "knees"             "flicker"          
## [73483] "moment"            "showed"            "sharp"            
## [73486] "nose"              "puff"              "smoke"            
## [73489] "gandalf"           "roused"            "sleep"            
## [73492] "sat"               "watched"           "alone"            
## [73495] "six"               "hours"             "let"              
## [73498] "others"            "rest"              "watches"          
## [73501] "made"              "mind"              "said"             
## [73504] "like"              "feel"              "middle"           
## [73507] "way"               "like"              "smell"            
## [73510] "left"              "hand"              "way"              
## [73513] "foul"              "air"               "guide"            
## [73516] "shall"             "take"              "right"            
## [73519] "hand"              "passage"           "time"             
## [73522] "began"             "climb"             "eight"            
## [73525] "dark"              "hours"             "counting"         
## [73528] "two"               "brief"             "halts"            
## [73531] "marched"           "met"               "danger"           
## [73534] "heard"             "nothing"           "saw"              
## [73537] "nothing"           "faint"             "gleam"            
## [73540] "wizards"           "light"             "bobbing"          
## [73543] "like"              "will"              "wisp"             
## [73546] "front"             "passage"           "chosen"           
## [73549] "wound"             "steadily"          "upwards"          
## [73552] "far"               "judge"             "went"             
## [73555] "great"             "mounting"          "curves"           
## [73558] "rose"              "grew"              "loftier"          
## [73561] "wider"             "now"               "openings"         
## [73564] "galleries"         "tunnels"           "either"           
## [73567] "side"              "floor"             "level"            
## [73570] "sound"             "without"           "pits"             
## [73573] "cracks"            "evidently"         "struck"           
## [73576] "important"         "road"              "went"             
## [73579] "forward"           "quicker"           "done"             
## [73582] "first"             "march"             "way"              
## [73585] "advanced"          "fifteen"           "miles"            
## [73588] "measured"          "direct"            "line"             
## [73591] "east"              "though"            "must"             
## [73594] "actually"          "walked"            "twenty"           
## [73597] "miles"             "road"              "climbed"          
## [73600] "upwards"           "frodos"            "spirits"          
## [73603] "rose"              "little"            "still"            
## [73606] "felt"              "oppressed"         "still"            
## [73609] "times"             "heard"             "thought"          
## [73612] "heard"             "away"              "behind"           
## [73615] "company"           "beyond"            "fall"             
## [73618] "patter"            "feet"              "following"        
## [73621] "footstep"          "echo"              "marched"          
## [73624] "far"               "hobbits"           "endure"           
## [73627] "without"           "rest"              "thinking"         
## [73630] "place"             "sleep"             "suddenly"         
## [73633] "walls"             "right"             "left"             
## [73636] "vanished"          "seemed"            "passed"           
## [73639] "arched"            "doorway"           "black"            
## [73642] "empty"             "space"             "great"            
## [73645] "draught"           "warmer"            "air"              
## [73648] "behind"            "darkness"          "cold"             
## [73651] "faces"             "halted"            "crowded"          
## [73654] "anxiously"         "together"          "gandalf"          
## [73657] "seemed"            "pleased"           "chose"            
## [73660] "right"             "way"               "said"             
## [73663] "last"              "coming"            "habitable"        
## [73666] "parts"             "guess"             "far"              
## [73669] "now"               "eastern"           "side"             
## [73672] "high"              "good"              "deal"             
## [73675] "higher"            "dimrill"           "gate"             
## [73678] "unless"            "mistaken"          "feeling"          
## [73681] "air"               "must"              "wide"             
## [73684] "hall"              "will"              "now"              
## [73687] "risk"              "little"            "real"             
## [73690] "light"             "raised"            "staff"            
## [73693] "brief"             "instant"           "blaze"            
## [73696] "like"              "flash"             "lightning"        
## [73699] "great"             "shadows"           "sprang"           
## [73702] "fled"              "second"            "saw"              
## [73705] "vast"              "roof"              "far"              
## [73708] "heads"             "upheld"            "many"             
## [73711] "mighty"            "pillars"           "hewn"             
## [73714] "stone"             "either"            "side"             
## [73717] "stretched"         "huge"              "empty"            
## [73720] "hall"              "black"             "walls"            
## [73723] "polished"          "smooth"            "glass"            
## [73726] "flashed"           "glittered"         "three"            
## [73729] "entrances"         "saw"               "dark"             
## [73732] "black"             "arches"            "one"              
## [73735] "straight"          "eastwards"         "one"              
## [73738] "either"            "side"              "light"            
## [73741] "went"              "shall"             "venture"          
## [73744] "present"           "said"              "gandalf"          
## [73747] "used"              "great"             "windows"          
## [73750] "mountain"          "side"              "shafts"           
## [73753] "leading"           "light"             "upper"            
## [73756] "reaches"           "mines"             "think"            
## [73759] "reached"           "now"               "night"            
## [73762] "outside"           "tell"              "morning"          
## [73765] "right"             "tomorrow"          "may"              
## [73768] "actually"          "see"               "morning"          
## [73771] "peeping"           "meanwhile"         "better"           
## [73774] "go"                "let"               "us"               
## [73777] "rest"              "can"               "things"           
## [73780] "gone"              "well"              "far"              
## [73783] "greater"           "part"              "dark"             
## [73786] "road"              "yet"               "long"             
## [73789] "way"               "gates"             "open"             
## [73792] "world"             "company"           "spent"            
## [73795] "night"             "great"             "cavernous"        
## [73798] "hall"              "huddled"           "close"            
## [73801] "together"          "corner"            "escape"           
## [73804] "draught"           "seemed"            "steady"           
## [73807] "inflow"            "chill"             "air"              
## [73810] "eastern"           "archway"           "lay"              
## [73813] "hung"              "darkness"          "hollow"           
## [73816] "immense"           "oppressed"         "loneliness"       
## [73819] "vastness"          "dolven"            "halls"            
## [73822] "endlessly"         "branching"         "stairs"           
## [73825] "passages"          "wildest"           "imaginings"       
## [73828] "dark"              "rumour"            "ever"             
## [73831] "suggested"         "hobbits"           "fell"             
## [73834] "altogether"        "short"             "actual"           
## [73837] "dread"             "wonder"            "moria"            
## [73840] "must"              "mighty"            "crowd"            
## [73843] "dwarves"           "one"               "time"             
## [73846] "said"              "sam"               "every"            
## [73849] "one"               "busier"            "badgers"          
## [73852] "five"              "hundred"           "years"            
## [73855] "make"              "hard"              "rock"             
## [73858] "didnt"             "live"              "darksome"         
## [73861] "holes"             "surely"            "holes"            
## [73864] "said"              "gimli"             "great"            
## [73867] "realm"             "city"              "dwarrowdelf"      
## [73870] "old"               "darksome"          "full"             
## [73873] "light"             "splendour"         "still"            
## [73876] "remembered"        "songs"             "rose"             
## [73879] "standing"          "dark"              "began"            
## [73882] "chant"             "deep"              "voice"            
## [73885] "echoes"            "ran"               "away"             
## [73888] "roof"              "world"             "young"            
## [73891] "mountains"         "green"             "stain"            
## [73894] "yet"               "moon"              "seen"             
## [73897] "words"             "laid"              "stream"           
## [73900] "stone"             "durin"             "woke"             
## [73903] "walked"            "alone"             "named"            
## [73906] "nameless"          "hills"             "dells"            
## [73909] "drank"             "yet"               "untasted"         
## [73912] "wells"             "stooped"           "looked"           
## [73915] "mirrormere"        "saw"               "crown"            
## [73918] "stars"             "appear"            "gems"             
## [73921] "upon"              "silver"            "thread"           
## [73924] "shadow"            "head"              "world"            
## [73927] "fair"              "mountains"         "tall"             
## [73930] "elder"             "days"              "fall"             
## [73933] "mighty"            "kings"             "nargothrond"      
## [73936] "gondolin"          "now"               "beyond"           
## [73939] "western"           "seas"              "passed"           
## [73942] "away"              "world"             "fair"             
## [73945] "durins"            "day"               "king"             
## [73948] "carven"            "throne"            "many"             
## [73951] "pillared"          "halls"             "stone"            
## [73954] "golden"            "roof"              "silver"           
## [73957] "floor"             "runes"             "power"            
## [73960] "upon"              "door"              "light"            
## [73963] "sun"               "star"              "moon"             
## [73966] "shining"           "lamps"             "crystal"          
## [73969] "hewn"              "undimmed"          "cloud"            
## [73972] "shade"             "night"             "shone"            
## [73975] "ever"              "fair"              "bright"           
## [73978] "hammer"            "anvil"             "smote"            
## [73981] "chisel"            "clove"             "graver"           
## [73984] "wrote"             "forged"            "blade"            
## [73987] "bound"             "hilt"              "delver"           
## [73990] "mined"             "mason"             "built"            
## [73993] "beryl"             "pearl"             "opal"             
## [73996] "pale"              "metal"             "wrought"          
## [73999] "like"              "fishes"            "mail"             
## [74002] "buckler"           "corslet"           "axe"              
## [74005] "sword"             "shining"           "spears"           
## [74008] "laid"              "hoard"             "unwearied"        
## [74011] "durins"            "folk"              "beneath"          
## [74014] "mountains"         "music"             "woke"             
## [74017] "harpers"           "harped"            "minstrels"        
## [74020] "sang"              "gates"             "trumpets"         
## [74023] "rang"              "world"             "grey"             
## [74026] "mountains"         "old"               "forges"           
## [74029] "fire"              "ashen"             "cold"             
## [74032] "harp"              "wrung"             "hammer"           
## [74035] "falls"             "darkness"          "dwells"           
## [74038] "durins"            "halls"             "shadow"           
## [74041] "lies"              "upon"              "tomb"             
## [74044] "moria"             "khazad"            "dûm"              
## [74047] "still"             "sunken"            "stars"            
## [74050] "appear"            "dark"              "windless"         
## [74053] "mirrormere"        "lies"              "crown"            
## [74056] "water"             "deep"              "till"             
## [74059] "durin"             "wakes"             "sleep"            
## [74062] "like"              "said"              "sam"              
## [74065] "like"              "learn"             "moria"            
## [74068] "khazad"            "dûm"               "makes"            
## [74071] "darkness"          "seem"              "heavier"          
## [74074] "thinking"          "lamps"             "piles"            
## [74077] "jewels"            "gold"              "lying"            
## [74080] "still"             "gimli"             "silent"           
## [74083] "sung"              "song"              "say"              
## [74086] "piles"             "jewels"            "said"             
## [74089] "gandalf"           "orcs"              "often"            
## [74092] "plundered"         "moria"             "nothing"          
## [74095] "left"              "upper"             "halls"            
## [74098] "since"             "dwarves"           "fled"             
## [74101] "one"               "dares"             "seek"             
## [74104] "shafts"            "treasuries"        "deep"             
## [74107] "places"            "drowned"           "water"            
## [74110] "shadow"            "fear"              "dwarves"          
## [74113] "want"              "come"              "back"             
## [74116] "asked"             "sam"               "mithril"          
## [74119] "answered"          "gandalf"           "wealth"           
## [74122] "moria"             "gold"              "jewels"           
## [74125] "toys"              "dwarves"           "iron"             
## [74128] "servant"           "things"            "found"            
## [74131] "true"              "especially"        "iron"             
## [74134] "need"              "delve"             "things"           
## [74137] "desired"           "obtain"            "traffic"          
## [74140] "alone"             "world"             "found"            
## [74143] "moria"             "silver"            "true"             
## [74146] "silver"            "called"            "mithril"          
## [74149] "elvish"            "name"              "dwarves"          
## [74152] "name"              "tell"              "worth"            
## [74155] "ten"               "times"             "gold"             
## [74158] "now"               "beyond"            "price"            
## [74161] "little"            "left"              "ground"           
## [74164] "even"              "orcs"              "dare"             
## [74167] "delve"             "lodes"             "lead"             
## [74170] "away"              "north"             "towards"          
## [74173] "caradhras"         "darkness"          "dwarves"          
## [74176] "tell"              "tale"              "even"             
## [74179] "mithril"           "foundation"        "wealth"           
## [74182] "also"              "destruction"       "delved"           
## [74185] "greedily"          "deep"              "disturbed"        
## [74188] "fled"              "durins"            "bane"             
## [74191] "brought"           "light"             "orcs"             
## [74194] "gathered"          "nearly"            "given"            
## [74197] "tribute"           "sauron"            "covets"           
## [74200] "mithril"           "folk"              "desired"          
## [74203] "beaten"            "like"              "copper"           
## [74206] "polished"          "like"              "glass"            
## [74209] "dwarves"           "make"              "metal"            
## [74212] "light"             "yet"               "harder"           
## [74215] "tempered"          "steel"             "beauty"           
## [74218] "like"              "common"            "silver"           
## [74221] "beauty"            "mithril"           "tarnish"          
## [74224] "grow"              "dim"               "elves"            
## [74227] "dearly"            "loved"             "among"            
## [74230] "many"              "uses"              "made"             
## [74233] "ithildin"          "starmoon"          "saw"              
## [74236] "upon"              "doors"             "bilbo"            
## [74239] "corslet"           "mithril"           "rings"            
## [74242] "thorin"            "gave"              "wonder"           
## [74245] "become"            "gathering"         "dust"             
## [74248] "still"             "michel"            "delving"          
## [74251] "mathom"            "house"             "suppose"          
## [74254] "cried"             "gimli"             "startled"         
## [74257] "silence"           "corslet"           "moria"            
## [74260] "silver"            "kingly"            "gift"             
## [74263] "yes"               "said"              "gandalf"          
## [74266] "never"             "told"              "worth"            
## [74269] "greater"           "value"             "whole"            
## [74272] "shire"             "everything"        "frodo"            
## [74275] "said"              "nothing"           "put"              
## [74278] "hand"              "tunic"             "touched"          
## [74281] "rings"             "mail"              "shirt"            
## [74284] "felt"              "staggered"         "think"            
## [74287] "walking"           "price"             "shire"            
## [74290] "jacket"            "bilbo"             "known"            
## [74293] "felt"              "doubt"             "bilbo"            
## [74296] "knew"              "quite"             "well"             
## [74299] "indeed"            "kingly"            "gift"             
## [74302] "now"               "thoughts"          "carried"          
## [74305] "away"              "dark"              "mines"            
## [74308] "rivendell"         "bilbo"             "bag"              
## [74311] "end"               "days"              "bilbo"            
## [74314] "still"             "wished"            "heart"            
## [74317] "back"              "days"              "mowing"           
## [74320] "lawn"              "pottering"         "among"            
## [74323] "flowers"           "never"             "heard"            
## [74326] "moria"             "mithril"           "ring"             
## [74329] "deep"              "silence"           "fell"             
## [74332] "one"               "one"               "others"           
## [74335] "fell"              "asleep"            "frodo"            
## [74338] "guard"             "breath"            "came"             
## [74341] "unseen"            "doors"             "deep"             
## [74344] "places"            "dread"             "came"             
## [74347] "hands"             "cold"              "brow"             
## [74350] "damp"              "listened"          "mind"             
## [74353] "given"             "listening"         "nothing"          
## [74356] "else"              "two"               "slow"             
## [74359] "hours"             "heard"             "sound"            
## [74362] "even"              "imagined"          "echo"             
## [74365] "footfall"          "watch"             "nearly"           
## [74368] "far"               "guessed"           "western"          
## [74371] "archway"           "stood"             "fancied"          
## [74374] "see"               "two"               "pale"             
## [74377] "points"            "light"             "almost"           
## [74380] "like"              "luminous"          "eyes"             
## [74383] "started"           "head"              "nodded"           
## [74386] "must"              "nearly"            "fallen"           
## [74389] "asleep"            "guard"             "thought"          
## [74392] "edge"              "dream"             "stood"            
## [74395] "rubbed"            "eyes"              "remained"         
## [74398] "standing"          "peering"           "dark"             
## [74401] "relieved"          "legolas"           "lay"              
## [74404] "quickly"           "went"              "sleep"            
## [74407] "seemed"            "dream"             "went"             
## [74410] "heard"             "whispers"          "saw"              
## [74413] "two"               "pale"              "points"           
## [74416] "light"             "approaching"       "slowly"           
## [74419] "woke"              "found"             "others"           
## [74422] "speaking"          "softly"            "near"             
## [74425] "dim"               "light"             "falling"          
## [74428] "face"              "high"              "eastern"          
## [74431] "archway"           "shaft"             "near"             
## [74434] "roof"              "came"              "long"             
## [74437] "pale"              "gleam"             "across"           
## [74440] "hall"              "northern"          "arch"             
## [74443] "light"             "also"              "glimmered"        
## [74446] "faint"             "distantly"         "frodo"            
## [74449] "sat"               "good"              "morning"          
## [74452] "said"              "gandalf"           "morning"          
## [74455] "last"              "right"             "see"              
## [74458] "high"              "east"              "side"             
## [74461] "moria"             "today"             "find"             
## [74464] "great"             "gates"             "see"              
## [74467] "waters"            "mirrormere"        "lying"            
## [74470] "dimrill"           "dale"              "us"               
## [74473] "shall"             "glad"              "said"             
## [74476] "gimli"             "looked"            "moria"            
## [74479] "great"             "become"            "dark"             
## [74482] "dreadful"          "found"             "sign"             
## [74485] "kindred"           "doubt"             "now"              
## [74488] "balin"             "ever"              "came"             
## [74491] "breakfasted"       "gandalf"           "decided"          
## [74494] "go"                "tired"             "shall"            
## [74497] "rest"              "better"            "outside"          
## [74500] "said"              "think"             "none"             
## [74503] "us"                "will"              "wish"             
## [74506] "spend"             "another"           "night"            
## [74509] "moria"             "indeed"            "said"             
## [74512] "boromir"           "way"               "shall"            
## [74515] "take"              "yonder"            "eastward"         
## [74518] "arch"              "maybe"             "said"             
## [74521] "gandalf"           "know"              "yet"              
## [74524] "exactly"           "unless"            "quite"            
## [74527] "astray"            "guess"             "north"            
## [74530] "great"             "gates"             "may"              
## [74533] "easy"              "find"              "right"            
## [74536] "road"              "eastern"           "arch"             
## [74539] "will"              "probably"          "prove"            
## [74542] "way"               "must"              "take"             
## [74545] "make"              "minds"             "look"             
## [74548] "us"                "let"               "us"               
## [74551] "go"                "towards"           "light"            
## [74554] "north"             "door"              "find"             
## [74557] "window"            "help"              "fear"             
## [74560] "light"             "comes"             "deep"             
## [74563] "shafts"            "following"         "lead"             
## [74566] "company"           "passed"            "northern"         
## [74569] "arch"              "found"             "wide"             
## [74572] "corridor"          "went"              "along"            
## [74575] "glimmer"           "grew"              "stronger"         
## [74578] "saw"               "came"              "doorway"          
## [74581] "right"             "high"              "flat"             
## [74584] "topped"            "stone"             "door"             
## [74587] "still"             "upon"              "hinges"           
## [74590] "standing"          "half"              "open"             
## [74593] "beyond"            "large"             "square"           
## [74596] "chamber"           "dimly"             "lit"              
## [74599] "eyes"              "long"              "time"             
## [74602] "dark"              "seemed"            "dazzlingly"       
## [74605] "bright"            "blinked"           "entered"          
## [74608] "feet"              "disturbed"         "deep"             
## [74611] "dust"              "upon"              "floor"            
## [74614] "stumbled"          "among"             "things"           
## [74617] "lying"             "doorway"           "whose"            
## [74620] "shapes"            "first"             "make"             
## [74623] "chamber"           "lit"               "wide"             
## [74626] "shaft"             "high"              "eastern"          
## [74629] "wall"              "slanted"           "upwards"          
## [74632] "far"               "small"             "square"           
## [74635] "patch"             "blue"              "sky"              
## [74638] "seen"              "light"             "shaft"            
## [74641] "fell"              "directly"          "table"            
## [74644] "middle"            "room"              "single"           
## [74647] "oblong"            "block"             "two"              
## [74650] "feet"              "high"              "upon"             
## [74653] "laid"              "great"             "slab"             
## [74656] "white"             "stone"             "looks"            
## [74659] "like"              "tomb"              "muttered"         
## [74662] "frodo"             "bent"              "forwards"         
## [74665] "curious"           "sense"             "foreboding"       
## [74668] "look"              "closely"           "gandalf"          
## [74671] "came"              "quickly"           "side"             
## [74674] "slab"              "runes"             "deeply"           
## [74677] "graven"            "daerons"           "runes"            
## [74680] "used"              "old"               "moria"            
## [74683] "said"              "gandalf"           "written"          
## [74686] "tongues"           "men"               "dwarves"          
## [74689] "balin"             "son"               "fundin"           
## [74692] "lord"              "moria"             "dead"             
## [74695] "said"              "frodo"             "feared"           
## [74698] "gimli"             "cast"              "hood"             
## [74701] "face"              "chapter"           "bridge"           
## [74704] "khazad"            "dûm"               "company"          
## [74707] "ring"              "stood"             "silent"           
## [74710] "beside"            "tomb"              "balin"            
## [74713] "frodo"             "thought"           "bilbo"            
## [74716] "long"              "friendship"        "dwarf"            
## [74719] "balins"            "visit"             "shire"            
## [74722] "long"              "ago"               "dusty"            
## [74725] "chamber"           "mountains"         "seemed"           
## [74728] "thousand"          "years"             "ago"              
## [74731] "side"              "world"             "length"           
## [74734] "stirred"           "looked"            "began"            
## [74737] "search"            "anything"          "give"             
## [74740] "tidings"           "balins"            "fate"             
## [74743] "show"              "become"            "folk"             
## [74746] "another"           "smaller"           "door"             
## [74749] "side"              "chamber"           "shaft"            
## [74752] "doors"             "now"               "see"              
## [74755] "many"              "bones"             "lying"            
## [74758] "among"             "broken"            "swords"           
## [74761] "axe"               "heads"             "cloven"           
## [74764] "shields"           "helms"             "swords"           
## [74767] "crooked"           "orc"               "scimitars"        
## [74770] "blackened"         "blades"            "many"             
## [74773] "recesses"          "cut"               "rock"             
## [74776] "walls"             "large"             "iron"             
## [74779] "bound"             "chests"            "wood"             
## [74782] "broken"            "plundered"         "beside"           
## [74785] "shattered"         "lid"               "one"              
## [74788] "lay"               "remains"           "book"             
## [74791] "slashed"           "stabbed"           "partly"           
## [74794] "burned"            "stained"           "black"            
## [74797] "dark"              "marks"             "like"             
## [74800] "old"               "blood"             "little"           
## [74803] "read"              "gandalf"           "lifted"           
## [74806] "carefully"         "leaves"            "crackled"         
## [74809] "broke"             "laid"              "slab"             
## [74812] "pored"             "time"              "without"          
## [74815] "speaking"          "frodo"             "gimli"            
## [74818] "standing"          "side"              "see"              
## [74821] "gingerly"          "turned"            "leaves"           
## [74824] "written"           "many"              "different"        
## [74827] "hands"             "runes"             "moria"            
## [74830] "dale"              "elvish"            "script"           
## [74833] "last"              "gandalf"           "looked"           
## [74836] "seems"             "record"            "fortunes"         
## [74839] "balins"            "folk"              "said"             
## [74842] "guess"             "began"             "coming"           
## [74845] "dimrill"           "dale"              "nigh"             
## [74848] "thirty"            "years"             "ago"              
## [74851] "pages"             "seem"              "numbers"          
## [74854] "referring"         "years"             "arrival"          
## [74857] "top"               "page"              "marked"           
## [74860] "one"               "three"             "least"            
## [74863] "two"               "missing"           "beginning"        
## [74866] "listen"            "drove"             "orcs"             
## [74869] "great"             "gate"              "guard"            
## [74872] "think"             "next"              "word"             
## [74875] "blurred"           "burned"            "probably"         
## [74878] "room"              "slew"              "many"             
## [74881] "bright"            "think"             "sun"              
## [74884] "dale"              "flói"              "killed"           
## [74887] "arrow"             "slew"              "great"            
## [74890] "blur"              "followed"          "flói"             
## [74893] "grass"             "near"              "mirror"           
## [74896] "mere"              "next"              "line"             
## [74899] "two"               "read"              "comes"            
## [74902] "taken"             "twentyfirst"       "hall"             
## [74905] "north"             "end"               "dwell"            
## [74908] "read"              "shaft"             "mentioned"        
## [74911] "balin"             "set"               "seat"             
## [74914] "chamber"           "mazarbul"          "chamber"          
## [74917] "records"           "said"              "gimli"            
## [74920] "guess"             "now"               "stand"            
## [74923] "well"              "can"               "read"             
## [74926] "long"              "way"               "said"             
## [74929] "gandalf"           "except"            "word"             
## [74932] "gold"              "durins"            "axe"              
## [74935] "something"         "helm"              "balin"            
## [74938] "now"               "lord"              "moria"            
## [74941] "seems"             "end"               "chapter"          
## [74944] "stars"             "another"           "hand"             
## [74947] "begins"            "can"               "see"              
## [74950] "found"             "truesilver"        "later"            
## [74953] "word"              "wellforged"        "something"        
## [74956] "mithril"           "last"              "two"              
## [74959] "lines"             "óin"               "seek"             
## [74962] "upper"             "armouries"         "third"            
## [74965] "deep"              "something"         "go"               
## [74968] "westwards"         "blur"              "hollin"           
## [74971] "gate"              "gandalf"           "paused"           
## [74974] "set"               "leaves"            "aside"            
## [74977] "several"           "pages"             "sort"             
## [74980] "rather"            "hastily"           "written"          
## [74983] "much"              "damaged"           "said"             
## [74986] "can"               "make"              "little"           
## [74989] "light"             "now"               "must"             
## [74992] "number"            "leaves"            "missing"          
## [74995] "begin"             "numbered"          "five"             
## [74998] "fifth"             "year"              "colony"           
## [75001] "suppose"           "let"               "see"              
## [75004] "cut"               "stained"           "read"             
## [75007] "might"             "better"            "sunlight"         
## [75010] "wait"              "something"         "large"            
## [75013] "bold"              "hand"              "using"            
## [75016] "elvish"            "script"            "oris"             
## [75019] "hand"              "said"              "gimli"            
## [75022] "looking"           "wizards"           "arm"              
## [75025] "write"             "well"              "speedily"         
## [75028] "often"             "used"              "elvish"           
## [75031] "characters"        "fear"              "ill"              
## [75034] "tidings"           "record"            "fair"             
## [75037] "hand"              "said"              "gandalf"          
## [75040] "first"             "clear"             "word"             
## [75043] "sorrow"            "rest"              "line"             
## [75046] "lost"              "unless"            "ends"             
## [75049] "estre"             "yes"               "must"             
## [75052] "yestre"            "followed"          "day"              
## [75055] "tenth"             "novembre"          "balin"            
## [75058] "lord"              "moria"             "fell"             
## [75061] "dimrill"           "dale"              "went"             
## [75064] "alone"             "look"              "mirror"           
## [75067] "mere"              "orc"               "shot"             
## [75070] "behind"            "stone"             "slew"             
## [75073] "orc"               "hut"               "many"             
## [75076] "east"              "silverlode"        "remainder"        
## [75079] "page"              "blurred"           "can"              
## [75082] "hardly"            "make"              "anything"         
## [75085] "think"             "can"               "read"             
## [75088] "barred"            "gates"             "can"              
## [75091] "hold"              "long"              "perhaps"          
## [75094] "horrible"          "suffer"            "poor"             
## [75097] "balin"             "seems"             "kept"             
## [75100] "title"             "took"              "less"             
## [75103] "five"              "years"             "wonder"           
## [75106] "happened"          "afterwards"        "time"             
## [75109] "puzzle"            "last"              "pages"            
## [75112] "last"              "page"              "paused"           
## [75115] "sighed"            "grim"              "reading"          
## [75118] "said"              "fear"              "end"              
## [75121] "cruel"             "listen"            "get"              
## [75124] "get"               "taken"             "bridge"           
## [75127] "second"            "hall"              "frár"             
## [75130] "lóni"              "náli"              "fell"             
## [75133] "four"              "lines"             "smeared"          
## [75136] "can"               "read"              "went"             
## [75139] "days"              "ago"               "last"             
## [75142] "lines"             "run"               "pool"             
## [75145] "wall"              "westgate"          "watcher"          
## [75148] "water"             "took"              "óin"              
## [75151] "get"               "end"               "comes"            
## [75154] "drums"             "drums"             "deep"             
## [75157] "wonder"            "means"             "last"             
## [75160] "thing"             "written"           "trailing"         
## [75163] "scrawl"            "elf"               "letters"          
## [75166] "coming"            "nothing"           "gandalf"          
## [75169] "paused"            "stood"             "silent"           
## [75172] "thought"           "sudden"            "dread"            
## [75175] "horror"            "chamber"           "fell"             
## [75178] "company"           "get"               "muttered"         
## [75181] "gimli"             "well"              "us"               
## [75184] "pool"              "sunk"              "little"           
## [75187] "watcher"           "sleeping"          "southern"         
## [75190] "end"               "gandalf"           "raised"           
## [75193] "head"              "looked"            "round"            
## [75196] "seem"              "made"              "last"             
## [75199] "stand"             "doors"             "said"             
## [75202] "many"              "left"              "time"             
## [75205] "ended"             "attempt"           "retake"           
## [75208] "moria"             "valiant"           "foolish"          
## [75211] "time"              "come"              "yet"              
## [75214] "now"               "fear"              "must"             
## [75217] "say"               "farewell"          "balin"            
## [75220] "son"               "fundin"            "must"             
## [75223] "lie"               "halls"             "fathers"          
## [75226] "will"              "take"              "book"             
## [75229] "book"              "mazarbul"          "look"             
## [75232] "closely"           "later"             "better"           
## [75235] "keep"              "gimli"             "take"             
## [75238] "back"              "dáin"              "get"              
## [75241] "chance"            "will"              "interest"         
## [75244] "though"            "will"              "grieve"           
## [75247] "deeply"            "come"              "let"              
## [75250] "us"                "go"                "morning"          
## [75253] "passing"           "way"               "shall"            
## [75256] "go"                "asked"             "boromir"          
## [75259] "back"              "hall"              "answered"         
## [75262] "gandalf"           "visit"             "room"             
## [75265] "vain"              "now"               "know"             
## [75268] "must"              "gimli"             "says"             
## [75271] "chamber"           "mazarbul"          "hall"             
## [75274] "must"              "twenty"            "first"            
## [75277] "north"             "end"               "therefore"        
## [75280] "leave"             "eastern"           "arch"             
## [75283] "hall"              "bear"              "right"            
## [75286] "south"             "go"                "downwards"        
## [75289] "twenty"            "first"             "hall"             
## [75292] "seventh"           "level"             "six"              
## [75295] "level"             "gates"             "come"             
## [75298] "now"               "back"              "hall"             
## [75301] "gandalf"           "hardly"            "spoken"           
## [75304] "words"             "came"              "great"            
## [75307] "noise"             "rolling"           "boom"             
## [75310] "seemed"            "come"              "depths"           
## [75313] "far"               "tremble"           "stone"            
## [75316] "feet"              "sprang"            "towards"          
## [75319] "door"              "alarm"             "doom"             
## [75322] "doom"              "rolled"            "huge"             
## [75325] "hands"             "turning"           "caverns"          
## [75328] "moria"             "vast"              "drum"             
## [75331] "came"              "echoing"           "blast"            
## [75334] "great"             "horn"              "blown"            
## [75337] "hall"              "answering"         "horns"            
## [75340] "harsh"             "cries"             "heard"            
## [75343] "hurrying"          "sound"             "many"             
## [75346] "feet"              "coming"            "cried"            
## [75349] "legolas"           "get"               "said"             
## [75352] "gimli"             "trapped"           "cried"            
## [75355] "gandalf"           "delay"             "caught"           
## [75358] "just"              "will"              "see"              
## [75361] "doom"              "doom"              "came"             
## [75364] "drum"              "beat"              "walls"            
## [75367] "shook"             "slam"              "doors"            
## [75370] "wedge"             "shouted"           "aragorn"          
## [75373] "keep"              "packs"             "long"             
## [75376] "can"               "may"               "get"              
## [75379] "chance"            "cut"               "way"              
## [75382] "yet"               "said"              "gandalf"          
## [75385] "must"              "get"               "shut"             
## [75388] "keep"              "east"              "door"             
## [75391] "ajar"              "will"              "go"               
## [75394] "way"               "get"               "chance"           
## [75397] "another"           "harsh"             "horn"             
## [75400] "call"              "shrill"            "cries"            
## [75403] "rang"              "feet"              "coming"           
## [75406] "corridor"          "ring"              "clatter"          
## [75409] "company"           "drew"              "swords"           
## [75412] "glamdring"         "shone"             "pale"             
## [75415] "light"             "sting"             "glinted"          
## [75418] "edges"             "boromir"           "set"              
## [75421] "shoulder"          "western"           "door"             
## [75424] "wait"              "moment"            "close"            
## [75427] "yet"               "said"              "gandalf"          
## [75430] "sprang"            "forward"           "boromirs"         
## [75433] "side"              "drew"              "full"             
## [75436] "height"            "comes"             "hither"           
## [75439] "disturb"           "rest"              "balin"            
## [75442] "lord"              "moria"             "cried"            
## [75445] "loud"              "voice"             "rush"             
## [75448] "hoarse"            "laughter"          "like"             
## [75451] "fall"              "sliding"           "stones"           
## [75454] "pit"               "amid"              "clamour"          
## [75457] "deep"              "voice"             "raised"           
## [75460] "command"           "doom"              "boom"             
## [75463] "doom"              "went"              "drums"            
## [75466] "deep"              "quick"             "movement"         
## [75469] "gandalf"           "stepped"           "narrow"           
## [75472] "opening"           "door"              "thrust"           
## [75475] "forward"           "staff"             "dazzling"         
## [75478] "flash"             "lit"               "chamber"          
## [75481] "passage"           "outside"           "instant"          
## [75484] "wizard"            "looked"            "arrows"           
## [75487] "whined"            "whistled"          "corridor"         
## [75490] "sprang"            "back"              "orcs"             
## [75493] "many"              "said"              "large"            
## [75496] "evil"              "black"             "uruks"            
## [75499] "mordor"            "moment"            "hanging"          
## [75502] "back"              "something"         "else"             
## [75505] "great"             "cave"              "troll"            
## [75508] "think"             "one"               "hope"             
## [75511] "escape"            "way"               "hope"             
## [75514] "come"              "door"              "well"             
## [75517] "said"              "boromir"           "sound"            
## [75520] "outside"           "yet"               "said"             
## [75523] "aragorn"           "standing"          "eastern"          
## [75526] "door"              "listening"         "passage"          
## [75529] "side"              "plunges"           "straight"         
## [75532] "stair"             "plainly"           "lead"             
## [75535] "back"              "towards"           "hall"             
## [75538] "good"              "flying"            "blindly"          
## [75541] "way"               "pursuit"           "just"             
## [75544] "behind"            "block"             "door"             
## [75547] "key"               "gone"              "lock"             
## [75550] "broken"            "opens"             "inwards"          
## [75553] "must"              "something"         "delay"            
## [75556] "enemy"             "first"             "will"             
## [75559] "make"              "fear"              "chamber"          
## [75562] "mazarbul"          "said"              "grimly"           
## [75565] "feeling"           "edge"              "sword"            
## [75568] "andúril"           "heavy"             "feet"             
## [75571] "heard"             "corridor"          "boromir"          
## [75574] "flung"             "door"              "heaved"           
## [75577] "wedged"            "broken"            "sword"            
## [75580] "blades"            "splinters"         "wood"             
## [75583] "company"           "retreated"         "side"             
## [75586] "chamber"           "chance"            "fly"              
## [75589] "yet"               "blow"              "door"             
## [75592] "made"              "quiver"            "began"            
## [75595] "grind"             "slowly"            "open"             
## [75598] "driving"           "back"              "wedges"           
## [75601] "huge"              "arm"               "shoulder"         
## [75604] "dark"              "skin"              "greenish"         
## [75607] "scales"            "thrust"            "widening"         
## [75610] "gap"               "great"             "flat"             
## [75613] "toeless"           "foot"              "forced"           
## [75616] "dead"              "silence"           "outside"          
## [75619] "boromir"           "leaped"            "forward"          
## [75622] "hewed"             "arm"               "might"            
## [75625] "sword"             "rang"              "glanced"          
## [75628] "aside"             "fell"              "shaken"           
## [75631] "hand"              "blade"             "notched"          
## [75634] "suddenly"          "surprise"          "frodo"            
## [75637] "felt"              "hot"               "wrath"            
## [75640] "blaze"             "heart"             "shire"            
## [75643] "cried"             "springing"         "beside"           
## [75646] "boromir"           "stooped"           "stabbed"          
## [75649] "sting"             "hideous"           "foot"             
## [75652] "bellow"            "foot"              "jerked"           
## [75655] "back"              "nearly"            "wrenching"        
## [75658] "sting"             "frodos"            "arm"              
## [75661] "black"             "drops"             "dripped"          
## [75664] "blade"             "smoked"            "floor"            
## [75667] "boromir"           "hurled"            "door"             
## [75670] "slammed"           "one"               "shire"            
## [75673] "cried"             "aragorn"           "hobbits"          
## [75676] "bite"              "deep"              "good"             
## [75679] "blade"             "frodo"             "son"              
## [75682] "drogo"             "crash"             "door"             
## [75685] "followed"          "crash"             "crash"            
## [75688] "rams"              "hammers"           "beating"          
## [75691] "cracked"           "staggered"         "back"             
## [75694] "opening"           "grew"              "suddenly"         
## [75697] "wide"              "arrows"            "came"             
## [75700] "whistling"         "struck"            "northern"         
## [75703] "wall"              "fell"              "harmlessly"       
## [75706] "floor"             "horn"              "blast"            
## [75709] "rush"              "feet"              "orcs"             
## [75712] "one"               "another"           "leaped"           
## [75715] "chamber"           "many"              "company"          
## [75718] "count"             "affray"            "sharp"            
## [75721] "orcs"              "dismayed"          "fierceness"       
## [75724] "defence"           "legolas"           "shot"             
## [75727] "two"               "throat"            "gimli"            
## [75730] "hewed"             "legs"              "another"          
## [75733] "sprung"            "balins"            "tomb"             
## [75736] "boromir"           "aragorn"           "slew"             
## [75739] "many"              "thirteen"          "fallen"           
## [75742] "rest"              "fled"              "shrieking"        
## [75745] "leaving"           "defenders"         "unharmed"         
## [75748] "except"            "sam"               "scratch"          
## [75751] "along"             "scalp"             "quick"            
## [75754] "duck"              "saved"             "felled"           
## [75757] "orc"               "sturdy"            "thrust"           
## [75760] "barrow"            "blade"             "fire"             
## [75763] "smouldering"       "brown"             "eyes"             
## [75766] "made"              "ted"               "sandyman"         
## [75769] "step"              "backwards"         "seen"             
## [75772] "now"               "time"              "cried"            
## [75775] "gandalf"           "let"               "us"               
## [75778] "go"                "troll"             "returns"          
## [75781] "even"              "retreated"         "pippin"           
## [75784] "merry"             "reached"           "stair"            
## [75787] "outside"           "huge"              "orc"              
## [75790] "chieftain"         "almost"            "man"              
## [75793] "high"              "clad"              "black"            
## [75796] "mail"              "head"              "foot"             
## [75799] "leaped"            "chamber"           "behind"           
## [75802] "followers"         "clustered"         "doorway"          
## [75805] "broad"             "flat"              "face"             
## [75808] "swart"             "eyes"              "like"             
## [75811] "coals"             "tongue"            "red"              
## [75814] "wielded"           "great"             "spear"            
## [75817] "thrust"            "huge"              "hide"             
## [75820] "shield"            "turned"            "boromirs"         
## [75823] "sword"             "bore"              "backwards"        
## [75826] "throwing"          "ground"            "diving"           
## [75829] "aragorns"          "blow"              "speed"            
## [75832] "striking"          "snake"             "charged"          
## [75835] "company"           "thrust"            "spear"            
## [75838] "straight"          "frodo"             "blow"             
## [75841] "caught"            "right"             "side"             
## [75844] "frodo"             "hurled"            "wall"             
## [75847] "pinned"            "sam"               "cry"              
## [75850] "hacked"            "spear"             "shaft"            
## [75853] "broke"             "even"              "orc"              
## [75856] "flung"             "truncheon"         "swept"            
## [75859] "scimitar"          "andúril"           "came"             
## [75862] "upon"              "helm"              "flash"            
## [75865] "like"              "flame"             "helm"             
## [75868] "burst"             "asunder"           "orc"              
## [75871] "fell"              "cloven"            "head"             
## [75874] "followers"         "fled"              "howling"          
## [75877] "boromir"           "aragorn"           "sprang"           
## [75880] "doom"              "doom"              "went"             
## [75883] "drums"             "deep"              "great"            
## [75886] "voice"             "rolled"            "now"              
## [75889] "shouted"           "gandalf"           "now"              
## [75892] "last"              "chance"            "run"              
## [75895] "aragorn"           "picked"            "frodo"            
## [75898] "lay"               "wall"              "made"             
## [75901] "stair"             "pushing"           "merry"            
## [75904] "pippin"            "front"             "others"           
## [75907] "followed"          "gimli"             "dragged"          
## [75910] "away"              "legolas"           "spite"            
## [75913] "peril"             "lingered"          "balins"           
## [75916] "tomb"              "head"              "bowed"            
## [75919] "boromir"           "hauled"            "eastern"          
## [75922] "door"              "grinding"          "upon"             
## [75925] "hinges"            "great"             "iron"             
## [75928] "rings"             "either"            "side"             
## [75931] "fastened"          "right"             "gasped"           
## [75934] "frodo"             "can"               "walk"             
## [75937] "put"               "aragorn"           "nearly"           
## [75940] "dropped"           "amazement"         "thought"          
## [75943] "dead"              "cried"             "yet"              
## [75946] "said"              "gandalf"           "time"             
## [75949] "wonder"            "go"                "stairs"           
## [75952] "wait"              "minutes"           "bottom"           
## [75955] "come"              "soon"              "go"               
## [75958] "go"                "quickly"           "choose"           
## [75961] "paths"             "leading"           "right"            
## [75964] "downwards"         "leave"             "hold"             
## [75967] "door"              "alone"             "said"             
## [75970] "aragorn"           "say"               "said"             
## [75973] "gandalf"           "fiercely"          "swords"           
## [75976] "use"               "go"                "passage"          
## [75979] "lit"               "shaft"             "utterly"          
## [75982] "dark"              "groped"            "way"              
## [75985] "long"              "flight"            "steps"            
## [75988] "looked"            "back"              "see"              
## [75991] "nothing"           "except"            "high"             
## [75994] "faint"             "glimmer"           "wizards"          
## [75997] "staff"             "seemed"            "still"            
## [76000] "standing"          "guard"             "closed"           
## [76003] "door"              "frodo"             "breathed"         
## [76006] "heavily"           "leaned"            "sam"              
## [76009] "put"               "arms"              "stood"            
## [76012] "peering"           "stairs"            "darkness"         
## [76015] "frodo"             "thought"           "hear"             
## [76018] "voice"             "gandalf"           "muttering"        
## [76021] "words"             "ran"               "sloping"          
## [76024] "roof"              "sighing"           "echo"             
## [76027] "catch"             "said"              "walls"            
## [76030] "seemed"            "trembling"         "every"            
## [76033] "now"               "drum"              "beats"            
## [76036] "throbbed"          "rolled"            "doom"             
## [76039] "doom"              "suddenly"          "top"              
## [76042] "stair"             "stab"              "white"            
## [76045] "light"             "dull"              "rumble"           
## [76048] "heavy"             "thud"              "drum"             
## [76051] "beats"             "broke"             "wildly"           
## [76054] "doom"              "boom"              "doom"             
## [76057] "boom"              "stopped"           "gandalf"          
## [76060] "came"              "flying"            "steps"            
## [76063] "fell"              "ground"            "midst"            
## [76066] "company"           "well"              "well"             
## [76069] "thats"             "said"              "wizard"           
## [76072] "struggling"        "feet"              "done"             
## [76075] "met"               "match"             "nearly"           
## [76078] "destroyed"         "dont"              "stand"            
## [76081] "go"                "will"              "without"          
## [76084] "light"             "rather"            "shaken"           
## [76087] "go"                "go"                "gimli"            
## [76090] "come"              "ahead"             "keep"             
## [76093] "close"             "behind"            "stumbled"         
## [76096] "wondering"         "happened"          "doom"             
## [76099] "doom"              "went"              "drum"             
## [76102] "beats"             "now"               "sounded"          
## [76105] "muffled"           "far"               "away"             
## [76108] "following"         "sound"             "pursuit"          
## [76111] "neither"           "tramp"             "feet"             
## [76114] "voice"             "gandalf"           "took"             
## [76117] "turns"             "right"             "left"             
## [76120] "passage"           "seemed"            "going"            
## [76123] "direction"         "desired"           "every"            
## [76126] "now"               "descended"         "flight"           
## [76129] "steps"             "fifty"             "lower"            
## [76132] "level"             "moment"            "chief"            
## [76135] "danger"            "dark"              "see"              
## [76138] "descent"           "came"              "put"              
## [76141] "feet"              "emptiness"         "gandalf"          
## [76144] "felt"              "ground"            "staff"            
## [76147] "like"              "blind"             "man"              
## [76150] "end"               "hour"              "gone"             
## [76153] "mile"              "maybe"             "little"           
## [76156] "descended"         "many"              "flights"          
## [76159] "stairs"            "still"             "sound"            
## [76162] "pursuit"           "almost"            "began"            
## [76165] "hope"              "escape"            "bottom"           
## [76168] "seventh"           "flight"            "gandalf"          
## [76171] "halted"            "getting"           "hot"              
## [76174] "gasped"            "least"             "level"            
## [76177] "gates"             "now"               "soon"             
## [76180] "think"             "look"              "left"             
## [76183] "hand"              "turn"              "take"             
## [76186] "us"                "east"              "hope"             
## [76189] "far"               "weary"             "must"             
## [76192] "rest"              "moment"            "even"             
## [76195] "orcs"              "ever"              "spawned"          
## [76198] "us"                "gimli"             "took"             
## [76201] "arm"               "helped"            "seat"             
## [76204] "step"              "happened"          "away"             
## [76207] "door"              "asked"             "meet"             
## [76210] "beater"            "drums"             "know"             
## [76213] "answered"          "gandalf"           "found"            
## [76216] "suddenly"          "faced"             "something"        
## [76219] "met"               "think"             "nothing"          
## [76222] "try"               "put"               "shutting"         
## [76225] "spell"             "door"              "know"             
## [76228] "many"              "things"            "kind"             
## [76231] "rightly"           "requires"          "time"             
## [76234] "even"              "door"              "can"              
## [76237] "broken"            "strength"          "stood"            
## [76240] "hear"              "orc"               "voices"           
## [76243] "side"              "moment"            "thought"          
## [76246] "burst"             "open"              "hear"             
## [76249] "said"              "seemed"            "talking"          
## [76252] "hideous"           "language"          "caught"           
## [76255] "ghâsh"             "fire"              "something"        
## [76258] "came"              "chamber"           "felt"             
## [76261] "door"              "orcs"              "afraid"           
## [76264] "fell"              "silent"            "laid"             
## [76267] "hold"              "iron"              "ring"             
## [76270] "perceived"         "spell"             "guess"            
## [76273] "never"             "felt"              "challenge"        
## [76276] "counter"           "spell"             "terrible"         
## [76279] "nearly"            "broke"             "instant"          
## [76282] "door"              "left"              "control"          
## [76285] "began"             "open"              "speak"            
## [76288] "word"              "command"           "proved"           
## [76291] "great"             "strain"            "door"             
## [76294] "burst"             "pieces"            "something"        
## [76297] "dark"              "cloud"             "blocking"         
## [76300] "light"             "inside"            "thrown"           
## [76303] "backwards"         "stairs"            "wall"             
## [76306] "gave"              "way"               "roof"             
## [76309] "chamber"           "well"              "think"            
## [76312] "afraid"            "balin"             "buried"           
## [76315] "deep"              "maybe"             "something"        
## [76318] "else"              "buried"            "say"              
## [76321] "least"             "passage"           "behind"           
## [76324] "us"                "completely"        "blocked"          
## [76327] "ah"                "never"             "felt"             
## [76330] "spent"             "passing"           "now"              
## [76333] "frodo"             "time"              "say"              
## [76336] "never"             "delighted"         "life"             
## [76339] "spoke"             "feared"            "brave"            
## [76342] "dead"              "hobbit"            "aragorn"          
## [76345] "carrying"          "said"              "frodo"            
## [76348] "alive"             "whole"             "think"            
## [76351] "bruised"           "pain"              "bad"              
## [76354] "well"              "said"              "aragorn"          
## [76357] "can"               "say"               "hobbits"          
## [76360] "made"              "stuff"             "tough"            
## [76363] "never"             "met"               "like"             
## [76366] "known"             "spoken"            "softer"           
## [76369] "inn"               "bree"              "spear"            
## [76372] "thrust"            "skewered"          "wild"             
## [76375] "boar"              "well"              "skewer"           
## [76378] "glad"              "say"               "said"             
## [76381] "frodo"             "though"            "feel"             
## [76384] "caught"            "hammer"            "anvil"            
## [76387] "said"              "found"             "breathing"        
## [76390] "painful"           "take"              "bilbo"            
## [76393] "said"              "gandalf"           "meets"            
## [76396] "eye"               "said"              "long"             
## [76399] "ago"               "frodo"             "wondered"         
## [76402] "remark"            "meant"             "said"             
## [76405] "now"               "went"              "long"             
## [76408] "gimli"             "spoke"             "keen"             
## [76411] "eyes"              "dark"              "think"            
## [76414] "said"              "light"             "ahead"            
## [76417] "daylight"          "red"               "can"              
## [76420] "ghâsh"             "muttered"          "gandalf"          
## [76423] "wonder"            "meant"             "lower"            
## [76426] "levels"            "fire"              "still"            
## [76429] "can"               "go"                "soon"             
## [76432] "light"             "became"            "unmistakable"     
## [76435] "seen"              "flickering"        "glowing"          
## [76438] "walls"             "away"              "passage"          
## [76441] "now"               "see"               "way"              
## [76444] "front"             "road"              "sloped"           
## [76447] "swiftly"           "way"               "ahead"            
## [76450] "stood"             "low"               "archway"          
## [76453] "glowing"           "light"             "came"             
## [76456] "air"               "became"            "hot"              
## [76459] "came"              "arch"              "gandalf"          
## [76462] "went"              "signing"           "wait"             
## [76465] "stood"             "just"              "beyond"           
## [76468] "opening"           "saw"               "face"             
## [76471] "lit"               "red"               "glow"             
## [76474] "quickly"           "stepped"           "back"             
## [76477] "new"               "devilry"           "said"             
## [76480] "devised"           "welcome"           "doubt"            
## [76483] "know"              "now"               "reached"          
## [76486] "first"             "deep"              "level"            
## [76489] "immediately"       "gates"             "second"           
## [76492] "hall"              "old"               "moria"            
## [76495] "gates"             "near"              "away"             
## [76498] "beyond"            "eastern"           "end"              
## [76501] "left"              "quarter"           "mile"             
## [76504] "across"            "bridge"            "broad"            
## [76507] "stair"             "along"             "wide"             
## [76510] "road"              "first"             "hall"             
## [76513] "come"              "look"              "peered"           
## [76516] "another"           "cavernous"         "hall"             
## [76519] "loftier"           "far"               "longer"           
## [76522] "one"               "slept"             "near"             
## [76525] "eastern"           "end"               "westward"         
## [76528] "ran"               "away"              "darkness"         
## [76531] "centre"            "stalked"           "double"           
## [76534] "line"              "towering"          "pillars"          
## [76537] "carved"            "like"              "boles"            
## [76540] "mighty"            "trees"             "whose"            
## [76543] "boughs"            "upheld"            "roof"             
## [76546] "branching"         "tracery"           "stone"            
## [76549] "stems"             "smooth"            "black"            
## [76552] "red"               "glow"              "darkly"           
## [76555] "mirrored"          "sides"             "right"            
## [76558] "across"            "floor"             "close"            
## [76561] "feet"              "two"               "huge"             
## [76564] "pillars"           "great"             "fissure"          
## [76567] "opened"            "fierce"            "red"              
## [76570] "light"             "came"              "now"              
## [76573] "flames"            "licked"            "brink"            
## [76576] "curled"            "bases"             "columns"          
## [76579] "wisps"             "dark"              "smoke"            
## [76582] "wavered"           "hot"               "air"              
## [76585] "come"              "main"              "road"             
## [76588] "upper"             "halls"             "trapped"          
## [76591] "said"              "gandalf"           "let"              
## [76594] "us"                "hope"              "fire"             
## [76597] "now"               "lies"              "us"               
## [76600] "pursuit"           "come"              "time"             
## [76603] "lose"              "even"              "spoke"            
## [76606] "heard"             "pursuing"          "drum"             
## [76609] "beat"              "doom"              "doom"             
## [76612] "doom"              "away"              "beyond"           
## [76615] "shadows"           "western"           "end"              
## [76618] "hall"              "came"              "cries"            
## [76621] "horn"              "calls"             "doom"             
## [76624] "doom"              "pillars"           "seemed"           
## [76627] "tremble"           "flames"            "quiver"           
## [76630] "now"               "last"              "race"             
## [76633] "said"              "gandalf"           "sun"              
## [76636] "shining"           "outside"           "may"              
## [76639] "still"             "escape"            "turned"           
## [76642] "left"              "sped"              "across"           
## [76645] "smooth"            "floor"             "hall"             
## [76648] "distance"          "greater"           "looked"           
## [76651] "ran"               "heard"             "beat"             
## [76654] "echo"              "many"              "hurrying"         
## [76657] "feet"              "behind"            "shrill"           
## [76660] "yell"              "went"              "seen"             
## [76663] "ring"              "clash"             "steel"            
## [76666] "arrow"             "whistled"          "frodos"           
## [76669] "head"              "boromir"           "laughed"          
## [76672] "expect"            "said"              "fire"             
## [76675] "cut"               "wrong"             "side"             
## [76678] "look"              "ahead"             "called"           
## [76681] "gandalf"           "bridge"            "near"             
## [76684] "dangerous"         "narrow"            "suddenly"         
## [76687] "frodo"             "saw"               "black"            
## [76690] "chasm"             "end"               "hall"             
## [76693] "floor"             "vanished"          "fell"             
## [76696] "unknown"           "depth"             "outer"            
## [76699] "door"              "reached"           "slender"          
## [76702] "bridge"            "stone"             "without"          
## [76705] "kerb"              "rail"              "spanned"          
## [76708] "chasm"             "one"               "curving"          
## [76711] "spring"            "fifty"             "feet"             
## [76714] "ancient"           "defence"           "dwarves"          
## [76717] "enemy"             "might"             "capture"          
## [76720] "first"             "hall"              "outer"            
## [76723] "passages"          "pass"              "across"           
## [76726] "single"            "file"              "brink"            
## [76729] "gandalf"           "halted"            "others"           
## [76732] "came"              "pack"              "behind"           
## [76735] "lead"              "way"               "gimli"            
## [76738] "said"              "pippin"            "merry"            
## [76741] "next"              "straight"          "stair"            
## [76744] "beyond"            "door"              "arrows"           
## [76747] "fell"              "among"             "one"              
## [76750] "struck"            "frodo"             "sprang"           
## [76753] "back"              "another"           "pierced"          
## [76756] "gandalfs"          "hat"               "stuck"            
## [76759] "like"              "black"             "feather"          
## [76762] "frodo"             "looked"            "behind"           
## [76765] "beyond"            "fire"              "saw"              
## [76768] "swarming"          "black"             "figures"          
## [76771] "seemed"            "hundreds"          "orcs"             
## [76774] "brandished"        "spears"            "scimitars"        
## [76777] "shone"             "red"               "blood"            
## [76780] "firelight"         "doom"              "doom"             
## [76783] "rolled"            "drum"              "beats"            
## [76786] "growing"           "louder"            "louder"           
## [76789] "doom"              "doom"              "legolas"          
## [76792] "turned"            "set"               "arrow"            
## [76795] "string"            "though"            "long"             
## [76798] "shot"              "small"             "bow"              
## [76801] "drew"              "hand"              "fell"             
## [76804] "arrow"             "slipped"           "ground"           
## [76807] "gave"              "cry"               "dismay"           
## [76810] "fear"              "two"               "great"            
## [76813] "trolls"            "appeared"          "bore"             
## [76816] "great"             "slabs"             "stone"            
## [76819] "flung"             "serve"             "gangways"         
## [76822] "fire"              "trolls"            "filled"           
## [76825] "elf"               "terror"            "ranks"            
## [76828] "orcs"              "opened"            "crowded"          
## [76831] "away"              "afraid"            "something"        
## [76834] "coming"            "behind"            "seen"             
## [76837] "like"              "great"             "shadow"           
## [76840] "middle"            "dark"              "form"             
## [76843] "man"               "shape"             "maybe"            
## [76846] "yet"               "greater"           "power"            
## [76849] "terror"            "seemed"            "go"               
## [76852] "came"              "edge"              "fire"             
## [76855] "light"             "faded"             "cloud"            
## [76858] "bent"              "rush"              "leaped"           
## [76861] "across"            "fissure"           "flames"           
## [76864] "roared"            "greet"             "wreathed"         
## [76867] "black"             "smoke"             "swirled"          
## [76870] "air"               "streaming"         "mane"             
## [76873] "kindled"           "blazed"            "behind"           
## [76876] "right"             "hand"              "blade"            
## [76879] "like"              "stabbing"          "tongue"           
## [76882] "fire"              "left"              "held"             
## [76885] "whip"              "many"              "thongs"           
## [76888] "ai"                "ai"                "wailed"           
## [76891] "legolas"           "balrog"            "balrog"           
## [76894] "come"              "gimli"             "stared"           
## [76897] "wide"              "eyes"              "durins"           
## [76900] "bane"              "cried"             "letting"          
## [76903] "axe"               "fall"              "covered"          
## [76906] "face"              "balrog"            "muttered"         
## [76909] "gandalf"           "now"               "understand"       
## [76912] "faltered"          "leaned"            "heavily"          
## [76915] "staff"             "evil"              "fortune"          
## [76918] "already"           "weary"             "dark"             
## [76921] "figure"            "streaming"         "fire"             
## [76924] "raced"             "towards"           "orcs"             
## [76927] "yelled"            "poured"            "stone"            
## [76930] "gangways"          "boromir"           "raised"           
## [76933] "horn"              "blew"              "loud"             
## [76936] "challenge"         "rang"              "bellowed"         
## [76939] "like"              "shout"             "many"             
## [76942] "throats"           "cavernous"         "roof"             
## [76945] "moment"            "orcs"              "quailed"          
## [76948] "fiery"             "shadow"            "halted"           
## [76951] "echoes"            "died"              "suddenly"         
## [76954] "flame"             "blown"             "dark"             
## [76957] "wind"              "enemy"             "advanced"         
## [76960] "bridge"            "cried"             "gandalf"          
## [76963] "recalling"         "strength"          "fly"              
## [76966] "foe"               "beyond"            "must"             
## [76969] "hold"              "narrow"            "way"              
## [76972] "fly"               "aragorn"           "boromir"          
## [76975] "heed"              "command"           "still"            
## [76978] "held"              "ground"            "side"             
## [76981] "side"              "behind"            "gandalf"          
## [76984] "far"               "end"               "bridge"           
## [76987] "others"            "halted"            "just"             
## [76990] "within"            "doorway"           "halls"            
## [76993] "end"               "turned"            "unable"           
## [76996] "leave"             "leader"            "face"             
## [76999] "enemy"             "alone"             "balrog"           
## [77002] "reached"           "bridge"            "gandalf"          
## [77005] "stood"             "middle"            "span"             
## [77008] "leaning"           "staff"             "left"             
## [77011] "hand"              "hand"              "glamdring"        
## [77014] "gleamed"           "cold"              "white"            
## [77017] "enemy"             "halted"            "facing"           
## [77020] "shadow"            "reached"           "like"             
## [77023] "two"               "vast"              "wings"            
## [77026] "raised"            "whip"              "thongs"           
## [77029] "whined"            "cracked"           "fire"             
## [77032] "came"              "nostrils"          "gandalf"          
## [77035] "stood"             "firm"              "pass"             
## [77038] "said"              "orcs"              "stood"            
## [77041] "still"             "dead"              "silence"          
## [77044] "fell"              "servant"           "secret"           
## [77047] "fire"              "wielder"           "flame"            
## [77050] "anor"              "pass"              "dark"             
## [77053] "fire"              "will"              "avail"            
## [77056] "flame"             "udûn"              "go"               
## [77059] "back"              "shadow"            "pass"             
## [77062] "balrog"            "made"              "answer"           
## [77065] "fire"              "seemed"            "die"              
## [77068] "darkness"          "grew"              "stepped"          
## [77071] "forward"           "slowly"            "bridge"           
## [77074] "suddenly"          "drew"              "great"            
## [77077] "height"            "wings"             "spread"           
## [77080] "wall"              "wall"              "still"            
## [77083] "gandalf"           "seen"              "glimmering"       
## [77086] "gloom"             "seemed"            "small"            
## [77089] "altogether"        "alone"             "grey"             
## [77092] "bent"              "like"              "wizened"          
## [77095] "tree"              "onset"             "storm"            
## [77098] "shadow"            "red"               "sword"            
## [77101] "leaped"            "flaming"           "glamdring"        
## [77104] "glittered"         "white"             "answer"           
## [77107] "ringing"           "clash"             "stab"             
## [77110] "white"             "fire"              "balrog"           
## [77113] "fell"              "back"              "sword"            
## [77116] "flew"              "molten"            "fragments"        
## [77119] "wizard"            "swayed"            "bridge"           
## [77122] "stepped"           "back"              "pace"             
## [77125] "stood"             "still"             "pass"             
## [77128] "said"              "bound"             "balrog"           
## [77131] "leaped"            "full"              "upon"             
## [77134] "bridge"            "whip"              "whirled"          
## [77137] "hissed"            "stand"             "alone"            
## [77140] "cried"             "aragorn"           "suddenly"         
## [77143] "ran"               "back"              "along"            
## [77146] "bridge"            "elendil"           "shouted"          
## [77149] "gandalf"           "gondor"            "cried"            
## [77152] "boromir"           "leaped"            "moment"           
## [77155] "gandalf"           "lifted"            "staff"            
## [77158] "crying"            "aloud"             "smote"            
## [77161] "bridge"            "staff"             "broke"            
## [77164] "asunder"           "fell"              "hand"             
## [77167] "blinding"          "sheet"             "white"            
## [77170] "flame"             "sprang"            "bridge"           
## [77173] "cracked"           "right"             "balrogs"          
## [77176] "feet"              "broke"             "stone"            
## [77179] "upon"              "stood"             "crashed"          
## [77182] "gulf"              "rest"              "remained"         
## [77185] "poised"            "quivering"         "like"             
## [77188] "tongue"            "rock"              "thrust"           
## [77191] "emptiness"         "terrible"          "cry"              
## [77194] "balrog"            "fell"              "forward"          
## [77197] "shadow"            "plunged"           "vanished"         
## [77200] "even"              "fell"              "swung"            
## [77203] "whip"              "thongs"            "lashed"           
## [77206] "curled"            "wizards"           "knees"            
## [77209] "dragging"          "brink"             "staggered"        
## [77212] "fell"              "grasped"           "vainly"           
## [77215] "stone"             "slid"              "abyss"            
## [77218] "fly"               "fools"             "cried"            
## [77221] "gone"              "fires"             "went"             
## [77224] "blank"             "darkness"          "fell"             
## [77227] "company"           "stood"             "rooted"           
## [77230] "horror"            "staring"           "pit"              
## [77233] "even"              "aragorn"           "boromir"          
## [77236] "came"              "flying"            "back"             
## [77239] "rest"              "bridge"            "cracked"          
## [77242] "fell"              "cry"               "aragorn"          
## [77245] "roused"            "come"              "will"             
## [77248] "lead"              "now"               "called"           
## [77251] "must"              "obey"              "last"             
## [77254] "command"           "follow"            "stumbled"         
## [77257] "wildly"            "great"             "stairs"           
## [77260] "beyond"            "door"              "aragorn"          
## [77263] "leading"           "boromir"           "rear"             
## [77266] "top"               "wide"              "echoing"          
## [77269] "passage"           "along"             "fled"             
## [77272] "frodo"             "heard"             "sam"              
## [77275] "side"              "weeping"           "found"            
## [77278] "weeping"           "ran"               "doom"             
## [77281] "doom"              "doom"              "drum"             
## [77284] "beats"             "rolled"            "behind"           
## [77287] "mournful"          "now"               "slow"             
## [77290] "doom"              "ran"               "light"            
## [77293] "grew"              "great"             "shafts"           
## [77296] "pierced"           "roof"              "ran"              
## [77299] "swifter"           "passed"            "hall"             
## [77302] "bright"            "daylight"          "high"             
## [77305] "windows"           "east"              "fled"             
## [77308] "across"            "huge"              "broken"           
## [77311] "doors"             "passed"            "suddenly"         
## [77314] "great"             "gates"             "opened"           
## [77317] "arch"              "blazing"           "light"            
## [77320] "guard"             "orcs"              "crouching"        
## [77323] "shadows"           "behind"            "great"            
## [77326] "door"              "posts"             "towering"         
## [77329] "either"            "side"              "gates"            
## [77332] "shattered"         "cast"              "aragorn"          
## [77335] "smote"             "ground"            "captain"          
## [77338] "stood"             "path"              "rest"             
## [77341] "fled"              "terror"            "wrath"            
## [77344] "company"           "swept"             "past"             
## [77347] "took"              "heed"              "gates"            
## [77350] "ran"               "sprang"            "huge"             
## [77353] "age"               "worn"              "steps"            
## [77356] "threshold"         "moria"             "thus"             
## [77359] "last"              "came"              "beyond"           
## [77362] "hope"              "sky"               "felt"             
## [77365] "wind"              "faces"             "halt"             
## [77368] "bowshot"           "walls"             "dimrill"          
## [77371] "dale"              "lay"               "shadow"           
## [77374] "misty"             "mountains"         "lay"              
## [77377] "upon"              "eastwards"         "golden"           
## [77380] "light"             "land"              "one"              
## [77383] "hour"              "noon"              "sun"              
## [77386] "shining"           "clouds"            "white"            
## [77389] "high"              "looked"            "back"             
## [77392] "dark"              "yawned"            "archway"          
## [77395] "gates"             "mountain"          "shadow"           
## [77398] "faint"             "far"               "beneath"          
## [77401] "earth"             "rolled"            "slow"             
## [77404] "drum"              "beats"             "doom"             
## [77407] "thin"              "black"             "smoke"            
## [77410] "trailed"           "nothing"           "else"             
## [77413] "seen"              "dale"              "around"           
## [77416] "empty"             "doom"              "grief"            
## [77419] "last"              "wholly"            "overcame"         
## [77422] "wept"              "long"              "standing"         
## [77425] "silent"            "cast"              "upon"             
## [77428] "ground"            "doom"              "doom"             
## [77431] "drum"              "beats"             "faded"            
## [77434] "chapter"           "lothlórien"        "alas"             
## [77437] "fear"              "stay"              "longer"           
## [77440] "said"              "aragorn"           "looked"           
## [77443] "towards"           "mountains"         "held"             
## [77446] "sword"             "farewell"          "gandalf"          
## [77449] "cried"             "say"               "pass"             
## [77452] "doors"             "moria"             "beware"           
## [77455] "alas"              "spoke"             "true"             
## [77458] "hope"              "without"           "turned"           
## [77461] "company"           "must"              "without"          
## [77464] "hope"              "said"              "least"            
## [77467] "may"               "yet"               "avenged"          
## [77470] "let"               "us"                "gird"             
## [77473] "weep"              "come"              "long"             
## [77476] "road"              "much"              "rose"             
## [77479] "looked"            "northward"         "dale"             
## [77482] "ran"               "glen"              "shadows"          
## [77485] "two"               "great"             "arms"             
## [77488] "mountains"         "three"             "white"            
## [77491] "peaks"             "shining"           "celebdil"         
## [77494] "fanuidhol"         "caradhras"         "mountains"        
## [77497] "moria"             "head"              "glen"             
## [77500] "torrent"           "flowed"            "like"             
## [77503] "white"             "lace"              "endless"          
## [77506] "ladder"            "short"             "falls"            
## [77509] "mist"              "foam"              "hung"             
## [77512] "air"               "mountains"         "feet"             
## [77515] "yonder"            "dimrill"           "stair"            
## [77518] "said"              "aragorn"           "pointing"         
## [77521] "falls"             "deep"              "cloven"           
## [77524] "way"               "climbs"            "beside"           
## [77527] "torrent"           "come"              "fortune"          
## [77530] "kinder"            "caradhras"         "less"             
## [77533] "cruel"             "said"              "gimli"            
## [77536] "stands"            "smiling"           "sun"              
## [77539] "shook"             "fist"              "furthest"         
## [77542] "snow"              "capped"            "peaks"            
## [77545] "turned"            "away"              "east"             
## [77548] "outflung"          "arm"               "mountains"        
## [77551] "marched"           "sudden"            "end"              
## [77554] "far"               "lands"             "descried"         
## [77557] "beyond"            "wide"              "vague"            
## [77560] "south"             "misty"             "mountains"        
## [77563] "receded"           "endlessly"         "far"              
## [77566] "sight"             "reach"             "less"             
## [77569] "mile"              "away"              "little"           
## [77572] "still"             "stood"             "high"             
## [77575] "west"              "side"              "dale"             
## [77578] "lay"               "mere"              "long"             
## [77581] "oval"              "shaped"            "like"             
## [77584] "great"             "spear"             "head"             
## [77587] "thrust"            "deep"              "northern"         
## [77590] "glen"              "southern"          "end"              
## [77593] "beyond"            "shadows"           "sunlit"           
## [77596] "sky"               "yet"               "waters"           
## [77599] "dark"              "deep"              "blue"             
## [77602] "like"              "clear"             "evening"          
## [77605] "sky"               "seen"              "lamp"             
## [77608] "lit"               "room"              "face"             
## [77611] "still"             "unruffled"         "lay"              
## [77614] "smooth"            "sward"             "shelving"         
## [77617] "sides"             "bare"              "unbroken"         
## [77620] "rim"               "lies"              "mirrormere"       
## [77623] "deep"              "kheled"            "zâram"            
## [77626] "said"              "gimli"             "sadly"            
## [77629] "remember"          "said"              "may"              
## [77632] "joy"               "sight"             "linger"           
## [77635] "now"               "long"              "shall"            
## [77638] "journey"           "ere"               "joy"              
## [77641] "must"              "hasten"            "away"             
## [77644] "must"              "remain"            "company"          
## [77647] "now"               "went"              "road"             
## [77650] "gates"             "rough"             "broken"           
## [77653] "fading"            "winding"           "track"            
## [77656] "heather"           "whin"              "thrust"           
## [77659] "amid"              "cracking"          "stones"           
## [77662] "still"             "seen"              "long"             
## [77665] "ago"               "great"             "paved"            
## [77668] "way"               "wound"             "upwards"          
## [77671] "lowlands"          "dwarf"             "kingdom"          
## [77674] "places"            "ruined"            "works"            
## [77677] "stone"             "beside"            "path"             
## [77680] "mounds"            "green"             "topped"           
## [77683] "slender"           "birches"           "fir"              
## [77686] "trees"             "sighing"           "wind"             
## [77689] "eastward"          "bend"              "led"              
## [77692] "hard"              "sward"             "mirrormere"       
## [77695] "far"               "roadside"          "stood"            
## [77698] "single"            "column"            "broken"           
## [77701] "top"               "durins"            "stone"            
## [77704] "cried"             "gimli"             "pass"             
## [77707] "without"           "turning"           "aside"            
## [77710] "moment"            "look"              "wonder"           
## [77713] "dale"              "swift"             "said"             
## [77716] "aragorn"           "looking"           "back"             
## [77719] "towards"           "gates"             "sun"              
## [77722] "sinks"             "early"             "orcs"             
## [77725] "will"              "maybe"             "come"             
## [77728] "till"              "dusk"              "must"             
## [77731] "far"               "away"              "nightfall"        
## [77734] "moon"              "almost"            "spent"            
## [77737] "will"              "dark"              "tonight"          
## [77740] "come"              "frodo"             "cried"            
## [77743] "dwarf"             "springing"         "road"             
## [77746] "go"                "without"           "seeing"           
## [77749] "kheled"            "zâram"             "ran"              
## [77752] "long"              "green"             "slope"            
## [77755] "frodo"             "followed"          "slowly"           
## [77758] "drawn"             "still"             "blue"             
## [77761] "water"             "spite"             "hurt"             
## [77764] "weariness"         "sam"               "came"             
## [77767] "behind"            "beside"            "standing"         
## [77770] "stone"             "gimli"             "halted"           
## [77773] "looked"            "cracked"           "weather"          
## [77776] "worn"              "faint"             "runes"            
## [77779] "upon"              "side"              "read"             
## [77782] "pillar"            "marks"             "spot"             
## [77785] "durin"             "first"             "looked"           
## [77788] "mirrormere"        "said"              "dwarf"            
## [77791] "let"               "us"                "look"             
## [77794] "ere"               "go"                "stooped"          
## [77797] "dark"              "water"             "first"            
## [77800] "see"               "nothing"           "slowly"           
## [77803] "saw"               "forms"             "encircling"       
## [77806] "mountains"         "mirrored"          "profound"         
## [77809] "blue"              "peaks"             "like"             
## [77812] "plumes"            "white"             "flame"            
## [77815] "beyond"            "space"             "sky"              
## [77818] "like"              "jewels"            "sunk"             
## [77821] "deep"              "shone"             "glinting"         
## [77824] "stars"             "though"            "sunlight"         
## [77827] "sky"               "stooping"          "forms"            
## [77830] "shadow"            "seen"              "kheled"           
## [77833] "zâram"             "fair"              "wonderful"        
## [77836] "said"              "gimli"             "lies"             
## [77839] "crown"             "durin"             "till"             
## [77842] "wakes"             "farewell"          "bowed"            
## [77845] "turned"            "away"              "hastened"         
## [77848] "back"              "green"             "sward"            
## [77851] "road"              "see"               "said"             
## [77854] "pippin"            "sam"               "sam"              
## [77857] "deep"              "thought"           "answer"           
## [77860] "road"              "now"               "turned"           
## [77863] "south"             "went"              "quickly"          
## [77866] "downwards"         "running"           "arms"             
## [77869] "dale"              "way"               "mere"             
## [77872] "came"              "deep"              "well"             
## [77875] "water"             "clear"             "crystal"          
## [77878] "freshet"           "fell"              "stone"            
## [77881] "lip"               "ran"               "glistening"       
## [77884] "gurgling"          "steep"             "rocky"            
## [77887] "channel"           "spring"            "silverlode"       
## [77890] "rises"             "said"              "gimli"            
## [77893] "drink"             "icy"               "cold"             
## [77896] "soon"              "becomes"           "swift"            
## [77899] "river"             "gathers"           "water"            
## [77902] "many"              "mountain"          "streams"          
## [77905] "said"              "aragorn"           "road"             
## [77908] "leads"             "beside"            "many"             
## [77911] "miles"             "shall"             "take"             
## [77914] "road"              "gandalf"           "chose"            
## [77917] "first"             "hope"              "come"             
## [77920] "woods"             "silverlode"        "flows"            
## [77923] "great"             "river"             "yonder"           
## [77926] "looked"            "pointed"           "see"              
## [77929] "stream"            "leaping"           "trough"           
## [77932] "valley"            "running"           "away"             
## [77935] "lower"             "lands"             "lost"             
## [77938] "golden"            "haze"              "lie"              
## [77941] "woods"             "lothlórien"        "said"             
## [77944] "legolas"           "fairest"           "dwellings"        
## [77947] "people"            "trees"             "like"             
## [77950] "trees"             "land"              "autumn"           
## [77953] "leaves"            "fall"              "turn"             
## [77956] "gold"              "till"              "spring"           
## [77959] "comes"             "new"               "green"            
## [77962] "opens"             "fall"              "boughs"           
## [77965] "laden"             "yellow"            "flowers"          
## [77968] "floor"             "wood"              "golden"           
## [77971] "golden"            "roof"              "pillars"          
## [77974] "silver"            "bark"              "trees"            
## [77977] "smooth"            "grey"              "still"            
## [77980] "songs"             "mirkwood"          "say"              
## [77983] "heart"             "glad"              "beneath"          
## [77986] "eaves"             "wood"              "springtime"       
## [77989] "heart"             "will"              "glad"             
## [77992] "even"              "winter"            "said"             
## [77995] "aragorn"           "lies"              "many"             
## [77998] "miles"             "away"              "let"              
## [78001] "us"                "hasten"            "time"             
## [78004] "frodo"             "sam"               "managed"          
## [78007] "keep"              "others"            "aragorn"          
## [78010] "leading"           "great"             "pace"             
## [78013] "lagged"            "behind"            "eaten"            
## [78016] "nothing"           "since"             "early"            
## [78019] "morning"           "sams"              "cut"              
## [78022] "burning"           "like"              "fire"             
## [78025] "head"              "felt"              "light"            
## [78028] "spite"             "shining"           "sun"              
## [78031] "wind"              "seemed"            "chill"            
## [78034] "warm"              "darkness"          "moria"            
## [78037] "shivered"          "frodo"             "felt"             
## [78040] "every"             "step"              "painful"          
## [78043] "gasped"            "breath"            "last"             
## [78046] "legolas"           "turned"            "seeing"           
## [78049] "now"               "far"               "behind"           
## [78052] "spoke"             "aragorn"           "others"           
## [78055] "halted"            "aragorn"           "ran"              
## [78058] "back"              "calling"           "boromir"          
## [78061] "come"              "sorry"             "frodo"            
## [78064] "cried"             "full"              "concern"          
## [78067] "much"              "happened"          "day"              
## [78070] "need"              "haste"             "forgotten"        
## [78073] "hurt"              "sam"               "spoken"           
## [78076] "done"              "nothing"           "ease"             
## [78079] "though"            "orcs"              "moria"            
## [78082] "us"                "come"              "now"              
## [78085] "little"            "place"             "can"              
## [78088] "rest"              "little"            "will"             
## [78091] "can"               "come"              "boromir"          
## [78094] "will"              "carry"             "soon"             
## [78097] "afterwards"        "came"              "upon"             
## [78100] "another"           "stream"            "ran"              
## [78103] "west"              "joined"            "bubbling"         
## [78106] "water"             "hurrying"          "silverlode"       
## [78109] "together"          "plunged"           "fall"             
## [78112] "green"             "hued"              "stone"            
## [78115] "foamed"            "dell"              "stood"            
## [78118] "fir"               "trees"             "short"            
## [78121] "bent"              "sides"             "steep"            
## [78124] "clothed"           "harts"             "tongue"           
## [78127] "shrubs"            "whortle"           "berry"            
## [78130] "bottom"            "level"             "space"            
## [78133] "stream"            "flowed"            "noisily"          
## [78136] "shining"           "pebbles"           "rested"           
## [78139] "now"               "nearly"            "three"            
## [78142] "hours"             "noon"              "come"             
## [78145] "miles"             "gates"             "already"          
## [78148] "sun"               "westering"         "gimli"            
## [78151] "two"               "younger"           "hobbits"          
## [78154] "kindled"           "fire"              "brush"            
## [78157] "fir"               "wood"              "drew"             
## [78160] "water"             "aragorn"           "tended"           
## [78163] "sam"               "frodo"             "sams"             
## [78166] "wound"             "deep"              "looked"           
## [78169] "ugly"              "aragorns"          "face"             
## [78172] "grave"             "examined"          "moment"           
## [78175] "looked"            "relief"            "good"             
## [78178] "luck"              "sam"               "said"             
## [78181] "many"              "received"          "worse"            
## [78184] "payment"           "slaying"           "first"            
## [78187] "orc"               "cut"               "poisoned"         
## [78190] "wounds"            "orc"               "blades"           
## [78193] "often"             "heal"              "well"             
## [78196] "tended"            "bathe"             "gimli"            
## [78199] "heated"            "water"             "opened"           
## [78202] "pouch"             "drew"              "withered"         
## [78205] "leaves"            "dry"               "virtue"           
## [78208] "one"               "said"              "still"            
## [78211] "leaves"            "athelas"           "gathered"         
## [78214] "near"              "weathertop"        "crush"            
## [78217] "one"               "water"             "wash"             
## [78220] "wound"             "clean"             "will"             
## [78223] "bind"              "now"               "turn"             
## [78226] "frodo"             "right"             "said"             
## [78229] "frodo"             "reluctant"         "garments"         
## [78232] "touched"           "needed"            "food"             
## [78235] "little"            "rest"              "said"             
## [78238] "aragorn"           "must"              "look"             
## [78241] "see"               "hammer"            "anvil"            
## [78244] "done"              "still"             "marvel"           
## [78247] "alive"             "gently"            "stripped"         
## [78250] "frodos"            "old"               "jacket"           
## [78253] "worn"              "tunic"             "gave"             
## [78256] "gasp"              "wonder"            "laughed"          
## [78259] "silver"            "corslet"           "shimmered"        
## [78262] "eyes"              "like"              "light"            
## [78265] "upon"              "rippling"          "sea"              
## [78268] "carefully"         "took"              "held"             
## [78271] "gems"              "glittered"         "like"             
## [78274] "stars"             "sound"             "shaken"           
## [78277] "rings"             "like"              "tinkle"           
## [78280] "rain"              "pool"              "look"             
## [78283] "friends"           "called"            "heres"            
## [78286] "pretty"            "hobbit"            "skin"             
## [78289] "wrap"              "elven"             "princeling"       
## [78292] "known"             "hobbits"           "hides"            
## [78295] "hunters"           "middle"            "earth"            
## [78298] "riding"            "shire"             "arrows"           
## [78301] "hunters"           "world"             "vain"             
## [78304] "said"              "gimli"             "gazing"           
## [78307] "mail"              "wonder"            "mithril"          
## [78310] "coat"              "mithril"           "never"            
## [78313] "seen"              "heard"             "tell"             
## [78316] "one"               "fair"              "coat"             
## [78319] "gandalf"           "spoke"             "undervalued"      
## [78322] "well"              "given"             "often"            
## [78325] "wondered"          "bilbo"             "close"            
## [78328] "little"            "room"              "said"             
## [78331] "merry"             "bless"             "old"              
## [78334] "hobbit"            "love"              "ever"             
## [78337] "hope"              "get"               "chance"           
## [78340] "telling"           "dark"              "blackened"        
## [78343] "bruise"            "frodos"            "right"            
## [78346] "side"              "breast"            "mail"             
## [78349] "shirt"             "soft"              "leather"          
## [78352] "one"               "point"             "rings"            
## [78355] "driven"            "flesh"             "frodos"           
## [78358] "left"              "side"              "also"             
## [78361] "scored"            "bruised"           "hurled"           
## [78364] "wall"              "others"            "set"              
## [78367] "food"              "ready"             "aragorn"          
## [78370] "bathed"            "hurts"             "water"            
## [78373] "athelas"           "steeped"           "pungent"          
## [78376] "fragrance"         "filled"            "dell"             
## [78379] "stooped"           "steaming"          "water"            
## [78382] "felt"              "refreshed"         "strengthened"     
## [78385] "soon"              "frodo"             "felt"             
## [78388] "pain"              "leave"             "breath"           
## [78391] "grew"              "easy"              "though"           
## [78394] "stiff"             "sore"              "touch"            
## [78397] "many"              "days"              "aragorn"          
## [78400] "bound"             "soft"              "pads"             
## [78403] "cloth"             "side"              "mail"             
## [78406] "marvellously"      "light"             "said"             
## [78409] "put"               "can"               "bear"             
## [78412] "heart"             "glad"              "know"             
## [78415] "coat"              "lay"               "aside"            
## [78418] "even"              "sleep"             "unless"           
## [78421] "fortune"           "brings"            "safe"             
## [78424] "will"              "seldom"            "chance"           
## [78427] "quest"             "lasts"             "eaten"            
## [78430] "company"           "got"               "ready"            
## [78433] "go"                "put"               "fire"             
## [78436] "hid"               "traces"            "climbing"         
## [78439] "dell"              "took"              "road"             
## [78442] "gone"              "far"               "sun"              
## [78445] "sank"              "behind"            "westward"         
## [78448] "heights"           "great"             "shadows"          
## [78451] "crept"             "mountain"          "sides"            
## [78454] "dusk"              "veiled"            "feet"             
## [78457] "mist"              "rose"              "hollows"          
## [78460] "away"              "east"              "evening"          
## [78463] "light"             "lay"               "pale"             
## [78466] "upon"              "dim"               "lands"            
## [78469] "distant"           "plain"             "wood"             
## [78472] "sam"               "frodo"             "now"              
## [78475] "feeling"           "eased"             "greatly"          
## [78478] "refreshed"         "able"              "go"               
## [78481] "fair"              "pace"              "one"              
## [78484] "brief"             "halt"              "aragorn"          
## [78487] "led"               "company"           "nearly"           
## [78490] "three"             "hours"             "dark"             
## [78493] "deep"              "night"             "fallen"           
## [78496] "many"              "clear"             "stars"            
## [78499] "hut"               "fast"              "waning"           
## [78502] "moon"              "seen"              "till"             
## [78505] "late"              "gimli"             "frodo"            
## [78508] "rear"              "walking"           "softly"           
## [78511] "speaking"          "listening"         "sound"            
## [78514] "upon"              "road"              "behind"           
## [78517] "length"            "gimli"             "broke"            
## [78520] "silence"           "sound"             "wind"             
## [78523] "said"              "goblins"           "near"             
## [78526] "ears"              "made"              "wood"             
## [78529] "hoped"             "orcs"              "will"             
## [78532] "content"           "driving"           "us"               
## [78535] "moria"             "maybe"             "purpose"          
## [78538] "nothing"           "else"              "us"               
## [78541] "ring"              "though"            "orcs"             
## [78544] "will"              "often"             "pursue"           
## [78547] "foes"              "many"              "leagues"          
## [78550] "plain"             "fallen"            "captain"          
## [78553] "avenge"            "frodo"             "answer"           
## [78556] "looked"            "sting"             "blade"            
## [78559] "dull"              "yet"               "heard"            
## [78562] "something"         "thought"           "soon"             
## [78565] "shadows"           "fallen"            "road"             
## [78568] "behind"            "dim"               "heard"            
## [78571] "quick"             "patter"            "feet"             
## [78574] "even"              "now"               "heard"            
## [78577] "turned"            "swiftly"           "two"              
## [78580] "tiny"              "gleams"            "light"            
## [78583] "behind"            "moment"            "thought"          
## [78586] "saw"               "slipped"           "aside"            
## [78589] "vanished"          "said"              "dwarf"            
## [78592] "dont"              "know"              "answered"         
## [78595] "frodo"             "thought"           "heard"            
## [78598] "feet"              "thought"           "saw"              
## [78601] "light"             "like"              "eyes"             
## [78604] "thought"           "often"             "since"            
## [78607] "first"             "entered"           "moria"            
## [78610] "gimli"             "halted"            "stooped"          
## [78613] "ground"            "hear"              "nothing"          
## [78616] "night"             "speech"            "plant"            
## [78619] "stone"             "said"              "come"             
## [78622] "let"               "us"                "hurry"            
## [78625] "others"            "sight"             "night"            
## [78628] "wind"              "blew"              "chill"            
## [78631] "valley"            "meet"              "wide"             
## [78634] "grey"              "shadow"            "loomed"           
## [78637] "heard"             "endless"           "rustle"           
## [78640] "leaves"            "like"              "poplars"          
## [78643] "breeze"            "lothlórien"        "cried"            
## [78646] "legolas"           "lothlórien"        "come"             
## [78649] "eaves"             "golden"            "wood"             
## [78652] "alas"              "winter"            "night"            
## [78655] "trees"             "stood"             "tall"             
## [78658] "arched"            "road"              "stream"           
## [78661] "ran"               "suddenly"          "beneath"          
## [78664] "spreading"         "boughs"            "dim"              
## [78667] "light"             "stars"             "stems"            
## [78670] "grey"              "quivering"         "leaves"           
## [78673] "hint"              "fallow"            "gold"             
## [78676] "lothlórien"        "said"              "aragorn"          
## [78679] "glad"              "hear"              "wind"             
## [78682] "trees"             "still"             "little"           
## [78685] "five"              "leagues"           "gates"            
## [78688] "can"               "go"                "let"              
## [78691] "us"                "hope"              "virtue"           
## [78694] "elves"             "will"              "keep"             
## [78697] "us"                "tonight"           "peril"            
## [78700] "comes"             "behind"            "elves"            
## [78703] "indeed"            "still"             "dwell"            
## [78706] "darkening"         "world"             "said"             
## [78709] "gimli"             "long"              "since"            
## [78712] "folk"              "journeyed"         "hither"           
## [78715] "back"              "land"              "whence"           
## [78718] "wandered"          "ages"              "long"             
## [78721] "ago"               "said"              "legolas"          
## [78724] "hear"              "lórien"            "yet"              
## [78727] "deserted"          "secret"            "power"            
## [78730] "holds"             "evil"              "land"             
## [78733] "nevertheless"      "folk"              "seldom"           
## [78736] "seen"              "maybe"             "dwell"            
## [78739] "now"               "deep"              "woods"            
## [78742] "far"               "northern"          "border"           
## [78745] "indeed"            "deep"              "wood"             
## [78748] "dwell"             "said"              "aragorn"          
## [78751] "sighed"            "memory"            "stirred"          
## [78754] "must"              "fend"              "tonight"          
## [78757] "will"              "go"                "forward"          
## [78760] "short"             "way"               "trees"            
## [78763] "us"                "will"              "turn"             
## [78766] "aside"             "path"              "seek"             
## [78769] "place"             "rest"              "stepped"          
## [78772] "forward"           "boromir"           "stood"            
## [78775] "irresolute"        "follow"            "way"              
## [78778] "said"              "fairer"            "way"              
## [78781] "desire"            "said"              "aragorn"          
## [78784] "plain"             "road"              "though"           
## [78787] "led"               "hedge"             "swords"           
## [78790] "said"              "boromir"           "strange"          
## [78793] "paths"             "company"           "led"              
## [78796] "far"               "evil"              "fortune"          
## [78799] "will"              "passed"            "shades"           
## [78802] "moria"             "loss"              "now"              
## [78805] "must"              "enter"             "golden"           
## [78808] "wood"              "say"               "perilous"         
## [78811] "land"              "heard"             "gondor"           
## [78814] "said"              "come"              "go"               
## [78817] "none"              "escaped"           "unscathed"        
## [78820] "say"               "unscathed"         "say"              
## [78823] "unchanged"         "maybe"             "will"             
## [78826] "speak"             "truth"             "said"             
## [78829] "aragorn"           "lore"              "wanes"            
## [78832] "gondor"            "boromir"           "city"             
## [78835] "wise"              "now"               "speak"            
## [78838] "evil"              "lothlórien"        "believe"          
## [78841] "will"              "way"               "us"               
## [78844] "unless"            "go"                "back"             
## [78847] "moria"             "gate"              "scale"            
## [78850] "pathless"          "mountains"         "swim"             
## [78853] "great"             "river"             "alone"            
## [78856] "lead"              "said"              "boromir"          
## [78859] "perilous"          "perilous"          "indeed"           
## [78862] "said"              "aragorn"           "fair"             
## [78865] "perilous"          "evil"              "need"             
## [78868] "fear"              "bring"             "evil"             
## [78871] "follow"            "gone"              "little"           
## [78874] "mile"              "forest"            "came"             
## [78877] "upon"              "another"           "stream"           
## [78880] "flowing"           "swiftly"           "tree"             
## [78883] "clad"              "slopes"            "climbed"          
## [78886] "back"              "westward"          "towards"          
## [78889] "mountains"         "heard"             "splashing"        
## [78892] "fall"              "away"              "among"            
## [78895] "shadows"           "right"             "dark"             
## [78898] "hurrying"          "waters"            "ran"              
## [78901] "across"            "path"              "joined"           
## [78904] "silverlode"        "swirl"             "dim"              
## [78907] "pools"             "among"             "roots"            
## [78910] "trees"             "nimrodel"          "said"             
## [78913] "legolas"           "stream"            "silvan"           
## [78916] "elves"             "made"              "many"             
## [78919] "songs"             "long"              "ago"              
## [78922] "still"             "sing"              "north"            
## [78925] "remembering"       "rainbow"           "falls"            
## [78928] "golden"            "flowers"           "floated"          
## [78931] "foam"              "dark"              "now"              
## [78934] "bridge"            "nimrodel"          "broken"           
## [78937] "will"              "bathe"             "feet"             
## [78940] "said"              "water"             "healing"          
## [78943] "weary"             "went"              "forward"          
## [78946] "climbed"           "deep"              "cloven"           
## [78949] "bank"              "stepped"           "stream"           
## [78952] "follow"            "cried"             "water"            
## [78955] "deep"              "let"               "us"               
## [78958] "wade"              "across"            "bank"             
## [78961] "can"               "rest"              "sound"            
## [78964] "falling"           "water"             "may"              
## [78967] "bring"             "us"                "sleep"            
## [78970] "forgetfulness"     "grief"             "one"              
## [78973] "one"               "climbed"           "followed"         
## [78976] "legolas"           "moment"            "frodo"            
## [78979] "stood"             "near"              "brink"            
## [78982] "let"               "water"             "flow"             
## [78985] "tired"             "feet"              "cold"             
## [78988] "touch"             "clean"             "went"             
## [78991] "mounted"           "knees"             "felt"             
## [78994] "stain"             "travel"            "weariness"        
## [78997] "washed"            "limbs"             "company"          
## [79000] "crossed"           "sat"               "rested"           
## [79003] "ate"               "little"            "food"             
## [79006] "legolas"           "told"              "tales"            
## [79009] "lothlórien"        "elves"             "mirkwood"         
## [79012] "still"             "kept"              "hearts"           
## [79015] "sunlight"          "starlight"         "upon"             
## [79018] "meadows"           "great"             "river"            
## [79021] "world"             "grey"              "length"           
## [79024] "silence"           "fell"              "heard"            
## [79027] "music"             "waterfall"         "running"          
## [79030] "sweetly"           "shadows"           "almost"           
## [79033] "frodo"             "fancied"           "hear"             
## [79036] "voice"             "singing"           "mingled"          
## [79039] "sound"             "water"             "hear"             
## [79042] "voice"             "nimrodel"          "asked"            
## [79045] "legolas"           "will"              "sing"             
## [79048] "song"              "maiden"            "nimrodel"         
## [79051] "bore"              "name"              "stream"           
## [79054] "beside"            "lived"             "lung"             
## [79057] "ago"               "fair"              "song"             
## [79060] "woodland"          "tongue"            "runs"             
## [79063] "westron"           "speech"            "rivendell"        
## [79066] "now"               "sing"              "soft"             
## [79069] "voice"             "hardly"            "heard"            
## [79072] "amid"              "rustle"            "leaves"           
## [79075] "began"             "elven"             "maid"             
## [79078] "old"               "shining"           "star"             
## [79081] "day"               "mantle"            "white"            
## [79084] "hemmed"            "gold"              "shoes"            
## [79087] "silver"            "grey"              "star"             
## [79090] "bound"             "upon"              "brows"            
## [79093] "light"             "hair"              "sun"              
## [79096] "upon"              "golden"            "boughs"           
## [79099] "lórien"            "fair"              "hair"             
## [79102] "long"              "limbs"             "white"            
## [79105] "fair"              "free"              "wind"             
## [79108] "went"              "light"             "leaf"             
## [79111] "linden"            "tree"              "beside"           
## [79114] "falls"             "nimrodel"          "water"            
## [79117] "clear"             "cool"              "voice"            
## [79120] "falling"           "silver"            "fell"             
## [79123] "shining"           "pool"              "now"              
## [79126] "wanders"           "none"              "can"              
## [79129] "tell"              "sunlight"          "shade"            
## [79132] "lost"              "yore"              "nimrodel"         
## [79135] "mountains"         "strayed"           "elven"            
## [79138] "ship"              "haven"             "grey"             
## [79141] "beneath"           "mountain"          "lee"              
## [79144] "awaited"           "many"              "day"              
## [79147] "beside"            "roaring"           "sea"              
## [79150] "wind"              "night"             "northern"         
## [79153] "lands"             "arose"             "loud"             
## [79156] "cried"             "drove"             "ship"             
## [79159] "elven"             "strands"           "across"           
## [79162] "streaming"         "tide"              "dawn"             
## [79165] "came"              "dim"               "land"             
## [79168] "lost"              "mountains"         "sinking"          
## [79171] "grey"              "beyond"            "heaving"          
## [79174] "waves"             "tossed"            "plumes"           
## [79177] "blinding"          "spray"             "amroth"           
## [79180] "beheld"            "fading"            "shore"            
## [79183] "now"               "low"               "beyond"           
## [79186] "swell"             "cursed"            "faithless"        
## [79189] "ship"              "bore"              "far"              
## [79192] "nimrodel"          "old"               "elven"            
## [79195] "king"              "lord"              "tree"             
## [79198] "glen"              "golden"            "boughs"           
## [79201] "spring"            "fair"              "lothlórien"       
## [79204] "helm"              "sea"               "saw"              
## [79207] "leap"              "arrow"             "string"           
## [79210] "dive"              "water"             "deep"             
## [79213] "mew"               "upon"              "wing"             
## [79216] "wind"              "flowing"           "hair"             
## [79219] "foam"              "shone"             "afar"             
## [79222] "saw"               "strong"            "fair"             
## [79225] "go"                "riding"            "like"             
## [79228] "swan"              "west"              "come"             
## [79231] "word"              "hither"            "shore"            
## [79234] "tidings"           "elven"             "folk"             
## [79237] "heard"             "amroth"            "evermore"         
## [79240] "voice"             "legolas"           "faltered"         
## [79243] "song"              "ceased"            "sing"             
## [79246] "said"              "part"              "forgotten"        
## [79249] "much"              "long"              "sad"              
## [79252] "tells"             "sorrow"            "came"             
## [79255] "upon"              "lothlórien"        "lórien"           
## [79258] "blossom"           "dwarves"           "awakened"         
## [79261] "evil"              "mountains"         "dwarves"          
## [79264] "make"              "evil"              "said"             
## [79267] "gimli"             "said"              "yet"              
## [79270] "evil"              "came"              "answered"         
## [79273] "legolas"           "sadly"             "many"             
## [79276] "elves"             "nimrodels"         "kindred"          
## [79279] "left"              "dwellings"         "departed"         
## [79282] "lost"              "far"               "south"            
## [79285] "passes"            "white"             "mountains"        
## [79288] "came"              "ship"              "amroth"           
## [79291] "lover"             "waited"            "spring"           
## [79294] "wind"              "new"               "leaves"           
## [79297] "echo"              "voice"             "may"              
## [79300] "still"             "heard"             "falls"            
## [79303] "bear"              "name"              "wind"             
## [79306] "south"             "voice"             "amroth"           
## [79309] "comes"             "sea"               "nimrodel"         
## [79312] "flows"             "silverlode"        "elves"            
## [79315] "call"              "celebrant"         "celebrant"        
## [79318] "anduin"            "great"             "anduin"           
## [79321] "flows"             "bay"               "belfalas"         
## [79324] "whence"            "elves"             "lórien"           
## [79327] "set"               "sail"              "neither"          
## [79330] "nimrodel"          "amroth"            "ever"             
## [79333] "came"              "back"              "told"             
## [79336] "house"             "built"             "branches"         
## [79339] "tree"              "grew"              "near"             
## [79342] "falls"             "custom"            "elves"            
## [79345] "lórien"            "dwell"             "trees"            
## [79348] "maybe"             "still"             "therefore"        
## [79351] "called"            "galadhrim"         "tree"             
## [79354] "people"            "deep"              "forest"           
## [79357] "trees"             "great"             "people"           
## [79360] "woods"             "delve"             "ground"           
## [79363] "like"              "dwarves"           "build"            
## [79366] "strong"            "places"            "stone"            
## [79369] "shadow"            "came"              "even"             
## [79372] "latter"            "days"              "dwelling"         
## [79375] "trees"             "might"             "thought"          
## [79378] "safer"             "sitting"           "ground"           
## [79381] "said"              "gimli"             "looked"           
## [79384] "across"            "stream"            "road"             
## [79387] "led"               "back"              "dimrill"          
## [79390] "dale"              "roof"              "dark"             
## [79393] "boughs"            "words"             "bring"            
## [79396] "good"              "counsel"           "gimli"            
## [79399] "said"              "aragorn"           "build"            
## [79402] "house"             "tonight"           "will"             
## [79405] "galadhrim"         "seek"              "refuge"           
## [79408] "tree"              "tops"              "can"              
## [79411] "sat"               "beside"            "road"             
## [79414] "already"           "longer"            "wise"             
## [79417] "company"           "now"               "turned"           
## [79420] "aside"             "path"              "went"             
## [79423] "shadow"            "deeper"            "woods"            
## [79426] "westward"          "along"             "mountain"         
## [79429] "stream"            "away"              "silverlode"       
## [79432] "far"               "falls"             "nimrodel"         
## [79435] "found"             "cluster"           "trees"            
## [79438] "overhung"          "stream"            "great"            
## [79441] "grey"              "trunks"            "mighty"           
## [79444] "girth"             "height"            "guessed"          
## [79447] "will"              "climb"             "said"             
## [79450] "legolas"           "home"              "among"            
## [79453] "trees"             "root"              "bough"            
## [79456] "though"            "trees"             "kind"             
## [79459] "strange"           "save"              "name"             
## [79462] "song"              "mellyrn"           "called"           
## [79465] "bear"              "yellow"            "blossom"          
## [79468] "never"             "climbed"           "one"              
## [79471] "will"              "see"               "now"              
## [79474] "shape"             "way"               "growth"           
## [79477] "whatever"          "may"               "said"             
## [79480] "pippin"            "will"              "marvellous"       
## [79483] "trees"             "indeed"            "can"              
## [79486] "offer"             "rest"              "night"            
## [79489] "except"            "birds"             "sleep"            
## [79492] "perch"             "dig"               "hole"             
## [79495] "ground"            "said"              "legolas"          
## [79498] "fashion"           "kind"              "must"             
## [79501] "dig"               "swift"             "deep"             
## [79504] "wish"              "hide"              "orcs"             
## [79507] "sprang"            "lightly"           "ground"           
## [79510] "caught"            "branch"            "grew"             
## [79513] "trunk"             "high"              "head"             
## [79516] "even"              "swung"             "moment"           
## [79519] "voice"             "spoke"             "suddenly"         
## [79522] "tree"              "shadows"           "daro"             
## [79525] "said"              "commanding"        "tone"             
## [79528] "legolas"           "dropped"           "back"             
## [79531] "earth"             "surprise"          "fear"             
## [79534] "shrank"            "bole"              "tree"             
## [79537] "stand"             "still"             "whispered"        
## [79540] "others"            "move"              "speak"            
## [79543] "sound"             "soft"              "laughter"         
## [79546] "heads"             "another"           "clear"            
## [79549] "voice"             "spoke"             "elven"            
## [79552] "tongue"            "frodo"             "understand"       
## [79555] "little"            "said"              "speech"           
## [79558] "silvan"            "folk"              "east"             
## [79561] "mountains"         "used"              "among"            
## [79564] "unlike"            "west"              "legolas"          
## [79567] "looked"            "answered"          "language"         
## [79570] "say"               "asked"             "merry"            
## [79573] "theyre"            "elves"             "said"             
## [79576] "sam"               "cant"              "hear"             
## [79579] "voices"            "yes"               "elves"            
## [79582] "said"              "legolas"           "say"              
## [79585] "breathe"           "loud"              "shoot"            
## [79588] "dark"              "sam"               "hastily"          
## [79591] "put"               "hand"              "mouth"            
## [79594] "say"               "also"              "need"             
## [79597] "fear"              "aware"             "us"               
## [79600] "long"              "heard"             "voice"            
## [79603] "across"            "nimrodel"          "knew"             
## [79606] "one"               "northern"          "kindred"          
## [79609] "therefore"         "hinder"            "crossing"         
## [79612] "afterwards"        "heard"             "song"             
## [79615] "now"               "bid"               "climb"            
## [79618] "frodo"             "seem"              "tidings"          
## [79621] "journey"           "others"            "ask"              
## [79624] "wait"              "little"            "keep"             
## [79627] "watch"             "foot"              "tree"             
## [79630] "decided"           "done"              "shadows"          
## [79633] "ladder"            "let"               "made"             
## [79636] "rope"              "silver"            "grey"             
## [79639] "glimmering"        "dark"              "though"           
## [79642] "looked"            "slender"           "proved"           
## [79645] "strong"            "enough"            "bear"             
## [79648] "many"              "men"               "legolas"          
## [79651] "ran"               "lightly"           "frodo"            
## [79654] "followed"          "slowly"            "behind"           
## [79657] "came"              "sam"               "trying"           
## [79660] "breathe"           "loudly"            "branches"         
## [79663] "mallorn"           "tree"              "grew"             
## [79666] "nearly"            "straight"          "trunk"            
## [79669] "swept"             "upward"            "near"             
## [79672] "top"               "main"              "stem"             
## [79675] "divided"           "crown"             "many"             
## [79678] "boughs"            "among"             "found"            
## [79681] "built"             "wooden"            "platform"         
## [79684] "flet"              "things"            "called"           
## [79687] "days"              "elves"             "called"           
## [79690] "talan"             "reached"           "round"            
## [79693] "hole"              "centre"            "ladder"           
## [79696] "passed"            "frodo"             "came"             
## [79699] "last"              "flet"              "found"            
## [79702] "legolas"           "seated"            "three"            
## [79705] "elves"             "clad"              "shadowy"          
## [79708] "grey"              "seen"              "among"            
## [79711] "tree"              "stems"             "unless"           
## [79714] "moved"             "suddenly"          "stood"            
## [79717] "one"               "uncovered"         "small"            
## [79720] "lamp"              "gave"              "slender"          
## [79723] "silver"            "beam"              "held"             
## [79726] "looking"           "frodos"            "face"             
## [79729] "sams"              "shut"              "light"            
## [79732] "spoke"             "words"             "welcome"          
## [79735] "elven"             "tongue"            "frodo"            
## [79738] "spoke"             "haltingly"         "return"           
## [79741] "welcome"           "elf"               "said"             
## [79744] "common"            "language"          "speaking"         
## [79747] "slowly"            "seldom"            "use"              
## [79750] "tongue"            "dwell"             "now"              
## [79753] "heart"             "forest"            "willingly"        
## [79756] "dealings"          "folk"              "even"             
## [79759] "kindred"           "north"             "sundered"         
## [79762] "us"                "us"                "still"            
## [79765] "go"                "abroad"            "gathering"        
## [79768] "news"              "watching"          "enemies"          
## [79771] "speak"             "languages"         "lands"            
## [79774] "one"               "haldir"            "name"             
## [79777] "brothers"          "rúmil"             "orophin"          
## [79780] "speak"             "little"            "tongue"           
## [79783] "heard"             "rumours"           "coming"           
## [79786] "messengers"        "elrond"            "passed"           
## [79789] "lórien"            "way"               "home"             
## [79792] "dimrill"           "stair"             "heard"            
## [79795] "hobbits"           "halflings"         "many"             
## [79798] "long"              "year"              "know"             
## [79801] "yet"               "dwelt"             "middle"           
## [79804] "earth"             "look"              "evil"             
## [79807] "since"             "come"              "elf"              
## [79810] "kindred"           "willing"           "befriend"         
## [79813] "elrond"            "asked"             "though"           
## [79816] "custom"            "lead"              "strangers"        
## [79819] "land"              "must"              "stay"             
## [79822] "tonight"           "many"              "eight"            
## [79825] "said"              "legolas"           "four"             
## [79828] "hobbits"           "two"               "men"              
## [79831] "one"               "aragorn"           "elf"              
## [79834] "friend"            "folk"              "westernesse"      
## [79837] "name"              "aragorn"           "son"              
## [79840] "arathorn"          "known"             "lórien"           
## [79843] "said"              "haldir"            "favour"           
## [79846] "lady"              "well"              "yet"              
## [79849] "spoken"            "seven"             "eighth"           
## [79852] "dwarf"             "said"              "legolas"          
## [79855] "dwarf"             "said"              "haldir"           
## [79858] "well"              "dealings"          "dwarves"          
## [79861] "since"             "dark"              "days"             
## [79864] "permitted"         "land"              "allow"            
## [79867] "pass"              "lonely"            "mountain"         
## [79870] "one"               "dáins"             "trusty"           
## [79873] "people"            "friendly"          "elrond"           
## [79876] "said"              "frodo"             "elrond"           
## [79879] "chose"             "one"               "companions"       
## [79882] "brave"             "faithful"          "elves"            
## [79885] "spoke"             "together"          "soft"             
## [79888] "voices"            "questioned"        "legolas"          
## [79891] "tongue"            "good"              "said"             
## [79894] "haldir"            "last"              "will"             
## [79897] "though"            "liking"            "aragorn"          
## [79900] "legolas"           "will"              "guard"            
## [79903] "answer"            "shall"             "pass"             
## [79906] "must"              "go"                "blindfold"        
## [79909] "lothlórien"        "now"               "must"             
## [79912] "debate"            "longer"            "folk"             
## [79915] "must"              "remain"            "ground"           
## [79918] "keeping"           "watch"             "rivers"           
## [79921] "ever"              "since"             "saw"              
## [79924] "great"             "troop"             "orcs"             
## [79927] "going"             "north"             "toward"           
## [79930] "moria"             "along"             "skirts"           
## [79933] "mountains"         "many"              "days"             
## [79936] "ago"               "wolves"            "howling"          
## [79939] "woods"             "borders"           "indeed"           
## [79942] "come"              "moria"             "peril"            
## [79945] "far"               "behind"            "tomorrow"         
## [79948] "early"             "must"              "go"               
## [79951] "four"              "hobbits"           "shall"            
## [79954] "climb"             "stay"              "us"               
## [79957] "fear"              "another"           "talan"            
## [79960] "next"              "tree"              "others"           
## [79963] "must"              "take"              "refuge"           
## [79966] "legolas"           "must"              "answer"           
## [79969] "us"                "call"              "us"               
## [79972] "anything"          "amiss"             "eye"              
## [79975] "dwarf"             "legolas"           "went"             
## [79978] "ladder"            "take"              "haldirs"          
## [79981] "message"           "soon"              "afterwards"       
## [79984] "merry"             "pippin"            "clambered"        
## [79987] "high"              "flet"              "breath"           
## [79990] "seemed"            "rather"            "scared"           
## [79993] "said"              "merry"             "panting"          
## [79996] "lugged"            "blankets"          "well"             
## [79999] "strider"           "hidden"            "rest"             
## [80002] "baggage"           "deep"              "drift"            
## [80005] "leaves"            "need"              "burdens"          
## [80008] "said"              "haldir"            "cold"             
## [80011] "tree"              "tops"              "winter"           
## [80014] "though"            "wind"              "tonight"          
## [80017] "south"             "food"              "drink"            
## [80020] "give"              "will"              "drive"            
## [80023] "away"              "night"             "chill"            
## [80026] "skins"             "cloaks"            "spare"            
## [80029] "hobbits"           "accepted"          "second"           
## [80032] "far"               "better"            "supper"           
## [80035] "gladly"            "wrapped"           "warmly"           
## [80038] "fur"               "cloaks"            "elves"            
## [80041] "blankets"          "well"              "tried"            
## [80044] "go"                "sleep"             "weary"            
## [80047] "sam"               "found"             "easy"             
## [80050] "hobbits"           "like"              "heights"          
## [80053] "sleep"             "upstairs"          "even"             
## [80056] "stairs"            "flet"              "liking"           
## [80059] "bedroom"           "walls"             "even"             
## [80062] "rail"              "one"               "side"             
## [80065] "light"             "plaited"           "screen"           
## [80068] "moved"             "fixed"             "different"        
## [80071] "places"            "according"         "wind"             
## [80074] "pippin"            "went"              "talking"          
## [80077] "hope"              "go"                "sleep"            
## [80080] "bed"               "loft"              "shant"            
## [80083] "roll"              "said"              "get"              
## [80086] "sleep"             "said"              "sam"              
## [80089] "shall"             "go"                "sleeping"         
## [80092] "whether"           "roll"              "less"             
## [80095] "said"              "sooner"            "ill"              
## [80098] "drop"              "take"              "meaning"          
## [80101] "frodo"             "lay"               "time"             
## [80104] "awake"             "looked"            "stars"            
## [80107] "glinting"          "pale"              "roof"             
## [80110] "quivering"         "leaves"            "sam"              
## [80113] "snoring"           "side"              "long"             
## [80116] "closed"            "eyes"              "dimly"            
## [80119] "see"               "grey"              "forms"            
## [80122] "two"               "elves"             "sitting"          
## [80125] "motionless"        "arms"              "knees"            
## [80128] "speaking"          "whispers"          "gone"             
## [80131] "take"              "watch"             "one"              
## [80134] "lower"             "branches"          "last"             
## [80137] "lulled"            "wind"              "boughs"           
## [80140] "sweet"             "murmur"            "falls"            
## [80143] "nimrodel"          "frodo"             "fell"             
## [80146] "asleep"            "song"              "legolas"          
## [80149] "running"           "mind"              "late"             
## [80152] "night"             "awoke"             "hobbits"          
## [80155] "asleep"            "elves"             "gone"             
## [80158] "sickle"            "moon"              "gleaming"         
## [80161] "dimly"             "among"             "leaves"           
## [80164] "wind"              "still"             "little"           
## [80167] "way"               "heard"             "harsh"            
## [80170] "laugh"             "tread"             "many"             
## [80173] "feet"              "ground"            "ring"             
## [80176] "metal"             "sounds"            "died"             
## [80179] "slowly"            "away"              "seemed"           
## [80182] "go"                "southward"         "wood"             
## [80185] "head"              "appeared"          "suddenly"         
## [80188] "hole"              "flet"              "frodo"            
## [80191] "sat"               "alarm"             "saw"              
## [80194] "grey"              "hooded"            "elf"              
## [80197] "looked"            "towards"           "hobbits"          
## [80200] "said"              "frodo"             "yrch"             
## [80203] "said"              "elf"               "hissing"          
## [80206] "whisper"           "cast"              "flet"             
## [80209] "rope"              "ladder"            "rolled"           
## [80212] "orcs"              "said"              "frodo"            
## [80215] "elf"               "gone"              "sounds"           
## [80218] "even"              "leaves"            "silent"           
## [80221] "falls"             "seemed"            "hushed"           
## [80224] "frodo"             "sat"               "shivered"         
## [80227] "wraps"             "thankful"          "caught"           
## [80230] "ground"            "felt"              "trees"            
## [80233] "offered"           "little"            "protection"       
## [80236] "except"            "concealment"       "orcs"             
## [80239] "keen"              "hounds"            "scent"            
## [80242] "said"              "also"              "climb"            
## [80245] "drew"              "sting"             "flashed"          
## [80248] "glittered"         "like"              "blue"             
## [80251] "flame"             "slowly"            "faded"            
## [80254] "grew"              "dull"              "spite"            
## [80257] "fading"            "sword"             "feeling"          
## [80260] "immediate"         "danger"            "leave"            
## [80263] "frodo"             "rather"            "grew"             
## [80266] "stronger"          "got"               "crawled"          
## [80269] "opening"           "peered"            "almost"           
## [80272] "certain"           "hear"              "stealthy"         
## [80275] "movements"         "trees"             "foot"             
## [80278] "far"               "elves"             "woodland"         
## [80281] "folk"              "altogether"        "noiseless"        
## [80284] "movements"         "heard"             "faintly"          
## [80287] "sound"             "like"              "sniffing"         
## [80290] "something"         "seemed"            "scrabbling"       
## [80293] "bark"              "tree"              "trunk"            
## [80296] "stared"            "dark"              "holding"          
## [80299] "breath"            "something"         "now"              
## [80302] "climbing"          "slowly"            "breath"           
## [80305] "came"              "like"              "soft"             
## [80308] "hissing"           "closed"            "teeth"            
## [80311] "coming"            "close"             "stem"             
## [80314] "frodo"             "saw"               "two"              
## [80317] "pale"              "eyes"              "stopped"          
## [80320] "gazed"             "upward"            "unwinking"        
## [80323] "suddenly"          "turned"            "away"             
## [80326] "shadowy"           "figure"            "slipped"          
## [80329] "round"             "trunk"             "tree"             
## [80332] "vanished"          "immediately"       "afterwards"       
## [80335] "haldir"            "came"              "climbing"         
## [80338] "swiftly"           "branches"          "something"        
## [80341] "tree"              "never"             "seen"             
## [80344] "said"              "orc"               "fled"             
## [80347] "soon"              "touched"           "tree"             
## [80350] "stem"              "seemed"            "wary"             
## [80353] "skill"             "trees"             "might"            
## [80356] "thought"           "one"               "hobbits"          
## [80359] "shoot"             "dared"             "arouse"           
## [80362] "cries"             "risk"              "battle"           
## [80365] "strong"            "company"           "orcs"             
## [80368] "passed"            "crossed"           "nimrodel"         
## [80371] "curse"             "foul"              "feet"             
## [80374] "clean"             "water"             "went"             
## [80377] "old"               "road"              "beside"           
## [80380] "river"             "seemed"            "pick"             
## [80383] "scent"             "searched"          "ground"           
## [80386] "near"              "place"             "halted"           
## [80389] "three"             "us"                "challenge"        
## [80392] "hundred"           "went"              "ahead"            
## [80395] "spoke"             "feigned"           "voices"           
## [80398] "leading"           "wood"              "orophin"          
## [80401] "now"               "gone"              "haste"            
## [80404] "back"              "dwellings"         "warn"             
## [80407] "people"            "none"              "orcs"             
## [80410] "will"              "ever"              "return"           
## [80413] "lórien"            "will"              "many"             
## [80416] "elves"             "hidden"            "northern"         
## [80419] "border"            "another"           "night"            
## [80422] "falls"             "must"              "take"             
## [80425] "road"              "south"             "soon"             
## [80428] "fully"             "light"             "day"              
## [80431] "came"              "pale"              "east"             
## [80434] "light"             "grew"              "filtered"         
## [80437] "yellow"            "leaves"            "mallorn"          
## [80440] "seemed"            "hobbits"           "early"            
## [80443] "sun"               "cool"              "summers"          
## [80446] "morning"           "shining"           "pale"             
## [80449] "blue"              "sky"               "peeped"           
## [80452] "among"             "moving"            "branches"         
## [80455] "looking"           "opening"           "south"            
## [80458] "side"              "flet"              "frodo"            
## [80461] "saw"               "valley"            "silverlode"       
## [80464] "lying"             "like"              "sea"              
## [80467] "fallow"            "gold"              "tossing"          
## [80470] "gently"            "breeze"            "morning"          
## [80473] "still"             "young"             "cold"             
## [80476] "company"           "set"               "guided"           
## [80479] "now"               "haldir"            "brother"          
## [80482] "rúmil"             "farewell"          "sweet"            
## [80485] "nimrodel"          "cried"             "legolas"          
## [80488] "frodo"             "looked"            "back"             
## [80491] "caught"            "gleam"             "white"            
## [80494] "foam"              "among"             "grey"             
## [80497] "tree"              "stems"             "farewell"         
## [80500] "said"              "seemed"            "never"            
## [80503] "hear"              "running"           "water"            
## [80506] "beautiful"         "ever"              "blending"         
## [80509] "innumerable"       "notes"             "endless"          
## [80512] "changeful"         "music"             "went"             
## [80515] "back"              "path"              "still"            
## [80518] "went"              "along"             "west"             
## [80521] "side"              "silverlode"        "way"              
## [80524] "followed"          "southward"         "prints"           
## [80527] "orc"               "feet"              "earth"            
## [80530] "soon"              "haldir"            "turned"           
## [80533] "aside"             "trees"             "halted"           
## [80536] "bank"              "river"             "shadows"          
## [80539] "one"               "people"            "yonder"           
## [80542] "across"            "stream"            "said"             
## [80545] "though"            "may"               "see"              
## [80548] "gave"              "call"              "like"             
## [80551] "low"               "whistle"           "bird"             
## [80554] "thicket"           "young"             "trees"            
## [80557] "elf"               "stepped"           "clad"             
## [80560] "grey"              "hood"              "thrown"           
## [80563] "back"              "hair"              "glinted"          
## [80566] "like"              "gold"              "morning"          
## [80569] "sun"               "haldir"            "skilfully"        
## [80572] "cast"              "stream"            "coil"             
## [80575] "grey"              "rope"              "caught"           
## [80578] "bound"             "end"               "tree"             
## [80581] "near"              "bank"              "celebrant"        
## [80584] "already"           "strong"            "stream"           
## [80587] "see"               "said"              "haldir"           
## [80590] "runs"              "swift"             "deep"             
## [80593] "cold"              "set"               "foot"             
## [80596] "far"               "north"             "unless"           
## [80599] "must"              "days"              "watchfulness"     
## [80602] "make"              "bridges"           "cross"            
## [80605] "follow"            "made"              "end"              
## [80608] "rope"              "fast"              "another"          
## [80611] "tree"              "ran"               "lightly"          
## [80614] "along"             "river"             "back"             
## [80617] "road"              "can"               "walk"             
## [80620] "path"              "said"              "legolas"          
## [80623] "others"            "skill"             "must"             
## [80626] "swim"              "said"              "haldir"           
## [80629] "two"               "ropes"             "will"             
## [80632] "fasten"            "one"               "shoulder"         
## [80635] "high"              "another"           "half"             
## [80638] "high"              "holding"           "strangers"        
## [80641] "able"              "cross"             "care"             
## [80644] "slender"           "bridge"            "made"             
## [80647] "company"           "passed"            "cautiously"       
## [80650] "slowly"            "others"            "easily"           
## [80653] "hobbits"           "pippin"            "proved"           
## [80656] "best"              "sure"              "footed"           
## [80659] "walked"            "quickly"           "holding"          
## [80662] "one"               "hand"              "kept"             
## [80665] "eyes"              "bank"              "ahead"            
## [80668] "look"              "sam"               "shuffled"         
## [80671] "along"             "clutching"         "hard"             
## [80674] "looking"           "pale"              "eddying"          
## [80677] "water"             "chasm"             "mountains"        
## [80680] "breathed"          "relief"            "safely"           
## [80683] "across"            "live"              "learn"            
## [80686] "gaffer"            "used"              "say"              
## [80689] "though"            "thinking"          "gardening"        
## [80692] "roosting"          "like"              "bird"             
## [80695] "trying"            "walk"              "like"             
## [80698] "spider"            "even"              "uncle"            
## [80701] "andy"              "ever"              "trick"            
## [80704] "like"              "length"            "company"          
## [80707] "gathered"          "east"              "bank"             
## [80710] "silverlode"        "elves"             "untied"           
## [80713] "ropes"             "coiled"            "two"              
## [80716] "rúmil"             "remained"          "side"             
## [80719] "drew"              "back"              "last"             
## [80722] "one"               "slung"             "shoulder"         
## [80725] "wave"              "hand"              "went"             
## [80728] "away"              "back"              "nimrodel"         
## [80731] "keep"              "watch"             "now"              
## [80734] "friends"           "said"              "haldir"           
## [80737] "entered"           "naith"             "lórien"           
## [80740] "gore"              "say"               "land"             
## [80743] "lies"              "like"              "spear"            
## [80746] "head"              "arms"              "silverlode"       
## [80749] "anduin"            "great"             "allow"            
## [80752] "strangers"         "spy"               "secrets"          
## [80755] "naith"             "indeed"            "permitted"        
## [80758] "even"              "set"               "foot"             
## [80761] "agreed"            "shall"             "blindfold"        
## [80764] "eyes"              "gimli"             "dwarf"            
## [80767] "may"               "walk"              "free"             
## [80770] "come"              "nearer"            "dwellings"        
## [80773] "egladil"           "angle"             "waters"           
## [80776] "liking"            "gimli"             "agreement"        
## [80779] "made"              "without"           "consent"          
## [80782] "said"              "will"              "walk"             
## [80785] "blindfold"         "like"              "beggar"           
## [80788] "prisoner"          "spy"               "folk"             
## [80791] "never"             "dealings"          "servants"         
## [80794] "enemy"             "neither"           "done"             
## [80797] "harm"              "elves"             "likely"           
## [80800] "betray"            "legolas"           "companions"       
## [80803] "doubt"             "said"              "haldir"           
## [80806] "yet"               "law"               "master"           
## [80809] "law"               "set"               "aside"            
## [80812] "done"              "much"              "letting"          
## [80815] "set"               "foot"              "celebrant"        
## [80818] "gimli"             "obstinate"         "planted"          
## [80821] "feet"              "firmly"            "apart"            
## [80824] "laid"              "hand"              "upon"             
## [80827] "haft"              "axe"               "will"             
## [80830] "go"                "forward"           "free"             
## [80833] "said"              "will"              "go"               
## [80836] "back"              "seek"              "land"             
## [80839] "known"             "true"              "word"             
## [80842] "though"            "perish"            "alone"            
## [80845] "wilderness"        "go"                "back"             
## [80848] "said"              "haldir"            "sternly"          
## [80851] "now"               "come"              "thus"             
## [80854] "far"               "must"              "brought"          
## [80857] "lord"              "lady"              "shall"            
## [80860] "judge"             "hold"              "give"             
## [80863] "leave"             "will"              "cross"            
## [80866] "rivers"            "behind"            "now"              
## [80869] "secret"            "sentinels"         "pass"             
## [80872] "slain"             "saw"               "gimli"            
## [80875] "drew"              "axe"               "belt"             
## [80878] "haldir"            "companion"         "bent"             
## [80881] "bows"              "plague"            "dwarves"          
## [80884] "stiff"             "necks"             "said"             
## [80887] "legolas"           "come"              "said"             
## [80890] "aragorn"           "still"             "lead"             
## [80893] "company"           "must"              "bid"              
## [80896] "hard"              "upon"              "dwarf"            
## [80899] "thus"              "singled"           "will"             
## [80902] "blindfold"         "even"              "legolas"          
## [80905] "will"              "best"              "though"           
## [80908] "will"              "make"              "journey"          
## [80911] "slow"              "dull"              "gimli"            
## [80914] "laughed"           "suddenly"          "merry"            
## [80917] "troop"             "fools"             "shall"            
## [80920] "look"              "will"              "haldir"           
## [80923] "lead"              "us"                "string"           
## [80926] "like"              "many"              "blind"            
## [80929] "beggars"           "one"               "dog"              
## [80932] "will"              "content"           "legolas"          
## [80935] "shares"            "blindness"         "elf"              
## [80938] "kinsman"           "said"              "legolas"          
## [80941] "becoming"          "angry"             "turn"             
## [80944] "now"               "let"               "us"               
## [80947] "cry"               "plague"            "stiff"            
## [80950] "necks"             "elves"             "said"             
## [80953] "aragorn"           "company"           "shall"            
## [80956] "fare"              "alike"             "come"             
## [80959] "bind"              "eyes"              "haldir"           
## [80962] "shall"             "claim"             "full"             
## [80965] "amends"            "every"             "fall"             
## [80968] "stubbed"           "toe"               "lead"             
## [80971] "us"                "well"              "said"             
## [80974] "gimli"             "bound"             "cloth"            
## [80977] "eyes"              "will"              "claim"            
## [80980] "said"              "haldir"            "shall"            
## [80983] "lead"              "well"              "paths"            
## [80986] "smooth"            "straight"          "alas"             
## [80989] "folly"             "days"              "said"             
## [80992] "legolas"           "enemies"           "one"              
## [80995] "enemy"             "yet"               "must"             
## [80998] "walk"              "blind"             "sun"              
## [81001] "merry"             "woodland"          "leaves"           
## [81004] "gold"              "folly"             "may"              
## [81007] "seem"              "said"              "haldir"           
## [81010] "indeed"            "nothing"           "power"            
## [81013] "dark"              "lord"              "clearly"          
## [81016] "shown"             "estrangement"      "divides"          
## [81019] "still"             "oppose"            "yet"              
## [81022] "little"            "faith"             "trust"            
## [81025] "find"              "now"               "world"            
## [81028] "beyond"            "lothlórien"        "unless"           
## [81031] "maybe"             "rivendell"         "dare"             
## [81034] "trust"             "endanger"          "land"             
## [81037] "live"              "now"               "upon"             
## [81040] "island"            "amid"              "many"             
## [81043] "perils"            "hands"             "often"            
## [81046] "upon"              "bowstring"         "upon"             
## [81049] "harp"              "rivers"            "long"             
## [81052] "defended"          "us"                "sure"             
## [81055] "guard"             "shadow"            "crept"            
## [81058] "northward"         "us"                "speak"            
## [81061] "departing"         "yet"               "already"          
## [81064] "seems"             "late"              "mountains"        
## [81067] "west"              "growing"           "evil"             
## [81070] "east"              "lands"             "waste"            
## [81073] "full"              "saurons"           "creatures"        
## [81076] "rumoured"          "now"               "safely"           
## [81079] "pass"              "southward"         "rohan"            
## [81082] "mouths"            "great"             "river"            
## [81085] "watched"           "enemy"             "even"             
## [81088] "come"              "shores"            "sea"              
## [81091] "find"              "longer"            "shelter"          
## [81094] "said"              "still"             "havens"           
## [81097] "high"              "elves"             "far"              
## [81100] "north"             "west"              "beyond"           
## [81103] "land"              "halflings"         "may"              
## [81106] "though"            "lord"              "lady"             
## [81109] "may"               "know"              "least"            
## [81112] "guess"             "since"             "seen"             
## [81115] "us"                "said"              "merry"            
## [81118] "elf"               "havens"            "west"             
## [81121] "land"              "shire"             "hobbits"          
## [81124] "live"              "happy"             "folk"             
## [81127] "hobbits"           "dwell"             "near"             
## [81130] "shores"            "sea"               "said"             
## [81133] "haldir"            "long"              "indeed"           
## [81136] "since"             "folk"              "looked"           
## [81139] "yet"               "still"             "remember"         
## [81142] "song"              "tell"              "havens"           
## [81145] "walk"              "said"              "merry"            
## [81148] "never"             "seen"              "never"            
## [81151] "land"              "known"             "world"            
## [81154] "outside"           "like"              "dont"             
## [81157] "think"             "heart"             "leave"            
## [81160] "even"              "see"               "fair"             
## [81163] "lothlórien"        "said"              "haldir"           
## [81166] "world"             "indeed"            "full"             
## [81169] "peril"             "many"              "dark"             
## [81172] "places"            "still"             "much"             
## [81175] "fair"              "though"            "lands"            
## [81178] "love"              "now"               "mingled"          
## [81181] "grief"             "grows"             "perhaps"          
## [81184] "greater"           "among"             "us"               
## [81187] "sing"              "shadow"            "will"             
## [81190] "draw"              "back"              "peace"            
## [81193] "shall"             "come"              "yet"              
## [81196] "believe"           "world"             "us"               
## [81199] "will"              "ever"              "old"              
## [81202] "light"             "sun"               "aforetime"        
## [81205] "elves"             "fear"              "will"             
## [81208] "prove"             "best"              "truce"            
## [81211] "may"               "pass"              "sea"              
## [81214] "unhindered"        "leave"             "middle"           
## [81217] "earth"             "ever"              "alas"             
## [81220] "lothlórien"        "love"              "poor"             
## [81223] "life"              "land"              "mallorn"          
## [81226] "grew"              "mallorn"           "trees"            
## [81229] "beyond"            "great"             "sea"              
## [81232] "none"              "reported"          "spoke"            
## [81235] "thus"              "company"           "filed"            
## [81238] "slowly"            "along"             "paths"            
## [81241] "wood"              "led"               "haldir"           
## [81244] "elf"               "walked"            "behind"           
## [81247] "felt"              "ground"            "beneath"          
## [81250] "feet"              "smooth"            "soft"             
## [81253] "walked"            "freely"            "without"          
## [81256] "fear"              "hurt"              "fall"             
## [81259] "deprived"          "sight"             "frodo"            
## [81262] "found"             "hearing"           "senses"           
## [81265] "sharpened"         "smell"             "trees"            
## [81268] "trodden"           "grass"             "hear"             
## [81271] "many"              "different"         "notes"            
## [81274] "rustle"            "leaves"            "overhead"         
## [81277] "river"             "murmuring"         "away"             
## [81280] "right"             "thin"              "clear"            
## [81283] "voices"            "birds"             "sky"              
## [81286] "felt"              "sun"               "upon"             
## [81289] "face"              "hands"             "passed"           
## [81292] "open"              "glade"             "soon"             
## [81295] "set"               "foot"              "upon"             
## [81298] "far"               "bank"              "silverlode"       
## [81301] "strange"           "feeling"           "come"             
## [81304] "upon"              "deepened"          "walked"           
## [81307] "naith"             "seemed"            "stepped"          
## [81310] "bridge"            "time"              "corner"           
## [81313] "elder"             "days"              "now"              
## [81316] "walking"           "world"             "rivendell"        
## [81319] "memory"            "ancient"           "things"           
## [81322] "lórien"            "ancient"           "things"           
## [81325] "still"             "lived"             "waking"           
## [81328] "world"             "evil"              "seen"             
## [81331] "heard"             "sorrow"            "known"            
## [81334] "elves"             "feared"            "distrusted"       
## [81337] "world"             "outside"           "wolves"           
## [81340] "howling"           "woods"             "borders"          
## [81343] "land"              "lórien"            "shadow"           
## [81346] "lay"               "day"               "company"          
## [81349] "marched"           "felt"              "cool"             
## [81352] "evening"           "come"              "heard"            
## [81355] "early"             "night"             "wind"             
## [81358] "whispering"        "among"             "many"             
## [81361] "leaves"            "rested"            "slept"            
## [81364] "without"           "fear"              "upon"             
## [81367] "ground"            "guides"            "permit"           
## [81370] "unbind"            "eyes"              "climb"            
## [81373] "morning"           "went"              "walking"          
## [81376] "without"           "haste"             "noon"             
## [81379] "halted"            "frodo"             "aware"            
## [81382] "passed"            "shining"           "sun"              
## [81385] "suddenly"          "heard"             "sound"            
## [81388] "many"              "voices"            "around"           
## [81391] "marching"          "host"              "elves"            
## [81394] "come"              "silently"          "hastening"        
## [81397] "toward"            "northern"          "borders"          
## [81400] "guard"             "attack"            "moria"            
## [81403] "brought"           "news"              "haldir"           
## [81406] "reported"          "marauding"         "orcs"             
## [81409] "waylaid"           "almost"            "destroyed"        
## [81412] "remnant"           "fled"              "westward"         
## [81415] "towards"           "mountains"         "pursued"          
## [81418] "strange"           "creature"          "also"             
## [81421] "seen"              "running"           "bent"             
## [81424] "back"              "hands"             "near"             
## [81427] "ground"            "like"              "beast"            
## [81430] "yet"               "beast"             "shape"            
## [81433] "eluded"            "capture"           "shot"             
## [81436] "knowing"           "whether"           "good"             
## [81439] "ill"               "vanished"          "silverlode"       
## [81442] "southward"         "also"              "said"             
## [81445] "haldir"            "bring"             "message"          
## [81448] "lord"              "lady"              "galadhrim"        
## [81451] "walk"              "free"              "even"             
## [81454] "dwarf"             "gimli"             "seems"            
## [81457] "lady"              "knows"             "member"           
## [81460] "company"           "new"               "messages"         
## [81463] "come"              "rivendell"         "perhaps"          
## [81466] "removed"           "bandage"           "first"            
## [81469] "gimlis"            "eyes"              "pardon"           
## [81472] "said"              "bowing"            "low"              
## [81475] "look"              "us"                "now"              
## [81478] "friendly"          "eyes"              "look"             
## [81481] "glad"              "first"             "dwarf"            
## [81484] "behold"            "trees"             "naith"            
## [81487] "lórien"            "since"             "durins"           
## [81490] "day"               "eyes"              "turn"             
## [81493] "uncovered"         "frodo"             "looked"           
## [81496] "caught"            "breath"            "standing"         
## [81499] "open"              "space"             "left"             
## [81502] "stood"             "great"             "mound"            
## [81505] "covered"           "sward"             "grass"            
## [81508] "green"             "spring"            "time"             
## [81511] "elder"             "days"              "upon"             
## [81514] "double"            "crown"             "grew"             
## [81517] "two"               "circles"           "trees"            
## [81520] "outer"             "bark"              "snowy"            
## [81523] "white"             "leafless"          "beautiful"        
## [81526] "shapely"           "nakedness"         "inner"            
## [81529] "mallorn"           "trees"             "great"            
## [81532] "height"            "still"             "arrayed"          
## [81535] "pale"              "gold"              "high"             
## [81538] "amid"              "branches"          "towering"         
## [81541] "tree"              "stood"             "centre"           
## [81544] "gleamed"           "white"             "flet"             
## [81547] "feet"              "trees"             "green"            
## [81550] "hillsides"         "grass"             "studded"          
## [81553] "small"             "golden"            "flowers"          
## [81556] "shaped"            "like"              "stars"            
## [81559] "among"             "nodding"           "slender"          
## [81562] "stalks"            "flowers"           "white"            
## [81565] "palest"            "green"             "glimmered"        
## [81568] "mist"              "amid"              "rich"             
## [81571] "hue"               "grass"             "sky"              
## [81574] "blue"              "sun"               "afternoon"        
## [81577] "glowed"            "upon"              "hill"             
## [81580] "cast"              "long"              "green"            
## [81583] "shadows"           "beneath"           "trees"            
## [81586] "behold"            "come"              "cerin"            
## [81589] "amroth"            "said"              "haldir"           
## [81592] "heart"             "ancient"           "realm"            
## [81595] "long"              "ago"               "mound"            
## [81598] "amroth"            "happier"           "days"             
## [81601] "high"              "house"             "built"            
## [81604] "ever"              "bloom"             "winter"           
## [81607] "flowers"           "unfading"          "grass"            
## [81610] "yellow"            "elanor"            "pale"             
## [81613] "niphredil"         "will"              "stay"             
## [81616] "awhile"            "come"              "city"             
## [81619] "galadhrim"         "dusk"              "others"           
## [81622] "cast"              "upon"              "fragrant"         
## [81625] "grass"             "frodo"             "stood"            
## [81628] "awhile"            "still"             "lost"             
## [81631] "wonder"            "seemed"            "stepped"          
## [81634] "high"              "window"            "looked"           
## [81637] "vanished"          "world"             "light"            
## [81640] "upon"              "language"          "name"             
## [81643] "saw"               "shapely"           "shapes"           
## [81646] "seemed"            "clear"             "cut"              
## [81649] "first"             "conceived"         "drawn"            
## [81652] "uncovering"        "eyes"              "ancient"          
## [81655] "endured"           "ever"              "saw"              
## [81658] "colour"            "knew"              "gold"             
## [81661] "white"             "blue"              "green"            
## [81664] "fresh"             "poignant"          "moment"           
## [81667] "first"             "perceived"         "made"             
## [81670] "names"             "new"               "wonderful"        
## [81673] "winter"            "heart"             "mourn"            
## [81676] "summer"            "spring"            "blemish"          
## [81679] "sickness"          "deformity"         "seen"             
## [81682] "anything"          "grew"              "upon"             
## [81685] "earth"             "land"              "lórien"           
## [81688] "stain"             "turned"            "saw"              
## [81691] "sam"               "now"               "standing"         
## [81694] "beside"            "looking"           "round"            
## [81697] "puzzled"           "expression"        "rubbing"          
## [81700] "eyes"              "sure"              "awake"            
## [81703] "sunlight"          "bright"            "day"              
## [81706] "right"             "enough"            "said"             
## [81709] "thought"           "elves"             "moon"             
## [81712] "stars"             "elvish"            "anything"         
## [81715] "ever"              "heard"             "tell"             
## [81718] "feel"              "inside"            "song"             
## [81721] "take"              "meaning"           "haldir"           
## [81724] "looked"            "seemed"            "indeed"           
## [81727] "take"              "meaning"           "thought"          
## [81730] "word"              "smiled"            "feel"             
## [81733] "power"             "lady"              "galadhrim"        
## [81736] "said"              "please"            "climb"            
## [81739] "cerin"             "amroth"            "followed"         
## [81742] "stepped"           "lightly"           "grass"            
## [81745] "clad"              "slopes"            "though"           
## [81748] "walked"            "breathed"          "living"           
## [81751] "leaves"            "flowers"           "stirred"          
## [81754] "cool"              "wind"              "fanned"           
## [81757] "face"              "frodo"             "felt"             
## [81760] "timeless"          "land"              "fade"             
## [81763] "change"            "fall"              "forgetfulness"    
## [81766] "gone"              "passed"            "outer"            
## [81769] "world"             "still"             "frodo"            
## [81772] "wanderer"          "shire"             "walk"             
## [81775] "upon"              "grass"             "among"            
## [81778] "elanor"            "niphredil"         "fair"             
## [81781] "lothlórien"        "entered"           "circle"           
## [81784] "white"             "trees"             "south"            
## [81787] "wind"              "blew"              "upon"             
## [81790] "cerin"             "amroth"            "sighed"           
## [81793] "among"             "branches"          "frodo"            
## [81796] "stood"             "still"             "hearing"          
## [81799] "far"               "great"             "seas"             
## [81802] "upon"              "beaches"           "long"             
## [81805] "ago"               "washed"            "away"             
## [81808] "sea"               "birds"             "crying"           
## [81811] "whose"             "race"              "perished"         
## [81814] "earth"             "haldir"            "gone"             
## [81817] "now"               "climbing"          "high"             
## [81820] "flet"              "frodo"             "prepared"         
## [81823] "follow"            "laid"              "hand"             
## [81826] "upon"              "tree"              "beside"           
## [81829] "ladder"            "never"             "suddenly"         
## [81832] "keenly"            "aware"             "feel"             
## [81835] "texture"           "trees"             "skin"             
## [81838] "life"              "within"            "felt"             
## [81841] "delight"           "wood"              "touch"            
## [81844] "neither"           "forester"          "carpenter"        
## [81847] "delight"           "living"            "tree"             
## [81850] "stepped"           "last"              "upon"             
## [81853] "lofty"             "platform"          "haldir"           
## [81856] "took"              "hand"              "turned"           
## [81859] "toward"            "south"             "look"             
## [81862] "way"               "first"             "said"             
## [81865] "frodo"             "looked"            "saw"              
## [81868] "still"             "distance"          "hill"             
## [81871] "many"              "mighty"            "trees"            
## [81874] "city"              "green"             "towers"           
## [81877] "tell"              "seemed"            "power"            
## [81880] "light"             "came"              "held"             
## [81883] "land"              "sway"              "longed"           
## [81886] "suddenly"          "fly"               "like"             
## [81889] "bird"              "rest"              "green"            
## [81892] "city"              "looked"            "eastward"         
## [81895] "saw"               "land"              "lórien"           
## [81898] "running"           "pale"              "gleam"            
## [81901] "anduin"            "great"             "river"            
## [81904] "lifted"            "eyes"              "across"           
## [81907] "river"             "light"             "went"             
## [81910] "back"              "world"             "knew"             
## [81913] "beyond"            "river"             "land"             
## [81916] "appeared"          "flat"              "empty"            
## [81919] "formless"          "vague"             "far"              
## [81922] "away"              "rose"              "like"             
## [81925] "wall"              "dark"              "drear"            
## [81928] "sun"               "lay"               "lothlórien"       
## [81931] "power"             "enlighten"         "shadow"           
## [81934] "distant"           "height"            "lies"             
## [81937] "fastness"          "southern"          "mirkwood"         
## [81940] "said"              "haldir"            "clad"             
## [81943] "forest"            "dark"              "fir"              
## [81946] "trees"             "strive"            "one"              
## [81949] "another"           "branches"          "rot"              
## [81952] "wither"            "midst"             "upon"             
## [81955] "stony"             "height"            "stands"           
## [81958] "dol"               "guldur"            "long"             
## [81961] "hidden"            "enemy"             "dwelling"         
## [81964] "fear"              "now"               "inhabited"        
## [81967] "power"             "sevenfold"         "black"            
## [81970] "cloud"             "lies"              "often"            
## [81973] "late"              "high"              "place"            
## [81976] "may"               "see"               "two"              
## [81979] "powers"            "opposed"           "one"              
## [81982] "another"           "ever"              "strive"           
## [81985] "now"               "thought"           "whereas"          
## [81988] "light"             "perceives"         "heart"            
## [81991] "darkness"          "secret"            "discovered"       
## [81994] "yet"               "turned"            "climbed"          
## [81997] "swiftly"           "followed"          "hills"            
## [82000] "foot"              "frodo"             "found"            
## [82003] "aragorn"           "standing"          "still"            
## [82006] "silent"            "tree"              "hand"             
## [82009] "small"             "golden"            "bloom"            
## [82012] "elanor"            "light"             "eyes"             
## [82015] "wrapped"           "fair"              "memory"           
## [82018] "frodo"             "looked"            "knew"             
## [82021] "beheld"            "things"            "place"            
## [82024] "grim"              "years"             "removed"          
## [82027] "face"              "aragorn"           "seemed"           
## [82030] "clothed"           "white"             "young"            
## [82033] "lord"              "tall"              "fair"             
## [82036] "spoke"             "words"             "elvish"           
## [82039] "tongue"            "one"               "frodo"            
## [82042] "see"               "arwen"             "vanimelda"        
## [82045] "namárië"           "said"              "drew"             
## [82048] "breath"            "returning"         "thought"          
## [82051] "looked"            "frodo"             "smiled"           
## [82054] "heart"             "elvendom"          "earth"            
## [82057] "said"              "heart"             "dwells"           
## [82060] "ever"              "unless"            "light"            
## [82063] "beyond"            "dark"              "roads"            
## [82066] "still"             "must"              "tread"            
## [82069] "come"              "taking"            "frodos"           
## [82072] "hand"              "left"              "hill"             
## [82075] "cerin"             "amroth"            "came"             
## [82078] "never"             "living"            "man"              
## [82081] "chapter"           "mirror"            "galadriel"        
## [82084] "sun"               "sinking"           "behind"           
## [82087] "mountains"         "shadows"           "deepening"        
## [82090] "woods"             "went"              "paths"            
## [82093] "now"               "went"              "thickets"         
## [82096] "dusk"              "already"           "gathered"         
## [82099] "night"             "came"              "beneath"          
## [82102] "trees"             "walked"            "elves"            
## [82105] "uncovered"         "silver"            "lamps"            
## [82108] "suddenly"          "came"              "open"             
## [82111] "found"             "pale"              "evening"          
## [82114] "sky"               "pricked"           "early"            
## [82117] "stars"             "wide"              "treeless"         
## [82120] "space"             "running"           "great"            
## [82123] "circle"            "bending"           "away"             
## [82126] "either"            "hand"              "beyond"           
## [82129] "deep"              "fosse"             "lost"             
## [82132] "soft"              "shadow"            "grass"            
## [82135] "upon"              "brink"             "green"            
## [82138] "glowed"            "still"             "memory"           
## [82141] "sun"               "gone"              "upon"             
## [82144] "side"              "rose"              "great"            
## [82147] "height"            "green"             "wall"             
## [82150] "encircling"        "green"             "hill"             
## [82153] "thronged"          "mallorn"           "trees"            
## [82156] "taller"            "yet"               "seen"             
## [82159] "land"              "height"            "guessed"          
## [82162] "stood"             "twilight"          "like"             
## [82165] "living"            "towers"            "many"             
## [82168] "tiered"            "branches"          "amid"             
## [82171] "ever"              "moving"            "leaves"           
## [82174] "countless"         "lights"            "gleaming"         
## [82177] "green"             "gold"              "silver"           
## [82180] "haldir"            "turned"            "towards"          
## [82183] "company"           "welcome"           "caras"            
## [82186] "galadhon"          "said"              "city"             
## [82189] "galadhrim"         "dwell"             "lord"             
## [82192] "celeborn"          "galadriel"         "lady"             
## [82195] "lórien"            "enter"             "gates"            
## [82198] "look"              "northward"         "must"             
## [82201] "go"                "round"             "southern"         
## [82204] "side"              "way"               "short"            
## [82207] "city"              "great"             "road"             
## [82210] "paved"             "white"             "stone"            
## [82213] "running"           "outer"             "brink"            
## [82216] "fosse"             "along"             "went"             
## [82219] "westward"          "city"              "ever"             
## [82222] "climbing"          "like"              "green"            
## [82225] "cloud"             "upon"              "left"             
## [82228] "night"             "deepened"          "lights"           
## [82231] "sprang"            "forth"             "hill"             
## [82234] "seemed"            "afire"             "stars"            
## [82237] "came"              "last"              "white"            
## [82240] "bridge"            "crossing"          "found"            
## [82243] "great"             "gates"             "city"             
## [82246] "faced"             "south"             "west"             
## [82249] "set"               "ends"              "encircling"       
## [82252] "wall"              "overlapped"        "tall"             
## [82255] "strong"            "hung"              "many"             
## [82258] "lamps"             "haldir"            "knocked"          
## [82261] "spoke"             "gates"             "opened"           
## [82264] "soundlessly"       "guards"            "frodo"            
## [82267] "see"               "sign"              "travellers"       
## [82270] "passed"            "within"            "gates"            
## [82273] "shut"              "behind"            "deep"             
## [82276] "lane"              "ends"              "wall"             
## [82279] "passing"           "quickly"           "entered"          
## [82282] "city"              "trees"             "folk"             
## [82285] "see"               "hear"              "feet"             
## [82288] "upon"              "paths"             "many"             
## [82291] "voices"            "air"               "far"              
## [82294] "away"              "hill"              "hear"             
## [82297] "sound"             "singing"           "falling"          
## [82300] "high"              "like"              "soft"             
## [82303] "rain"              "upon"              "leaves"           
## [82306] "went"              "along"             "many"             
## [82309] "paths"             "climbed"           "many"             
## [82312] "stairs"            "came"              "high"             
## [82315] "places"            "saw"               "amid"             
## [82318] "wide"              "lawn"              "fountain"         
## [82321] "shimmering"        "lit"               "silver"           
## [82324] "lamps"             "swung"             "boughs"           
## [82327] "trees"             "fell"              "basin"            
## [82330] "silver"            "white"             "stream"           
## [82333] "spilled"           "upon"              "south"            
## [82336] "side"              "lawn"              "stood"            
## [82339] "mightiest"         "trees"             "great"            
## [82342] "smooth"            "bole"              "gleamed"          
## [82345] "like"              "grey"              "silk"             
## [82348] "towered"           "first"             "branches"         
## [82351] "far"               "opened"            "huge"             
## [82354] "limbs"             "shadowy"           "clouds"           
## [82357] "leaves"            "beside"            "broad"            
## [82360] "white"             "ladder"            "stood"            
## [82363] "foot"              "three"             "elves"            
## [82366] "seated"            "sprang"            "travellers"       
## [82369] "approached"        "frodo"             "saw"              
## [82372] "tall"              "clad"              "grey"             
## [82375] "mail"              "shoulders"         "hung"             
## [82378] "long"              "white"             "cloaks"           
## [82381] "dwell"             "celeborn"          "galadriel"        
## [82384] "said"              "haldir"            "wish"             
## [82387] "ascend"            "speak"             "one"              
## [82390] "elf"               "wardens"           "blew"             
## [82393] "clear"             "note"              "small"            
## [82396] "horn"              "answered"          "three"            
## [82399] "times"             "far"               "will"             
## [82402] "go"                "first"             "said"             
## [82405] "haldir"            "let"               "frodo"            
## [82408] "come"              "next"              "legolas"          
## [82411] "others"            "may"               "follow"           
## [82414] "wish"              "long"              "climb"            
## [82417] "accustomed"        "stairs"            "may"              
## [82420] "rest"              "upon"              "way"              
## [82423] "climbed"           "slowly"            "frodo"            
## [82426] "passed"            "many"              "flets"            
## [82429] "one"               "side"              "another"          
## [82432] "set"               "bole"              "tree"             
## [82435] "ladder"            "passed"            "great"            
## [82438] "height"            "ground"            "came"             
## [82441] "wide"              "talan"             "like"             
## [82444] "deck"              "great"             "ship"             
## [82447] "built"             "house"             "large"            
## [82450] "almost"            "served"            "hall"             
## [82453] "men"               "upon"              "earth"            
## [82456] "entered"           "behind"            "haldir"           
## [82459] "found"             "chamber"           "oval"             
## [82462] "shape"             "midst"             "grew"             
## [82465] "trunk"             "great"             "mallorn"          
## [82468] "now"               "tapering"          "towards"          
## [82471] "crown"             "yet"               "making"           
## [82474] "still"             "pillar"            "wide"             
## [82477] "girth"             "chamber"           "filled"           
## [82480] "soft"              "light"             "walls"            
## [82483] "green"             "silver"            "roof"             
## [82486] "gold"              "many"              "elves"            
## [82489] "seated"            "two"               "chairs"           
## [82492] "beneath"           "bole"              "tree"             
## [82495] "canopied"          "living"            "bough"            
## [82498] "sat"               "side"              "side"             
## [82501] "celeborn"          "galadriel"         "stood"            
## [82504] "greet"             "guests"            "manner"           
## [82507] "elves"             "even"              "accounted"        
## [82510] "mighty"            "kings"             "tall"             
## [82513] "lady"              "less"              "tall"             
## [82516] "lord"              "grave"             "beautiful"        
## [82519] "clad"              "wholly"            "white"            
## [82522] "hair"              "lady"              "deep"             
## [82525] "gold"              "hair"              "lord"             
## [82528] "celeborn"          "silver"            "long"             
## [82531] "bright"            "sign"              "age"              
## [82534] "upon"              "unless"            "depths"           
## [82537] "eyes"              "keen"              "lances"           
## [82540] "starlight"         "yet"               "profound"         
## [82543] "wells"             "deep"              "memory"           
## [82546] "haldir"            "led"               "frodo"            
## [82549] "lord"              "welcomed"          "tongue"           
## [82552] "lady"              "galadriel"         "said"             
## [82555] "word"              "looked"            "long"             
## [82558] "upon"              "face"              "sit"              
## [82561] "now"               "beside"            "chair"            
## [82564] "frodo"             "shire"             "said"             
## [82567] "celeborn"          "come"              "will"             
## [82570] "speak"             "together"          "companions"       
## [82573] "greeted"           "courteously"       "name"             
## [82576] "entered"           "welcome"           "aragorn"          
## [82579] "son"               "arathorn"          "said"             
## [82582] "eight"             "thirty"            "years"            
## [82585] "world"             "outside"           "since"            
## [82588] "came"              "land"              "years"            
## [82591] "lie"               "heavy"             "end"              
## [82594] "near"              "good"              "ill"              
## [82597] "lay"               "aside"             "burden"           
## [82600] "welcome"           "son"               "thranduil"        
## [82603] "seldom"            "kindred"           "journey"          
## [82606] "hither"            "north"             "welcome"          
## [82609] "gimli"             "son"               "glóin"            
## [82612] "long"              "indeed"            "since"            
## [82615] "saw"               "one"               "durins"           
## [82618] "folk"              "caras"             "galadhon"         
## [82621] "today"             "broken"            "long"             
## [82624] "law"               "may"               "sign"             
## [82627] "though"            "world"             "now"              
## [82630] "dark"              "better"            "days"             
## [82633] "hand"              "friendship"        "shall"            
## [82636] "renewed"           "peoples"           "gimli"            
## [82639] "bowed"             "low"               "guests"           
## [82642] "seated"            "chair"             "lord"             
## [82645] "looked"            "eight"             "said"             
## [82648] "nine"              "set"               "said"             
## [82651] "messages"          "maybe"             "change"           
## [82654] "counsel"           "heard"             "elrond"           
## [82657] "far"               "away"              "darkness"         
## [82660] "gathers"           "us"                "year"             
## [82663] "shadows"           "grown"             "longer"           
## [82666] "nay"               "change"            "counsel"          
## [82669] "said"              "lady"              "galadriel"        
## [82672] "speaking"          "first"             "time"             
## [82675] "voice"             "clear"             "musical"          
## [82678] "deeper"            "womans"            "wont"             
## [82681] "gandalf"           "grey"              "set"              
## [82684] "company"           "pass"              "borders"          
## [82687] "land"              "now"               "tell"             
## [82690] "us"                "much"              "desired"          
## [82693] "speak"             "see"               "afar"             
## [82696] "unless"            "comes"             "within"           
## [82699] "fences"            "lothlórien"        "grey"             
## [82702] "mist"              "ways"              "feet"             
## [82705] "mind"              "hidden"            "alas"             
## [82708] "said"              "aragorn"           "gandalf"          
## [82711] "grey"              "fell"              "shadow"           
## [82714] "remained"          "moria"             "escape"           
## [82717] "words"             "elves"             "hall"             
## [82720] "cried"             "aloud"             "grief"            
## [82723] "amazement"         "evil"              "tidings"          
## [82726] "said"              "celeborn"          "evil"             
## [82729] "spoken"            "long"              "years"            
## [82732] "full"              "grievous"          "deeds"            
## [82735] "turned"            "haldir"            "nothing"          
## [82738] "told"              "asked"             "elven"            
## [82741] "tongue"            "spoken"            "haldir"           
## [82744] "deeds"             "purpose"           "said"             
## [82747] "legolas"           "first"             "weary"            
## [82750] "danger"            "close"             "behind"           
## [82753] "afterwards"        "almost"            "forgot"           
## [82756] "grief"             "time"              "walked"           
## [82759] "gladness"          "fair"              "paths"            
## [82762] "lórien"            "yet"               "grief"            
## [82765] "great"             "loss"              "mended"           
## [82768] "said"              "frodo"             "gandalf"          
## [82771] "guide"             "led"               "us"               
## [82774] "moria"             "escape"            "seemed"           
## [82777] "beyond"            "hope"              "saved"            
## [82780] "us"                "fell"              "tell"             
## [82783] "us"                "now"               "full"             
## [82786] "tale"              "said"              "celeborn"         
## [82789] "aragorn"           "recounted"         "happened"         
## [82792] "upon"              "pass"              "caradhras"        
## [82795] "days"              "followed"          "spoke"            
## [82798] "balin"             "book"              "fight"            
## [82801] "chamber"           "mazarbul"          "fire"             
## [82804] "narrow"            "bridge"            "coming"           
## [82807] "terror"            "evil"              "ancient"          
## [82810] "world"             "seemed"            "never"            
## [82813] "seen"              "said"              "aragorn"          
## [82816] "shadow"            "flame"             "strong"           
## [82819] "terrible"          "balrog"            "morgoth"          
## [82822] "said"              "legolas"           "elf"              
## [82825] "banes"             "deadly"            "save"             
## [82828] "one"               "sits"              "dark"             
## [82831] "tower"             "indeed"            "saw"              
## [82834] "upon"              "bridge"            "haunts"           
## [82837] "darkest"           "dreams"            "saw"              
## [82840] "durins"            "bane"              "said"             
## [82843] "gimli"             "low"               "voice"            
## [82846] "dread"             "eyes"              "alas"             
## [82849] "said"              "celeborn"          "long"             
## [82852] "feared"            "caradhras"         "terror"           
## [82855] "slept"             "known"             "dwarves"          
## [82858] "stirred"           "evil"              "moria"            
## [82861] "forbidden"         "pass"              "northern"         
## [82864] "borders"           "went"              "possible"         
## [82867] "one"               "say"               "last"             
## [82870] "gandalf"           "fell"              "wisdom"           
## [82873] "folly"             "going"             "needlessly"       
## [82876] "net"               "moria"             "rash"             
## [82879] "indeed"            "said"              "thing"            
## [82882] "said"              "galadriel"         "gravely"          
## [82885] "needless"          "none"              "deeds"            
## [82888] "gandalf"           "life"              "followed"         
## [82891] "knew"              "mind"              "report"           
## [82894] "full"              "purpose"           "however"          
## [82897] "may"               "guide"             "followers"        
## [82900] "blameless"         "repent"            "welcome"          
## [82903] "dwarf"             "folk"              "exiled"           
## [82906] "long"              "far"               "lothlórien"       
## [82909] "galadhrim"         "even"              "celeborn"         
## [82912] "wise"              "pass"              "nigh"             
## [82915] "wish"              "look"              "upon"             
## [82918] "ancient"           "home"              "though"           
## [82921] "become"            "abode"             "dragons"          
## [82924] "dark"              "water"             "kheled"           
## [82927] "zâram"             "cold"              "springs"          
## [82930] "kibil"             "nâla"              "fair"             
## [82933] "many"              "pillared"          "halls"            
## [82936] "khazad"            "dûm"               "elder"            
## [82939] "days"              "fall"              "mighty"           
## [82942] "kings"             "beneath"           "stone"            
## [82945] "looked"            "upon"              "gimli"            
## [82948] "sat"               "glowering"         "sad"              
## [82951] "smiled"            "dwarf"             "hearing"          
## [82954] "names"             "given"             "ancient"          
## [82957] "tongue"            "looked"            "met"              
## [82960] "eyes"              "seemed"            "looked"           
## [82963] "suddenly"          "heart"             "enemy"            
## [82966] "saw"               "love"              "understanding"    
## [82969] "wonder"            "came"              "face"             
## [82972] "smiled"            "answer"            "rose"             
## [82975] "clumsily"          "bowed"             "dwarf"            
## [82978] "fashion"           "saying"            "yet"              
## [82981] "fair"              "living"            "land"             
## [82984] "lórien"            "lady"              "galadriel"        
## [82987] "jewels"            "lie"               "beneath"          
## [82990] "earth"             "silence"           "length"           
## [82993] "celeborn"          "spoke"             "know"             
## [82996] "plight"            "evil"              "said"             
## [82999] "let"               "gimli"             "forget"           
## [83002] "harsh"             "words"             "spoke"            
## [83005] "trouble"           "heart"             "will"             
## [83008] "can"               "aid"               "according"        
## [83011] "wish"              "need"              "especially"       
## [83014] "one"               "little"            "folk"             
## [83017] "bears"             "burden"            "quest"            
## [83020] "known"             "us"                "said"             
## [83023] "galadriel"         "looking"           "frodo"            
## [83026] "will"              "speak"             "openly"           
## [83029] "yet"               "vain"              "will"             
## [83032] "prove"             "maybe"             "came"             
## [83035] "land"              "seeking"           "aid"              
## [83038] "gandalf"           "plainly"           "purposed"         
## [83041] "lord"              "galadhrim"         "accounted"        
## [83044] "wisest"            "elves"             "middle"           
## [83047] "earth"             "giver"             "gifts"            
## [83050] "beyond"            "power"             "kings"            
## [83053] "dwelt"             "west"              "since"            
## [83056] "days"              "dawn"              "dwelt"            
## [83059] "years"             "uncounted"         "ere"              
## [83062] "fall"              "nargothrond"       "gondolin"         
## [83065] "passed"            "mountains"         "together"         
## [83068] "ages"              "world"             "fought"           
## [83071] "long"              "defeat"            "first"            
## [83074] "summoned"          "white"             "council"          
## [83077] "designs"           "gone"              "amiss"            
## [83080] "governed"          "gandalf"           "grey"             
## [83083] "mayhap"            "things"            "gone"             
## [83086] "otherwise"         "even"              "now"              
## [83089] "hope"              "left"              "will"             
## [83092] "give"              "counsel"           "saying"           
## [83095] "contriving"        "choosing"          "course"           
## [83098] "another"           "can"               "avail"            
## [83101] "knowing"           "part"              "also"             
## [83104] "shall"             "will"              "say"              
## [83107] "quest"             "stands"            "upon"             
## [83110] "edge"              "knife"             "stray"            
## [83113] "little"            "will"              "fail"             
## [83116] "ruin"              "yet"               "hope"             
## [83119] "remains"           "company"           "true"             
## [83122] "word"              "held"              "eyes"             
## [83125] "silence"           "looked"            "searchingly"      
## [83128] "turn"              "none"              "save"             
## [83131] "legolas"           "aragorn"           "long"             
## [83134] "endure"            "glance"            "sam"              
## [83137] "quickly"           "blushed"           "hung"             
## [83140] "head"              "length"            "lady"             
## [83143] "galadriel"         "released"          "eyes"             
## [83146] "smiled"            "let"               "hearts"           
## [83149] "troubled"          "said"              "tonight"          
## [83152] "shall"             "sleep"             "peace"            
## [83155] "sighed"            "felt"              "suddenly"         
## [83158] "weary"             "questioned"        "long"             
## [83161] "deeply"            "though"            "words"            
## [83164] "spoken"            "openly"            "go"               
## [83167] "now"               "said"              "celeborn"         
## [83170] "worn"              "sorrow"            "much"             
## [83173] "toil"              "even"              "quest"            
## [83176] "concern"           "us"                "closely"          
## [83179] "refuge"            "city"              "healed"           
## [83182] "refreshed"         "now"               "shall"            
## [83185] "rest"              "will"              "speak"            
## [83188] "road"              "night"             "company"          
## [83191] "slept"             "upon"              "ground"           
## [83194] "much"              "satisfaction"      "hobbits"          
## [83197] "elves"             "spread"            "pavilion"         
## [83200] "among"             "trees"             "near"             
## [83203] "fountain"          "laid"              "soft"             
## [83206] "couches"           "speaking"          "words"            
## [83209] "peace"             "fair"              "elvish"           
## [83212] "voices"            "left"              "little"           
## [83215] "travellers"        "talked"            "night"            
## [83218] "tree"              "tops"              "days"             
## [83221] "journey"           "lord"              "lady"             
## [83224] "yet"               "heart"             "look"             
## [83227] "back"              "blush"             "sam"              
## [83230] "said"              "pippin"            "soon"             
## [83233] "broke"             "anyone"            "thought"          
## [83236] "guilty"            "conscience"        "hope"             
## [83239] "nothing"           "worse"             "wicked"           
## [83242] "plot"              "steal"             "one"              
## [83245] "blankets"          "never"             "thought"          
## [83248] "thing"             "answered"          "sam"              
## [83251] "mood"              "jest"              "want"             
## [83254] "know"              "felt"              "hadnt"            
## [83257] "got"               "nothing"           "didnt"            
## [83260] "like"              "seemed"            "looking"          
## [83263] "inside"            "asking"            "gave"             
## [83266] "chance"            "flying"            "back"             
## [83269] "home"              "shire"             "nice"             
## [83272] "little"            "hole"              "bit"              
## [83275] "garden"            "thats"             "funny"            
## [83278] "said"              "merry"             "almost"           
## [83281] "exactly"           "felt"              "well"             
## [83284] "dont"              "think"             "ill"              
## [83287] "say"               "ended"             "lamely"           
## [83290] "seemed"            "fared"             "alike"            
## [83293] "felt"              "offered"           "choice"           
## [83296] "shadow"            "full"              "fear"             
## [83299] "lay"               "ahead"             "something"        
## [83302] "greatly"           "desired"           "clear"            
## [83305] "mind"              "lay"               "get"              
## [83308] "turn"              "aside"             "road"             
## [83311] "leave"             "quest"             "war"              
## [83314] "sauron"            "others"            "seemed"           
## [83317] "said"              "gimli"             "choice"           
## [83320] "remain"            "secret"            "known"            
## [83323] "seemed"            "exceedingly"       "strange"          
## [83326] "said"              "boromir"           "maybe"            
## [83329] "test"              "thought"           "read"             
## [83332] "thoughts"          "good"              "purpose"          
## [83335] "almost"            "said"              "tempting"         
## [83338] "us"                "offering"          "pretended"        
## [83341] "power"             "give"              "need"             
## [83344] "said"              "refused"           "listen"           
## [83347] "men"               "minas"             "tirith"           
## [83350] "true"              "word"              "thought"          
## [83353] "lady"              "offered"           "boromir"          
## [83356] "tell"              "frodo"             "speak"            
## [83359] "though"            "boromir"           "pressed"          
## [83362] "questions"         "held"              "long"             
## [83365] "gaze"              "ring"              "bearer"           
## [83368] "said"              "yes"               "said"             
## [83371] "frodo"             "whatever"          "came"             
## [83374] "mind"              "will"              "keep"             
## [83377] "well"              "care"              "said"             
## [83380] "boromir"           "feel"              "sure"             
## [83383] "elvish"            "lady"              "purposes"         
## [83386] "speak"             "evil"              "lady"             
## [83389] "galadriel"         "said"              "aragorn"          
## [83392] "sternly"           "know"              "say"              
## [83395] "land"              "evil"              "unless"           
## [83398] "man"               "bring"             "hither"           
## [83401] "let"               "beware"            "tonight"          
## [83404] "shall"             "sleep"             "without"          
## [83407] "fear"              "first"             "time"             
## [83410] "since"             "left"              "rivendell"        
## [83413] "may"               "sleep"             "deep"             
## [83416] "forget"            "grief"             "weary"            
## [83419] "body"              "heart"             "cast"             
## [83422] "upon"              "couch"             "fell"             
## [83425] "long"              "sleep"             "others"           
## [83428] "soon"              "sound"             "dream"            
## [83431] "disturbed"         "slumber"           "woke"             
## [83434] "found"             "light"             "day"              
## [83437] "broad"             "upon"              "lawn"             
## [83440] "pavilion"          "fountain"          "rose"             
## [83443] "fell"              "glittering"        "sun"              
## [83446] "remained"          "days"              "lothlórien"       
## [83449] "far"               "tell"              "remember"         
## [83452] "dwelt"             "sun"               "shone"            
## [83455] "clear"             "save"              "gentle"           
## [83458] "rain"              "fell"              "times"            
## [83461] "passed"            "away"              "leaving"          
## [83464] "things"            "fresh"             "clean"            
## [83467] "air"               "cool"              "soft"             
## [83470] "early"             "spring"            "yet"              
## [83473] "felt"              "deep"              "thoughtful"       
## [83476] "quiet"             "winter"            "seemed"           
## [83479] "little"            "eat"               "drink"            
## [83482] "rest"              "walk"              "among"            
## [83485] "trees"             "enough"            "seen"             
## [83488] "lord"              "lady"              "little"           
## [83491] "speech"            "elven"             "folk"             
## [83494] "knew"              "use"               "westron"          
## [83497] "tongue"            "haldir"            "bidden"           
## [83500] "farewell"          "gone"              "back"             
## [83503] "fences"            "north"             "great"            
## [83506] "watch"             "now"               "kept"             
## [83509] "since"             "tidings"           "moria"            
## [83512] "company"           "brought"           "legolas"          
## [83515] "away"              "much"              "among"            
## [83518] "galadhrim"         "first"             "night"            
## [83521] "sleep"             "companions"        "though"           
## [83524] "returned"          "eat"               "talk"             
## [83527] "often"             "took"              "gimli"            
## [83530] "went"              "abroad"            "land"             
## [83533] "others"            "wondered"          "change"           
## [83536] "now"               "companions"        "sat"              
## [83539] "walked"            "together"          "spoke"            
## [83542] "gandalf"           "known"             "seen"             
## [83545] "came"              "clear"             "minds"            
## [83548] "healed"            "hurt"              "weariness"        
## [83551] "body"              "grief"             "loss"             
## [83554] "grew"              "keen"              "often"            
## [83557] "heard"             "nearby"            "elvish"           
## [83560] "voices"            "singing"           "knew"             
## [83563] "making"            "songs"             "lamentation"      
## [83566] "fall"              "caught"            "name"             
## [83569] "among"             "sweet"             "sad"              
## [83572] "words"             "understand"        "mithrandir"       
## [83575] "mithrandir"        "sang"              "elves"            
## [83578] "pilgrim"           "grey"              "loved"            
## [83581] "call"              "legolas"           "company"          
## [83584] "interpret"         "songs"             "saying"           
## [83587] "skill"             "grief"             "still"            
## [83590] "near"              "matter"            "tears"            
## [83593] "yet"               "song"              "frodo"            
## [83596] "first"             "put"               "something"        
## [83599] "sorrow"            "halting"           "words"            
## [83602] "seldom"            "moved"             "make"             
## [83605] "song"              "rhyme"             "even"             
## [83608] "rivendell"         "listened"          "sung"             
## [83611] "though"            "memory"            "stored"           
## [83614] "many"              "things"            "others"           
## [83617] "made"              "now"               "sat"              
## [83620] "beside"            "fountain"          "lórien"           
## [83623] "heard"             "voices"            "elves"            
## [83626] "thought"           "took"              "shape"            
## [83629] "song"              "seemed"            "fair"             
## [83632] "yet"               "tried"             "repeat"           
## [83635] "sam"               "snatches"          "remained"         
## [83638] "faded"             "handful"           "withered"         
## [83641] "leaves"            "evening"           "shire"            
## [83644] "grey"              "footsteps"         "hill"             
## [83647] "heard"             "dawn"              "went"             
## [83650] "away"              "journey"           "long"             
## [83653] "without"           "word"              "wilderland"       
## [83656] "western"           "shore"             "northern"         
## [83659] "waste"             "southern"          "hill"             
## [83662] "dragon"            "lair"              "hidden"           
## [83665] "door"              "darkling"          "woods"            
## [83668] "walked"            "will"              "dwarf"            
## [83671] "hobbit"            "elves"             "men"              
## [83674] "mortal"            "immortal"          "folk"             
## [83677] "bird"              "bough"             "beast"            
## [83680] "den"               "secret"            "tongues"          
## [83683] "spoke"             "deadly"            "sword"            
## [83686] "healing"           "hand"              "back"             
## [83689] "bent"              "beneath"           "load"             
## [83692] "trumpet"           "voice"             "burning"          
## [83695] "brand"             "weary"             "pilgrim"          
## [83698] "road"              "lord"              "wisdom"           
## [83701] "throned"           "sat"               "swift"            
## [83704] "anger"             "quick"             "laugh"            
## [83707] "old"               "man"               "battered"         
## [83710] "hat"               "leaned"            "upon"             
## [83713] "thorny"            "staff"             "stood"            
## [83716] "upon"              "bridge"            "alone"            
## [83719] "fire"              "shadow"            "defied"           
## [83722] "staff"             "broken"            "stone"            
## [83725] "khazad"            "dûm"               "wisdom"           
## [83728] "died"              "youll"             "beating"          
## [83731] "mr"                "bilbo"             "next"             
## [83734] "said"              "sam"               "afraid"           
## [83737] "said"              "frodo"             "best"             
## [83740] "can"               "yet"               "well"             
## [83743] "mr"                "frodo"             "another"          
## [83746] "go"                "hope"              "youll"            
## [83749] "say"               "word"              "fireworks"        
## [83752] "said"              "sam"               "something"        
## [83755] "like"              "finest"            "rockets"          
## [83758] "ever"              "seen"              "burst"            
## [83761] "stars"             "blue"              "green"            
## [83764] "thunder"           "golden"            "showers"          
## [83767] "came"              "falling"           "like"             
## [83770] "rain"              "flowers"           "though"           
## [83773] "doesnt"            "justice"           "long"             
## [83776] "road"              "ill"               "leave"            
## [83779] "sam"               "perhaps"           "bilbo"            
## [83782] "well"              "cant"              "talk"             
## [83785] "cant"              "bear"              "think"            
## [83788] "bringing"          "news"              "one"              
## [83791] "evening"           "frodo"             "sam"              
## [83794] "walking"           "together"          "cool"             
## [83797] "twilight"          "felt"              "restless"         
## [83800] "frodo"             "suddenly"          "shadow"           
## [83803] "parting"           "fallen"            "knew"             
## [83806] "somehow"           "time"              "near"             
## [83809] "must"              "leave"             "lothlórien"       
## [83812] "think"             "elves"             "now"              
## [83815] "sam"               "said"              "asked"            
## [83818] "question"          "seems"             "long"             
## [83821] "ago"               "seen"              "since"            
## [83824] "indeed"            "said"              "sam"              
## [83827] "reckon"            "theres"            "elves"            
## [83830] "elves"             "theyre"            "elvish"           
## [83833] "enough"            "theyre"            "now"              
## [83836] "folk"              "arent"             "wanderers"        
## [83839] "homeless"          "seem"              "bit"              
## [83842] "nearer"            "likes"             "us"               
## [83845] "seem"              "belong"            "even"             
## [83848] "hobbits"           "shire"             "whether"          
## [83851] "theyve"            "made"              "land"             
## [83854] "lands"             "made"              "hard"             
## [83857] "say"               "take"              "meaning"          
## [83860] "wonderfully"       "quiet"             "nothing"          
## [83863] "seems"             "going"             "nobody"           
## [83866] "seems"             "want"              "theres"           
## [83869] "magic"             "right"             "deep"             
## [83872] "cant"              "lay"               "hands"            
## [83875] "manner"            "speaking"          "can"              
## [83878] "see"               "feel"              "everywhere"       
## [83881] "said"              "frodo"             "well"             
## [83884] "said"              "sam"               "cant"             
## [83887] "see"               "nobody"            "working"          
## [83890] "fireworks"         "like"              "poor"             
## [83893] "gandalf"           "used"              "show"             
## [83896] "wonder"            "dont"              "see"              
## [83899] "nothing"           "lord"              "lady"             
## [83902] "days"              "fancy"             "now"              
## [83905] "wonderful"         "things"            "mind"             
## [83908] "id"                "dearly"            "love"             
## [83911] "see"               "elf"               "magic"            
## [83914] "mr"                "frodo"             "wouldnt"          
## [83917] "said"              "frodo"             "content"          
## [83920] "dont"              "miss"              "gandalfs"         
## [83923] "fireworks"         "bushy"             "eyebrows"         
## [83926] "quick"             "temper"            "voice"            
## [83929] "youre"             "right"             "said"             
## [83932] "sam"               "dont"              "think"            
## [83935] "im"                "finding"           "fault"            
## [83938] "ive"               "often"             "wanted"           
## [83941] "see"               "bit"               "magic"            
## [83944] "like"              "tells"             "old"              
## [83947] "tales"             "ive"               "never"            
## [83950] "heard"             "better"            "land"             
## [83953] "like"              "home"              "holiday"          
## [83956] "time"              "understand"        "dont"             
## [83959] "want"              "leave"             "im"               
## [83962] "beginning"         "feel"              "weve"             
## [83965] "got"               "go"                "wed"              
## [83968] "best"              "get"               "job"              
## [83971] "thats"             "never"             "started"          
## [83974] "takes"             "longest"           "finish"           
## [83977] "old"               "gaffer"            "used"             
## [83980] "say"               "dont"              "reckon"           
## [83983] "folk"              "can"               "much"             
## [83986] "help"              "us"                "magic"            
## [83989] "leave"             "land"              "shall"            
## [83992] "miss"              "gandalf"           "worse"            
## [83995] "im"                "thinking"          "afraid"           
## [83998] "thats"             "true"              "sam"              
## [84001] "said"              "frodo"             "yet"              
## [84004] "hope"              "much"              "leave"            
## [84007] "shall"             "see"               "lady"             
## [84010] "elves"             "even"              "spoke"            
## [84013] "saw"               "came"              "answer"           
## [84016] "words"             "lady"              "galadriel"        
## [84019] "approaching"       "tall"              "white"            
## [84022] "fair"              "walked"            "beneath"          
## [84025] "trees"             "spoke"             "word"             
## [84028] "beckoned"          "turning"           "aside"            
## [84031] "led"               "toward"            "southern"         
## [84034] "slopes"            "hill"              "caras"            
## [84037] "galadhon"          "passing"           "high"             
## [84040] "green"             "hedge"             "came"             
## [84043] "enclosed"          "garden"            "trees"            
## [84046] "grew"              "lay"               "open"             
## [84049] "sky"               "evening"           "star"             
## [84052] "risen"             "shining"           "white"            
## [84055] "fire"              "western"           "woods"            
## [84058] "long"              "flight"            "steps"            
## [84061] "lady"              "went"              "deep"             
## [84064] "green"             "hollow"            "ran"              
## [84067] "murmuring"         "silver"            "stream"           
## [84070] "issued"            "fountain"          "hill"             
## [84073] "bottom"            "upon"              "low"              
## [84076] "pedestal"          "carved"            "like"             
## [84079] "branching"         "tree"              "stood"            
## [84082] "basin"             "silver"            "wide"             
## [84085] "shallow"           "beside"            "stood"            
## [84088] "silver"            "ewer"              "water"            
## [84091] "stream"            "galadriel"         "filled"           
## [84094] "basin"             "brim"              "breathed"         
## [84097] "water"             "still"             "spoke"            
## [84100] "mirror"            "galadriel"         "said"             
## [84103] "brought"           "may"               "look"             
## [84106] "will"              "air"               "still"            
## [84109] "dell"              "dark"              "elf"              
## [84112] "lady"              "beside"            "tall"             
## [84115] "pale"              "shall"             "look"             
## [84118] "shall"             "see"               "asked"            
## [84121] "frodo"             "filled"            "awe"              
## [84124] "many"              "things"            "can"              
## [84127] "command"           "mirror"            "reveal"           
## [84130] "answered"          "can"               "show"             
## [84133] "desire"            "see"               "mirror"           
## [84136] "will"              "also"              "show"             
## [84139] "things"            "unbidden"          "often"            
## [84142] "stranger"          "profitable"        "things"           
## [84145] "wish"              "behold"            "will"             
## [84148] "see"               "leave"             "mirror"           
## [84151] "free"              "work"              "tell"             
## [84154] "shows"             "things"            "things"           
## [84157] "things"            "yet"               "may"              
## [84160] "sees"              "even"              "wisest"           
## [84163] "always"            "tell"              "wish"             
## [84166] "look"              "frodo"             "answer"           
## [84169] "said"              "turning"           "sam"              
## [84172] "folk"              "call"              "magic"            
## [84175] "believe"           "though"            "understand"       
## [84178] "clearly"           "mean"              "seem"             
## [84181] "also"              "use"               "word"             
## [84184] "deceits"           "enemy"             "will"             
## [84187] "magic"             "galadriel"         "say"              
## [84190] "wished"            "see"               "elf"              
## [84193] "magic"             "said"              "sam"              
## [84196] "trembling"         "little"            "fear"             
## [84199] "curiosity"         "ill"               "peep"             
## [84202] "lady"              "youre"             "willing"          
## [84205] "id"                "mind"              "glimpse"          
## [84208] "whats"             "going"             "home"             
## [84211] "said"              "aside"             "frodo"            
## [84214] "seems"             "terrible"          "long"             
## [84217] "time"              "ive"               "away"             
## [84220] "like"              "ill"               "see"              
## [84223] "stars"             "something"         "wont"             
## [84226] "understand"        "like"              "said"             
## [84229] "lady"              "gentle"            "laugh"            
## [84232] "come"              "shall"             "look"             
## [84235] "see"               "may"               "touch"            
## [84238] "water"             "sam"               "climbed"          
## [84241] "foot"              "pedestal"          "leaned"           
## [84244] "basin"             "water"             "looked"           
## [84247] "hard"              "dark"              "stars"            
## [84250] "reflected"         "theres"            "stars"            
## [84253] "thought"           "said"              "gave"             
## [84256] "low"               "gasp"              "stars"            
## [84259] "went"              "dark"              "veil"             
## [84262] "withdrawn"         "mirror"            "grew"             
## [84265] "grey"              "clear"             "sun"              
## [84268] "shining"           "branches"          "trees"            
## [84271] "waving"            "tossing"           "wind"             
## [84274] "sam"               "make"              "mind"             
## [84277] "saw"               "light"             "faded"            
## [84280] "now"               "thought"           "saw"              
## [84283] "frodo"             "pale"              "face"             
## [84286] "lying"             "fast"              "asleep"           
## [84289] "great"             "dark"              "cliff"            
## [84292] "seemed"            "see"               "going"            
## [84295] "along"             "dim"               "passage"          
## [84298] "climbing"          "endless"           "winding"          
## [84301] "stair"             "came"              "suddenly"         
## [84304] "looking"           "urgently"          "something"        
## [84307] "know"              "like"              "dream"            
## [84310] "vision"            "shifted"           "went"             
## [84313] "back"              "saw"               "trees"            
## [84316] "time"              "close"             "see"              
## [84319] "going"             "waving"            "wind"             
## [84322] "falling"           "crashing"          "ground"           
## [84325] "hi"                "cried"             "sam"              
## [84328] "outraged"          "voice"             "theres"           
## [84331] "ted"               "sandyman"          "cutting"          
## [84334] "trees"             "shouldnt"          "didnt"            
## [84337] "felled"            "avenue"            "beyond"           
## [84340] "mill"              "shades"            "road"             
## [84343] "bywater"           "wish"              "get"              
## [84346] "ted"               "id"                "fell"             
## [84349] "now"               "sam"               "noticed"          
## [84352] "old"               "mill"              "vanished"         
## [84355] "large"             "red"               "brick"            
## [84358] "building"          "put"               "stood"            
## [84361] "lots"              "folk"              "busily"           
## [84364] "work"              "tall"              "red"              
## [84367] "chimney"           "nearby"            "black"            
## [84370] "smoke"             "seemed"            "cloud"            
## [84373] "surface"           "mirror"            "theres"           
## [84376] "devilry"           "work"              "shire"            
## [84379] "said"              "elrond"            "knew"             
## [84382] "wanted"            "send"              "mr"               
## [84385] "merry"             "back"              "suddenly"         
## [84388] "sam"               "gave"              "cry"              
## [84391] "sprang"            "away"              "cant"             
## [84394] "stay"              "said"              "wildly"           
## [84397] "must"              "go"                "home"             
## [84400] "theyve"            "dug"               "bagshot"          
## [84403] "row"               "theres"            "poor"             
## [84406] "old"               "gaffer"            "going"            
## [84409] "hill"              "bits"              "things"           
## [84412] "barrow"            "must"              "go"               
## [84415] "home"              "go"                "home"             
## [84418] "alone"             "said"              "lady"             
## [84421] "wish"              "go"                "home"             
## [84424] "without"           "master"            "looked"           
## [84427] "mirror"            "yet"               "knew"             
## [84430] "evil"              "things"            "might"            
## [84433] "well"              "happening"         "shire"            
## [84436] "remember"          "mirror"            "shows"            
## [84439] "many"              "things"            "yet"              
## [84442] "come"              "pass"              "never"            
## [84445] "come"              "unless"            "behold"           
## [84448] "visions"           "turn"              "aside"            
## [84451] "path"              "prevent"           "mirror"           
## [84454] "dangerous"         "guide"             "deeds"            
## [84457] "sam"               "sat"               "ground"           
## [84460] "put"               "head"              "hands"            
## [84463] "wish"              "never"             "come"             
## [84466] "dont"              "want"              "see"              
## [84469] "magic"             "said"              "fell"             
## [84472] "silent"            "moment"            "spoke"            
## [84475] "thickly"           "struggling"        "tears"            
## [84478] "ill"               "go"                "home"             
## [84481] "long"              "road"              "mr"               
## [84484] "frodo"             "said"              "hope"             
## [84487] "get"               "back"              "day"              
## [84490] "ive"               "seen"              "turns"            
## [84493] "true"              "somebodys"         "going"            
## [84496] "catch"             "hot"               "now"              
## [84499] "wish"              "look"              "frodo"            
## [84502] "said"              "lady"              "galadriel"        
## [84505] "wish"              "see"               "elf"              
## [84508] "magic"             "content"           "advise"           
## [84511] "look"              "asked"             "frodo"            
## [84514] "said"              "counsel"           "one"              
## [84517] "way"               "counsellor"        "may"              
## [84520] "learn"             "something"         "whether"          
## [84523] "see"               "fair"              "evil"             
## [84526] "may"               "profitable"        "yet"              
## [84529] "may"               "seeing"            "good"             
## [84532] "perilous"          "yet"               "think"            
## [84535] "frodo"             "courage"           "wisdom"           
## [84538] "enough"            "venture"           "brought"          
## [84541] "will"              "will"              "look"             
## [84544] "said"              "frodo"             "climbed"          
## [84547] "pedestal"          "bent"              "dark"             
## [84550] "water"             "mirror"            "cleared"          
## [84553] "saw"               "twilit"            "land"             
## [84556] "mountains"         "loomed"            "dark"             
## [84559] "distance"          "pale"              "sky"              
## [84562] "long"              "grey"              "road"             
## [84565] "wound"             "back"              "sight"            
## [84568] "far"               "away"              "figure"           
## [84571] "came"              "slowly"            "road"             
## [84574] "faint"             "small"             "first"            
## [84577] "growing"           "larger"            "clearer"          
## [84580] "approached"        "suddenly"          "frodo"            
## [84583] "realized"          "reminded"          "gandalf"          
## [84586] "almost"            "called"            "aloud"            
## [84589] "wizards"           "name"              "saw"              
## [84592] "figure"            "clothed"           "grey"             
## [84595] "white"             "white"             "shone"            
## [84598] "faintly"           "dusk"              "hand"             
## [84601] "white"             "staff"             "head"             
## [84604] "bowed"             "see"               "face"             
## [84607] "presently"         "figure"            "turned"           
## [84610] "aside"             "round"             "bend"             
## [84613] "road"              "went"              "mirrors"          
## [84616] "view"              "doubt"             "came"             
## [84619] "frodos"            "mind"              "vision"           
## [84622] "gandalf"           "one"               "many"             
## [84625] "lonely"            "journeys"          "long"             
## [84628] "ago"               "saruman"           "vision"           
## [84631] "now"               "changed"           "brief"            
## [84634] "small"             "vivid"             "caught"           
## [84637] "glimpse"           "bilbo"             "walking"          
## [84640] "restlessly"        "room"              "table"            
## [84643] "littered"          "disordered"        "papers"           
## [84646] "rain"              "beating"           "windows"          
## [84649] "pause"             "many"              "swift"            
## [84652] "scenes"            "followed"          "frodo"            
## [84655] "way"               "knew"              "parts"            
## [84658] "great"             "history"           "become"           
## [84661] "involved"          "mist"              "cleared"          
## [84664] "saw"               "sight"             "never"            
## [84667] "seen"              "knew"              "sea"              
## [84670] "darkness"          "fell"              "sea"              
## [84673] "rose"              "raged"             "great"            
## [84676] "storm"             "saw"               "sun"              
## [84679] "sinking"           "blood"             "red"              
## [84682] "wrack"             "clouds"            "black"            
## [84685] "outline"           "tall"              "ship"             
## [84688] "torn"              "sails"             "riding"           
## [84691] "west"              "wide"              "river"            
## [84694] "flowing"           "populous"          "city"             
## [84697] "white"             "fortress"          "seven"            
## [84700] "towers"            "ship"              "black"            
## [84703] "sails"             "now"               "morning"          
## [84706] "water"             "rippled"           "light"            
## [84709] "banner"            "bearing"           "emblem"           
## [84712] "white"             "tree"              "shone"            
## [84715] "sun"               "smoke"             "fire"             
## [84718] "battle"            "arose"             "sun"              
## [84721] "went"              "burning"           "red"              
## [84724] "faded"             "grey"              "mist"             
## [84727] "mist"              "small"             "ship"             
## [84730] "passed"            "away"              "twinkling"        
## [84733] "lights"            "vanished"          "frodo"            
## [84736] "sighed"            "prepared"          "draw"             
## [84739] "away"              "suddenly"          "mirror"           
## [84742] "went"              "altogether"        "dark"             
## [84745] "dark"              "hole"              "opened"           
## [84748] "world"             "sight"             "frodo"            
## [84751] "looked"            "emptiness"         "black"            
## [84754] "abyss"             "appeared"          "single"           
## [84757] "eye"               "slowly"            "grew"             
## [84760] "filled"            "nearly"            "mirror"           
## [84763] "terrible"          "frodo"             "stood"            
## [84766] "rooted"            "unable"            "cry"              
## [84769] "withdraw"          "gaze"              "eye"              
## [84772] "rimmed"            "fire"              "glazed"           
## [84775] "yellow"            "cats"              "watchful"         
## [84778] "intent"            "black"             "slit"             
## [84781] "pupil"             "opened"            "pit"              
## [84784] "window"            "nothing"           "eye"              
## [84787] "began"             "rove"              "searching"        
## [84790] "way"               "frodo"             "knew"             
## [84793] "certainty"         "horror"            "among"            
## [84796] "many"              "things"            "sought"           
## [84799] "one"               "also"              "knew"             
## [84802] "see"               "yet"               "unless"           
## [84805] "willed"            "ring"              "hung"             
## [84808] "upon"              "chain"             "neck"             
## [84811] "grew"              "heavy"             "heavier"          
## [84814] "great"             "stone"             "head"             
## [84817] "dragged"           "downwards"         "mirror"           
## [84820] "seemed"            "growing"           "hot"              
## [84823] "curls"             "steam"             "rising"           
## [84826] "water"             "slipping"          "forward"          
## [84829] "touch"             "water"             "said"             
## [84832] "lady"              "galadriel"         "softly"           
## [84835] "vision"            "faded"             "frodo"            
## [84838] "found"             "looking"           "cool"             
## [84841] "stars"             "twinkling"         "silver"           
## [84844] "basin"             "stepped"           "back"             
## [84847] "shaking"           "looked"            "lady"             
## [84850] "know"              "last"              "saw"              
## [84853] "said"              "also"              "mind"             
## [84856] "afraid"            "think"             "singing"          
## [84859] "amid"              "trees"             "even"             
## [84862] "slender"           "arrows"            "elven"            
## [84865] "bows"              "land"              "lothlórien"       
## [84868] "maintained"        "defended"          "enemy"            
## [84871] "say"               "frodo"             "even"             
## [84874] "speak"             "perceive"          "dark"             
## [84877] "lord"              "know"              "mind"             
## [84880] "mind"              "concerns"          "elves"            
## [84883] "gropes"            "ever"              "see"              
## [84886] "thought"           "still"             "door"             
## [84889] "closed"            "lifted"            "white"            
## [84892] "arms"              "spread"            "hands"            
## [84895] "towards"           "east"              "gesture"          
## [84898] "rejection"         "denial"            "eärendil"         
## [84901] "evening"           "star"              "beloved"          
## [84904] "elves"             "shone"             "clear"            
## [84907] "bright"            "figure"            "elven"            
## [84910] "lady"              "cast"              "dim"              
## [84913] "shadow"            "ground"            "rays"             
## [84916] "glanced"           "upon"              "ring"             
## [84919] "finger"            "glittered"         "like"             
## [84922] "polished"          "gold"              "overlaid"         
## [84925] "silver"            "light"             "white"            
## [84928] "stone"             "twinkled"          "even"             
## [84931] "star"              "come"              "rest"             
## [84934] "upon"              "hand"              "frodo"            
## [84937] "gazed"             "ring"              "awe"              
## [84940] "suddenly"          "seemed"            "understood"       
## [84943] "yes"               "said"              "divining"         
## [84946] "thought"           "permitted"         "speak"            
## [84949] "elrond"            "hidden"            "ring"             
## [84952] "bearer"            "one"               "seen"             
## [84955] "eye"               "verily"            "land"             
## [84958] "lórien"            "upon"              "finger"           
## [84961] "galadriel"         "one"               "three"            
## [84964] "remains"           "nenya"             "ring"             
## [84967] "adamant"           "keeper"            "suspects"         
## [84970] "know"              "yet"               "see"              
## [84973] "now"               "wherefore"         "coming"           
## [84976] "us"                "footstep"          "doom"             
## [84979] "fail"              "laid"              "bare"             
## [84982] "enemy"             "yet"               "succeed"          
## [84985] "power"             "diminished"        "lothlórien"       
## [84988] "will"              "fade"              "tides"            
## [84991] "time"              "will"              "sweep"            
## [84994] "away"              "must"              "depart"           
## [84997] "west"              "dwindle"           "rustic"           
## [85000] "folk"              "dell"              "cave"             
## [85003] "slowly"            "forget"            "forgotten"        
## [85006] "frodo"             "bent"              "head"             
## [85009] "wish"              "said"              "last"             
## [85012] "shall"             "answered"          "love"             
## [85015] "elves"             "land"              "works"            
## [85018] "deeper"            "deeps"             "sea"              
## [85021] "regret"            "undying"           "ever"             
## [85024] "wholly"            "assuaged"          "yet"              
## [85027] "will"              "cast"              "away"             
## [85030] "rather"            "submit"            "sauron"           
## [85033] "know"              "now"               "fate"             
## [85036] "lothlórien"        "answerable"        "task"             
## [85039] "yet"               "wish"              "avail"            
## [85042] "one"               "ring"              "never"            
## [85045] "wrought"           "remained"          "ever"             
## [85048] "lost"              "wise"              "fearless"         
## [85051] "fair"              "lady"              "galadriel"        
## [85054] "said"              "frodo"             "will"             
## [85057] "give"              "one"               "ring"             
## [85060] "ask"               "great"             "matter"           
## [85063] "galadriel"         "laughed"           "sudden"           
## [85066] "clear"             "laugh"             "wise"             
## [85069] "lady"              "galadriel"         "may"              
## [85072] "said"              "yet"               "met"              
## [85075] "match"             "courtesy"          "gently"           
## [85078] "revenged"          "testing"           "heart"            
## [85081] "first"             "meeting"           "begin"            
## [85084] "see"               "keen"              "eye"              
## [85087] "deny"              "heart"             "greatly"          
## [85090] "desired"           "ask"               "offer"            
## [85093] "many"              "long"              "years"            
## [85096] "pondered"          "might"             "great"            
## [85099] "ring"              "come"              "hands"            
## [85102] "behold"            "brought"           "within"           
## [85105] "grasp"             "evil"              "devised"          
## [85108] "long"              "ago"               "works"            
## [85111] "many"              "ways"              "whether"          
## [85114] "sauron"            "stands"            "falls"            
## [85117] "noble"             "deed"              "set"              
## [85120] "credit"            "ring"              "taken"            
## [85123] "force"             "fear"              "guest"            
## [85126] "now"               "last"              "comes"            
## [85129] "will"              "give"              "ring"             
## [85132] "freely"            "place"             "dark"             
## [85135] "lord"              "will"              "set"              
## [85138] "queen"             "shall"             "dark"             
## [85141] "beautiful"         "terrible"          "morning"          
## [85144] "night"             "fair"              "sea"              
## [85147] "sun"               "snow"              "upon"             
## [85150] "mountain"          "dreadful"          "storm"            
## [85153] "lightning"         "stronger"          "foundations"      
## [85156] "earth"             "shall"             "love"             
## [85159] "despair"           "lifted"            "hand"             
## [85162] "ring"              "wore"              "issued"           
## [85165] "great"             "light"             "illuminated"      
## [85168] "alone"             "left"              "else"             
## [85171] "dark"              "stood"             "frodo"            
## [85174] "seeming"           "now"               "tall"             
## [85177] "beyond"            "measurement"       "beautiful"        
## [85180] "beyond"            "enduring"          "terrible"         
## [85183] "worshipful"        "let"               "hand"             
## [85186] "fall"              "light"             "faded"            
## [85189] "suddenly"          "laughed"           "lo"               
## [85192] "shrunken"          "slender"           "elf"              
## [85195] "woman"             "clad"              "simple"           
## [85198] "white"             "whose"             "gentle"           
## [85201] "voice"             "soft"              "sad"              
## [85204] "pass"              "test"              "said"             
## [85207] "will"              "diminish"          "go"               
## [85210] "west"              "remain"            "galadriel"        
## [85213] "stood"             "long"              "silence"          
## [85216] "length"            "lady"              "spoke"            
## [85219] "let"               "us"                "return"           
## [85222] "said"              "morning"           "must"             
## [85225] "depart"            "now"               "chosen"           
## [85228] "tides"             "fate"              "flowing"          
## [85231] "ask"               "one"               "thing"            
## [85234] "go"                "said"              "frodo"            
## [85237] "thing"             "often"             "meant"            
## [85240] "ask"               "gandalf"           "rivendell"        
## [85243] "permitted"         "wear"              "one"              
## [85246] "ring"              "see"               "others"           
## [85249] "know"              "thoughts"          "wear"             
## [85252] "tried"             "said"              "thrice"           
## [85255] "set"               "ring"              "upon"             
## [85258] "finger"            "since"             "knew"             
## [85261] "possessed"         "try"               "destroy"          
## [85264] "gandalf"           "tell"              "rings"            
## [85267] "give"              "power"             "according"        
## [85270] "measure"           "possessor"         "use"              
## [85273] "power"             "need"              "become"           
## [85276] "far"               "stronger"          "train"            
## [85279] "will"              "domination"        "others"           
## [85282] "yet"               "even"              "ring"             
## [85285] "bearer"            "one"               "borne"            
## [85288] "finger"            "seen"              "hidden"           
## [85291] "sight"             "grown"             "keener"           
## [85294] "perceived"         "thought"           "clearly"          
## [85297] "many"              "accounted"         "wise"             
## [85300] "saw"               "eye"               "holds"            
## [85303] "seven"             "nine"              "see"              
## [85306] "recognize"         "ring"              "upon"             
## [85309] "finger"            "see"               "ring"             
## [85312] "asked"             "turning"           "sam"              
## [85315] "lady"              "answered"          "tell"             
## [85318] "truth"             "wondered"          "talking"          
## [85321] "saw"               "star"              "finger"           
## [85324] "youll"             "pardon"            "speaking"         
## [85327] "think"             "master"            "right"            
## [85330] "wish"              "youd"              "take"             
## [85333] "ring"              "youd"              "put"              
## [85336] "things"            "rights"            "youd"             
## [85339] "stop"              "digging"           "gaffer"           
## [85342] "turning"           "adrift"            "youd"             
## [85345] "make"              "folk"              "pay"              
## [85348] "dirty"             "work"              "said"             
## [85351] "begin"             "stop"              "alas"             
## [85354] "will"              "speak"             "let"              
## [85357] "us"                "go"                "chapter"          
## [85360] "farewell"          "lórien"            "night"            
## [85363] "company"           "summoned"          "chamber"          
## [85366] "celeborn"          "lord"              "lady"             
## [85369] "greeted"           "fair"              "words"            
## [85372] "length"            "celeborn"          "spoke"            
## [85375] "departure"         "now"               "time"             
## [85378] "said"              "wish"              "continue"         
## [85381] "quest"             "must"              "harden"           
## [85384] "hearts"            "leave"             "land"             
## [85387] "longer"            "wish"              "go"               
## [85390] "forward"           "may"               "remain"           
## [85393] "whether"           "stay"              "go"               
## [85396] "none"              "can"               "sure"             
## [85399] "peace"             "come"              "now"              
## [85402] "edge"              "doom"              "wish"             
## [85405] "may"               "await"             "oncoming"         
## [85408] "hour"              "till"              "either"           
## [85411] "ways"              "world"             "lie"              
## [85414] "open"              "summon"            "last"             
## [85417] "need"              "lórien"            "may"              
## [85420] "return"            "lands"             "else"             
## [85423] "go"                "long"              "home"             
## [85426] "fall"              "battle"            "silence"          
## [85429] "resolved"          "go"                "forward"          
## [85432] "said"              "galadriel"         "looking"          
## [85435] "eyes"              "said"              "boromir"          
## [85438] "way"               "home"              "lies"             
## [85441] "onward"            "back"              "true"             
## [85444] "said"              "celeborn"          "company"          
## [85447] "going"             "minas"             "tirith"           
## [85450] "decided"           "course"            "said"             
## [85453] "aragorn"           "beyond"            "lothlórien"       
## [85456] "know"              "gandalf"           "intended"         
## [85459] "indeed"            "think"             "even"             
## [85462] "clear"             "purpose"           "maybe"            
## [85465] "said"              "celeborn"          "yet"              
## [85468] "leave"             "land"              "can"              
## [85471] "longer"            "forget"            "great"            
## [85474] "river"             "know"              "well"             
## [85477] "crossed"           "travellers"        "baggage"          
## [85480] "lórien"            "gondor"            "save"             
## [85483] "boat"              "bridges"           "osgiliath"        
## [85486] "broken"            "landings"          "held"             
## [85489] "now"               "enemy"             "side"             
## [85492] "will"              "journey"           "way"              
## [85495] "minas"             "tirith"            "lies"             
## [85498] "upon"              "side"              "upon"             
## [85501] "west"              "straight"          "road"             
## [85504] "quest"             "lies"              "east"             
## [85507] "river"             "upon"              "darker"           
## [85510] "shore"             "shore"             "will"             
## [85513] "now"               "take"              "advice"           
## [85516] "heeded"            "will"              "western"          
## [85519] "shore"             "way"               "minas"            
## [85522] "tirith"            "answered"          "boromir"          
## [85525] "leader"            "company"           "others"           
## [85528] "said"              "nothing"           "aragorn"          
## [85531] "looked"            "doubtful"          "troubled"         
## [85534] "see"               "yet"               "know"             
## [85537] "said"              "celeborn"          "part"             
## [85540] "choose"            "will"              "help"             
## [85543] "may"               "among"             "can"              
## [85546] "handle"            "boats"             "legolas"          
## [85549] "whose"             "folk"              "know"             
## [85552] "swift"             "forest"            "river"            
## [85555] "boromir"           "gondor"            "aragorn"          
## [85558] "traveller"         "one"               "hobbit"           
## [85561] "cried"             "merry"             "us"               
## [85564] "look"              "boats"             "wild"             
## [85567] "horses"            "people"            "live"             
## [85570] "banks"             "brandywine"        "well"             
## [85573] "said"              "celeborn"          "will"             
## [85576] "furnish"           "company"           "boats"            
## [85579] "must"              "small"             "light"            
## [85582] "go"                "far"               "water"            
## [85585] "places"            "will"              "forced"           
## [85588] "carry"             "will"              "come"             
## [85591] "rapids"            "sarn"              "gebir"            
## [85594] "maybe"             "last"              "great"            
## [85597] "falls"             "rauros"            "river"            
## [85600] "thunders"          "nen"               "hithoel"          
## [85603] "perils"            "boats"             "may"              
## [85606] "make"              "journey"           "less"             
## [85609] "toilsome"          "yet"               "will"             
## [85612] "give"              "counsel"           "end"              
## [85615] "must"              "leave"             "river"            
## [85618] "turn"              "west"              "east"             
## [85621] "aragorn"           "thanked"           "celeborn"         
## [85624] "many"              "times"             "gift"             
## [85627] "boats"             "comforted"         "much"             
## [85630] "least"             "now"               "need"             
## [85633] "decide"            "course"            "days"             
## [85636] "others"            "looked"            "hopeful"          
## [85639] "whatever"          "perils"            "lay"              
## [85642] "ahead"             "seemed"            "better"           
## [85645] "float"             "broad"             "tide"             
## [85648] "anduin"            "meet"              "plod"             
## [85651] "forward"           "bent"              "backs"            
## [85654] "sam"               "doubtful"          "rate"             
## [85657] "still"             "thought"           "boats"            
## [85660] "bad"               "wild"              "horses"           
## [85663] "worse"             "dangers"           "survived"         
## [85666] "made"              "think"             "better"           
## [85669] "shall"             "prepared"          "await"            
## [85672] "haven"             "noon"              "tomorrow"         
## [85675] "said"              "celeborn"          "will"             
## [85678] "send"              "people"            "morning"          
## [85681] "help"              "make"              "ready"            
## [85684] "journey"           "now"               "will"             
## [85687] "wish"              "fair"              "night"            
## [85690] "untroubled"        "sleep"             "good"             
## [85693] "night"             "friends"           "said"             
## [85696] "galadriel"         "sleep"             "peace"            
## [85699] "trouble"           "hearts"            "overmuch"         
## [85702] "thought"           "road"              "tonight"          
## [85705] "maybe"             "paths"             "shall"            
## [85708] "tread"             "already"           "laid"             
## [85711] "feet"              "though"            "see"              
## [85714] "good"              "night"             "company"          
## [85717] "now"               "took"              "leave"            
## [85720] "returned"          "pavilion"          "legolas"          
## [85723] "went"              "last"              "night"            
## [85726] "lothlórien"        "spite"             "words"            
## [85729] "galadriel"         "wished"            "take"             
## [85732] "counsel"           "together"          "long"             
## [85735] "time"              "debated"           "best"             
## [85738] "attempt"           "fulfilling"        "purpose"          
## [85741] "ring"              "came"              "decision"         
## [85744] "plain"             "desired"           "go"               
## [85747] "first"             "minas"             "tirith"           
## [85750] "escape"            "least"             "terror"           
## [85753] "enemy"             "willing"           "follow"           
## [85756] "leader"            "river"             "shadow"           
## [85759] "mordor"            "frodo"             "spoke"            
## [85762] "word"              "aragorn"           "still"            
## [85765] "divided"           "mind"              "plan"             
## [85768] "gandalf"           "remained"          "go"               
## [85771] "boromir"           "sword"             "help"             
## [85774] "deliver"           "gondor"            "believed"         
## [85777] "message"           "dreams"            "summons"          
## [85780] "hour"              "come"              "last"             
## [85783] "heir"              "elendil"           "come"             
## [85786] "forth"             "strive"            "sauron"           
## [85789] "mastery"           "moria"             "burden"           
## [85792] "gandalf"           "laid"              "knew"             
## [85795] "now"               "forsake"           "ring"             
## [85798] "frodo"             "refused"           "end"              
## [85801] "go"                "boromir"           "yet"              
## [85804] "help"              "company"           "give"             
## [85807] "frodo"             "save"              "walk"             
## [85810] "blindly"           "darkness"          "shall"            
## [85813] "go"                "minas"             "tirith"           
## [85816] "alone"             "need"              "duty"             
## [85819] "said"              "boromir"           "silent"           
## [85822] "sitting"           "eyes"              "fixed"            
## [85825] "frodo"             "trying"            "read"             
## [85828] "halflings"         "thoughts"          "length"           
## [85831] "spoke"             "softly"            "debating"         
## [85834] "wish"              "destroy"           "ring"             
## [85837] "said"              "little"            "use"              
## [85840] "war"               "weapons"           "men"              
## [85843] "minas"             "tirith"            "help"             
## [85846] "wish"              "destroy"           "armed"            
## [85849] "might"             "dark"              "lord"             
## [85852] "folly"             "go"                "without"          
## [85855] "force"             "domain"            "folly"            
## [85858] "throw"             "away"              "paused"           
## [85861] "suddenly"          "become"            "aware"            
## [85864] "speaking"          "thoughts"          "aloud"            
## [85867] "folly"             "throw"             "lives"            
## [85870] "away"              "mean"              "ended"            
## [85873] "choice"            "defending"         "strong"           
## [85876] "place"             "walking"           "openly"           
## [85879] "arms"              "death"             "least"            
## [85882] "see"               "frodo"             "caught"           
## [85885] "something"         "new"               "strange"          
## [85888] "boromirs"          "glance"            "looked"           
## [85891] "hard"              "plainly"           "boromirs"         
## [85894] "thought"           "different"         "final"            
## [85897] "words"             "folly"             "throw"            
## [85900] "away"              "ring"              "power"            
## [85903] "said"              "something"         "like"             
## [85906] "council"           "accepted"          "correction"       
## [85909] "elrond"            "frodo"             "looked"           
## [85912] "aragorn"           "seemed"            "deep"             
## [85915] "thought"           "made"              "sign"             
## [85918] "heeded"            "boromirs"          "words"            
## [85921] "debate"            "ended"             "merry"            
## [85924] "pippin"            "already"           "asleep"           
## [85927] "sam"               "nodding"           "night"            
## [85930] "growing"           "old"               "morning"          
## [85933] "beginning"         "pack"              "slender"          
## [85936] "goods"             "elves"             "speak"            
## [85939] "tongue"            "came"              "brought"          
## [85942] "many"              "gifts"             "food"             
## [85945] "clothing"          "journey"           "food"             
## [85948] "mostly"            "form"              "thin"             
## [85951] "cakes"             "made"              "meal"             
## [85954] "baked"             "light"             "brown"            
## [85957] "outside"           "inside"            "colour"           
## [85960] "cream"             "gimli"             "took"             
## [85963] "one"               "cakes"             "looked"           
## [85966] "doubtful"          "eye"               "cram"             
## [85969] "said"              "breath"            "broke"            
## [85972] "crisp"             "corner"            "nibbled"          
## [85975] "expression"        "quickly"           "changed"          
## [85978] "ate"               "rest"              "cake"             
## [85981] "relish"            "cried"             "elves"            
## [85984] "laughing"          "eaten"             "enough"           
## [85987] "already"           "long"              "days"             
## [85990] "march"             "thought"           "kind"             
## [85993] "cram"              "dale"              "men"              
## [85996] "make"              "journeys"          "wild"             
## [85999] "said"              "dwarf"             "answered"         
## [86002] "call"              "lembas"            "waybread"         
## [86005] "strengthening"     "food"              "made"             
## [86008] "men"               "pleasant"          "cram"             
## [86011] "accounts"          "indeed"            "said"             
## [86014] "gimli"             "better"            "honey"            
## [86017] "cakes"             "beornings"         "great"            
## [86020] "praise"            "beornings"         "best"             
## [86023] "bakers"            "know"              "none"             
## [86026] "willing"           "deal"              "cakes"            
## [86029] "travellers"        "days"              "kindly"           
## [86032] "hosts"             "bid"               "spare"            
## [86035] "food"              "said"              "eat"              
## [86038] "little"            "time"              "need"             
## [86041] "things"            "given"             "serve"            
## [86044] "else"              "fails"             "cakes"            
## [86047] "will"              "keep"              "sweet"            
## [86050] "many"              "many"              "days"             
## [86053] "unbroken"          "left"              "leaf"             
## [86056] "wrappings"         "brought"           "one"              
## [86059] "will"              "keep"              "traveller"        
## [86062] "feet"              "day"               "long"             
## [86065] "labour"            "even"              "one"              
## [86068] "tall"              "men"               "minas"            
## [86071] "tirith"            "elves"             "next"             
## [86074] "unwrapped"         "gave"              "company"          
## [86077] "clothes"           "brought"           "provided"         
## [86080] "hood"              "cloak"             "made"             
## [86083] "according"         "size"              "light"            
## [86086] "warm"              "silken"            "stuff"            
## [86089] "galadhrim"         "wove"              "hard"             
## [86092] "say"               "colour"            "grey"             
## [86095] "hue"               "twilight"          "trees"            
## [86098] "seemed"            "yet"               "moved"            
## [86101] "set"               "another"           "light"            
## [86104] "green"             "shadowed"          "leaves"           
## [86107] "brown"             "fallow"            "fields"           
## [86110] "night"             "dusk"              "silver"           
## [86113] "water"             "stars"             "cloak"            
## [86116] "fastened"          "neck"              "brooch"           
## [86119] "like"              "green"             "leaf"             
## [86122] "veined"            "silver"            "magic"            
## [86125] "cloaks"            "asked"             "pippin"           
## [86128] "looking"           "wonder"            "know"             
## [86131] "mean"              "answered"          "leader"           
## [86134] "elves"             "fair"              "garments"         
## [86137] "web"               "good"              "made"             
## [86140] "land"              "elvish"            "robes"            
## [86143] "certainly"         "mean"              "leaf"             
## [86146] "branch"            "water"             "stone"            
## [86149] "hue"               "beauty"            "things"           
## [86152] "twilight"          "lórien"            "love"             
## [86155] "put"               "thought"           "love"             
## [86158] "make"              "yet"               "garments"         
## [86161] "armour"            "will"              "turn"             
## [86164] "shaft"             "blade"             "serve"            
## [86167] "well"              "light"             "wear"             
## [86170] "warm"              "enough"            "cool"             
## [86173] "enough"            "need"              "will"             
## [86176] "find"              "great"             "aid"              
## [86179] "keeping"           "sight"             "unfriendly"       
## [86182] "eyes"              "whether"           "walk"             
## [86185] "among"             "stones"            "trees"            
## [86188] "indeed"            "high"              "favour"           
## [86191] "lady"              "maidens"           "wove"             
## [86194] "stuff"             "never"             "clad"             
## [86197] "strangers"         "garb"              "people"           
## [86200] "morning"           "meal"              "company"          
## [86203] "said"              "farewell"          "lawn"             
## [86206] "fountain"          "hearts"            "heavy"            
## [86209] "fair"              "place"             "become"           
## [86212] "like"              "home"              "though"           
## [86215] "count"             "days"              "nights"           
## [86218] "passed"            "stood"             "moment"           
## [86221] "looking"           "white"             "water"            
## [86224] "sunlight"          "haldir"            "came"             
## [86227] "walking"           "towards"           "green"            
## [86230] "grass"             "glade"             "frodo"            
## [86233] "greeted"           "delight"           "returned"         
## [86236] "northern"          "fences"            "said"             
## [86239] "elf"               "sent"              "now"              
## [86242] "guide"             "dimrill"           "dale"             
## [86245] "full"              "vapour"            "clouds"           
## [86248] "smoke"             "mountains"         "troubled"         
## [86251] "noises"            "deeps"             "earth"            
## [86254] "thought"           "returning"         "northwards"       
## [86257] "homes"             "able"              "pass"             
## [86260] "way"               "come"              "path"             
## [86263] "now"               "goes"              "south"            
## [86266] "walked"            "caras"             "galadhon"         
## [86269] "green"             "ways"              "empty"            
## [86272] "trees"             "many"              "voices"           
## [86275] "murmuring"         "singing"           "went"             
## [86278] "silently"          "last"              "haldir"           
## [86281] "led"               "southward"         "slopes"           
## [86284] "hill"              "came"              "great"            
## [86287] "gate"              "hung"              "lamps"            
## [86290] "white"             "bridge"            "passed"           
## [86293] "left"              "city"              "elves"            
## [86296] "turned"            "away"              "paved"            
## [86299] "road"              "took"              "path"             
## [86302] "went"              "deep"              "thicket"          
## [86305] "mallorn"           "trees"             "passed"           
## [86308] "winding"           "rolling"           "woodlands"        
## [86311] "silver"            "shadow"            "leading"          
## [86314] "ever"              "southwards"        "eastwards"        
## [86317] "towards"           "shores"            "river"            
## [86320] "gone"              "ten"               "miles"            
## [86323] "noon"              "hand"              "came"             
## [86326] "high"              "green"             "wall"             
## [86329] "passing"           "opening"           "came"             
## [86332] "suddenly"          "trees"             "lay"              
## [86335] "long"              "lawn"              "shining"          
## [86338] "grass"             "studded"           "golden"           
## [86341] "elanor"            "glinted"           "sun"              
## [86344] "lawn"              "ran"               "narrow"           
## [86347] "tongue"            "bright"            "margins"          
## [86350] "right"             "west"              "silverlode"       
## [86353] "flowed"            "glittering"        "left"             
## [86356] "east"              "great"             "river"            
## [86359] "rolled"            "broad"             "waters"           
## [86362] "deep"              "dark"              "shores"           
## [86365] "woodlands"         "still"             "marched"          
## [86368] "southwards"        "far"               "eye"              
## [86371] "see"               "banks"             "bleak"            
## [86374] "bare"              "mallorn"           "lifted"           
## [86377] "gold"              "hung"              "boughs"           
## [86380] "beyond"            "land"              "lórien"           
## [86383] "bank"              "silverlode"        "distance"         
## [86386] "meeting"           "streams"           "hythe"            
## [86389] "white"             "stones"            "white"            
## [86392] "wood"              "moored"            "many"             
## [86395] "boats"             "barges"            "brightly"         
## [86398] "painted"           "shone"             "silver"           
## [86401] "gold"              "green"             "either"           
## [86404] "white"             "grey"              "three"            
## [86407] "small"             "grey"              "boats"            
## [86410] "made"              "ready"             "travellers"       
## [86413] "elves"             "stowed"            "goods"            
## [86416] "added"             "also"              "coils"            
## [86419] "rope"              "three"             "boat"             
## [86422] "slender"           "looked"            "strong"           
## [86425] "silken"            "touch"             "grey"             
## [86428] "hue"               "like"              "elven"            
## [86431] "cloaks"            "asked"             "sam"              
## [86434] "handling"          "one"               "lay"              
## [86437] "upon"              "greensward"        "ropes"            
## [86440] "indeed"            "answered"          "elf"              
## [86443] "boats"             "never"             "travel"           
## [86446] "far"               "without"           "rope"             
## [86449] "one"               "long"              "strong"           
## [86452] "light"             "may"               "help"             
## [86455] "many"              "needs"             "dont"             
## [86458] "need"              "tell"              "said"             
## [86461] "sam"               "came"              "without"          
## [86464] "ive"               "worried"           "ever"             
## [86467] "since"             "wondering"         "made"             
## [86470] "knowing"           "bit"               "rope"             
## [86473] "making"            "family"            "might"            
## [86476] "say"               "made"              "hithlain"         
## [86479] "said"              "elf"               "time"             
## [86482] "now"               "instruct"          "art"              
## [86485] "making"            "known"             "craft"            
## [86488] "delighted"         "taught"            "much"             
## [86491] "now"               "alas"              "unless"           
## [86494] "time"              "return"            "hither"           
## [86497] "must"              "content"           "gift"             
## [86500] "may"               "serve"             "well"             
## [86503] "come"              "said"              "haldir"           
## [86506] "now"               "ready"             "enter"            
## [86509] "boats"             "take"              "care"             
## [86512] "first"             "heed"              "words"            
## [86515] "said"              "elves"             "boats"            
## [86518] "light"             "built"             "crafty"           
## [86521] "unlike"            "boats"             "folk"             
## [86524] "will"              "sink"              "lade"             
## [86527] "will"              "wayward"           "mishandled"       
## [86530] "wise"              "accustomed"        "stepping"         
## [86533] "landing"           "place"             "set"              
## [86536] "downstream"        "company"           "arranged"         
## [86539] "way"               "aragorn"           "frodo"            
## [86542] "sam"               "one"               "boat"             
## [86545] "boromir"           "merry"             "pippin"           
## [86548] "another"           "third"             "legolas"          
## [86551] "gimli"             "now"               "become"           
## [86554] "fast"              "friends"           "last"             
## [86557] "boat"              "goods"             "packs"            
## [86560] "stowed"            "boats"             "moved"            
## [86563] "steered"           "short"             "handled"          
## [86566] "paddles"           "broad"             "leaf"             
## [86569] "shaped"            "blades"            "ready"            
## [86572] "aragorn"           "led"               "trial"            
## [86575] "silverlode"        "current"           "swift"            
## [86578] "went"              "forward"           "slowly"           
## [86581] "sam"               "sat"               "bows"             
## [86584] "clutching"         "sides"             "looking"          
## [86587] "back"              "wistfully"         "shore"            
## [86590] "sunlight"          "glittering"        "water"            
## [86593] "dazzled"           "eyes"              "passed"           
## [86596] "beyond"            "green"             "field"            
## [86599] "tongue"            "trees"             "drew"             
## [86602] "rivers"            "brink"             "golden"           
## [86605] "leaves"            "tossed"            "floated"          
## [86608] "rippling"          "stream"            "air"              
## [86611] "bright"            "still"             "silence"          
## [86614] "except"            "high"              "distant"          
## [86617] "song"              "larks"             "turned"           
## [86620] "sharp"             "bend"              "river"            
## [86623] "sailing"           "proudly"           "stream"           
## [86626] "toward"            "saw"               "swan"             
## [86629] "great"             "size"              "water"            
## [86632] "rippled"           "either"            "side"             
## [86635] "white"             "breast"            "beneath"          
## [86638] "curving"           "neck"              "beak"             
## [86641] "shone"             "like"              "burnished"        
## [86644] "gold"              "eyes"              "glinted"          
## [86647] "like"              "jet"               "set"              
## [86650] "yellow"            "stones"            "huge"             
## [86653] "white"             "wings"             "half"             
## [86656] "lifted"            "music"             "came"             
## [86659] "river"             "drew"              "nearer"           
## [86662] "suddenly"          "perceived"         "ship"             
## [86665] "wrought"           "carved"            "elven"            
## [86668] "skill"             "likeness"          "bird"             
## [86671] "two"               "elves"             "clad"             
## [86674] "white"             "steered"           "black"            
## [86677] "paddles"           "midst"             "vessel"           
## [86680] "sat"               "celeborn"          "behind"           
## [86683] "stood"             "galadriel"         "tall"             
## [86686] "white"             "circlet"           "golden"           
## [86689] "flowers"           "hair"              "hand"             
## [86692] "held"              "harp"              "sang"             
## [86695] "sad"               "sweet"             "sound"            
## [86698] "voice"             "cool"              "clear"            
## [86701] "air"               "sang"              "leaves"           
## [86704] "leaves"            "gold"              "leaves"           
## [86707] "gold"              "grew"              "wind"             
## [86710] "sang"              "wind"              "came"             
## [86713] "branches"          "blew"              "beyond"           
## [86716] "sun"               "beyond"            "moon"             
## [86719] "foam"              "sea"               "strand"           
## [86722] "ilmarin"           "grew"              "golden"           
## [86725] "tree"              "beneath"           "stars"            
## [86728] "ever"              "eve"               "eldamar"          
## [86731] "shone"             "eldamar"           "beside"           
## [86734] "walls"             "elven"             "tirion"           
## [86737] "long"              "golden"            "leaves"           
## [86740] "grown"             "upon"              "branching"        
## [86743] "years"             "beyond"            "sundering"        
## [86746] "seas"              "now"               "fall"             
## [86749] "elven"             "tears"             "lórien"           
## [86752] "winter"            "comes"             "bare"             
## [86755] "leafless"          "day"               "leaves"           
## [86758] "falling"           "stream"            "river"            
## [86761] "flows"             "away"              "lórien"           
## [86764] "long"              "dwelt"             "upon"             
## [86767] "hither"            "shore"             "fading"           
## [86770] "crown"             "twined"            "golden"           
## [86773] "elanor"            "ships"             "now"              
## [86776] "sing"              "ship"              "come"             
## [86779] "ship"              "bear"              "ever"             
## [86782] "back"              "across"            "wide"             
## [86785] "sea"               "aragorn"           "stayed"           
## [86788] "boat"              "swan"              "ship"             
## [86791] "drew"              "alongside"         "lady"             
## [86794] "ended"             "song"              "greeted"          
## [86797] "come"              "bid"               "last"             
## [86800] "farewell"          "said"              "speed"            
## [86803] "blessings"         "land"              "though"           
## [86806] "guests"            "said"              "celeborn"         
## [86809] "yet"               "eaten"             "us"               
## [86812] "bid"               "therefore"         "parting"          
## [86815] "feast"             "flowing"           "waters"           
## [86818] "will"              "bear"              "far"              
## [86821] "lórien"            "swan"              "passed"           
## [86824] "slowly"            "hythe"             "turned"           
## [86827] "boats"             "followed"          "last"             
## [86830] "end"               "egladil"           "upon"             
## [86833] "green"             "grass"             "parting"          
## [86836] "feast"             "held"              "frodo"            
## [86839] "ate"               "drank"             "little"           
## [86842] "heeding"           "beauty"            "lady"             
## [86845] "voice"             "seemed"            "longer"           
## [86848] "perilous"          "terrible"          "filled"           
## [86851] "hidden"            "power"             "already"          
## [86854] "seemed"            "men"               "later"            
## [86857] "days"              "elves"             "still"            
## [86860] "times"             "seen"              "present"          
## [86863] "yet"               "remote"            "living"           
## [86866] "vision"            "already"           "left"             
## [86869] "far"               "behind"            "flowing"          
## [86872] "streams"           "time"              "eaten"            
## [86875] "drunk"             "sitting"           "upon"             
## [86878] "grass"             "celeborn"          "spoke"            
## [86881] "journey"           "lifting"           "hand"             
## [86884] "pointed"           "south"             "woods"            
## [86887] "beyond"            "tongue"            "go"               
## [86890] "water"             "said"              "will"             
## [86893] "find"              "trees"             "will"             
## [86896] "fail"              "will"              "come"             
## [86899] "barren"            "country"           "river"            
## [86902] "flows"             "stony"             "vale"             
## [86905] "amid"              "high"              "moors"            
## [86908] "last"              "many"              "leagues"          
## [86911] "comes"             "tall"              "island"           
## [86914] "tindrock"          "call"              "tol"              
## [86917] "brandir"           "casts"             "arms"             
## [86920] "steep"             "shores"            "isle"             
## [86923] "falls"             "great"             "noise"            
## [86926] "smoke"             "cataracts"         "rauros"           
## [86929] "nindalf"           "wetwang"           "called"           
## [86932] "tongue"            "wide"              "region"           
## [86935] "sluggish"          "fen"               "stream"           
## [86938] "becomes"           "tortuous"          "much"             
## [86941] "divided"           "entwash"           "flows"            
## [86944] "many"              "mouths"            "forest"           
## [86947] "fangorn"           "west"              "stream"           
## [86950] "side"              "great"             "river"            
## [86953] "lies"              "rohan"             "side"             
## [86956] "bleak"             "hills"             "emyn"             
## [86959] "muil"              "wind"              "blows"            
## [86962] "east"              "look"              "dead"             
## [86965] "marshes"           "noman"             "lands"            
## [86968] "cirith"            "gorgor"            "black"            
## [86971] "gates"             "mordor"            "boromir"          
## [86974] "go"                "seeking"           "minas"            
## [86977] "tirith"            "will"              "well"             
## [86980] "leave"             "great"             "river"            
## [86983] "rauros"            "cross"             "entwash"          
## [86986] "finds"             "marshes"           "yet"              
## [86989] "go"                "far"               "stream"           
## [86992] "risk"              "becoming"          "entangled"        
## [86995] "forest"            "fangorn"           "strange"          
## [86998] "land"              "now"               "little"           
## [87001] "known"             "boromir"           "aragorn"          
## [87004] "doubtless"         "need"              "warning"          
## [87007] "indeed"            "heard"             "fangorn"          
## [87010] "minas"             "tirith"            "said"             
## [87013] "boromir"           "heard"             "seems"            
## [87016] "part"              "old"               "wives"            
## [87019] "tales"             "tell"              "children"         
## [87022] "lies"              "north"             "rohan"            
## [87025] "now"               "us"                "far"              
## [87028] "away"              "fancy"             "can"              
## [87031] "wander"            "freely"            "old"              
## [87034] "fangorn"           "lay"               "upon"             
## [87037] "borders"           "realm"             "now"              
## [87040] "many"              "lives"             "men"              
## [87043] "since"             "us"                "visited"          
## [87046] "prove"             "disprove"          "legends"          
## [87049] "come"              "distant"           "years"            
## [87052] "whiles"            "rohan"             "never"            
## [87055] "crossed"           "northwards"        "sent"             
## [87058] "messenger"         "passed"            "gap"              
## [87061] "skirts"            "white"             "mountains"        
## [87064] "crossed"           "isen"              "greyflood"        
## [87067] "northerland"       "long"              "wearisome"        
## [87070] "journey"           "four"              "hundred"          
## [87073] "leagues"           "reckoned"          "took"             
## [87076] "many"              "months"            "lost"             
## [87079] "horse"             "tharbad"           "fording"          
## [87082] "greyflood"         "journey"           "road"             
## [87085] "trodden"           "company"           "much"             
## [87088] "doubt"             "shall"             "find"             
## [87091] "way"               "rohan"             "fangorn"          
## [87094] "need"              "need"              "say"              
## [87097] "said"              "celeborn"          "despise"          
## [87100] "lore"              "come"              "distant"          
## [87103] "years"             "oft"               "may"              
## [87106] "chance"            "old"               "wives"            
## [87109] "keep"              "memory"            "word"             
## [87112] "things"            "needful"           "wise"             
## [87115] "know"              "now"               "galadriel"        
## [87118] "rose"              "grass"             "taking"           
## [87121] "cup"               "one"               "maidens"          
## [87124] "filled"            "white"             "mead"             
## [87127] "gave"              "celeborn"          "now"              
## [87130] "time"              "drink"             "cup"              
## [87133] "farewell"          "said"              "drink"            
## [87136] "lord"              "galadhrim"         "let"              
## [87139] "heart"             "sad"               "though"           
## [87142] "night"             "must"              "follow"           
## [87145] "noon"              "already"           "evening"          
## [87148] "draweth"           "nigh"              "brought"          
## [87151] "cup"               "company"           "bade"             
## [87154] "drink"             "farewell"          "drunk"            
## [87157] "commanded"         "sit"               "grass"            
## [87160] "chairs"            "set"               "celeborn"         
## [87163] "maidens"           "stood"             "silent"           
## [87166] "looked"            "upon"              "guests"           
## [87169] "last"              "spoke"             "drunk"            
## [87172] "cup"               "parting"           "said"             
## [87175] "shadows"           "fall"              "us"               
## [87178] "go"                "brought"           "ship"             
## [87181] "gifts"             "lord"              "lady"             
## [87184] "galadhrim"         "now"               "offer"            
## [87187] "memory"            "lothlórien"        "called"           
## [87190] "turn"              "gift"              "celeborn"         
## [87193] "galadriel"         "leader"            "company"          
## [87196] "said"              "aragorn"           "gave"             
## [87199] "sheath"            "made"              "fit"              
## [87202] "sword"             "overlaid"          "tracery"          
## [87205] "flowers"           "leaves"            "wrought"          
## [87208] "silver"            "gold"              "set"              
## [87211] "elven"             "runes"             "formed"           
## [87214] "many"              "gems"              "name"             
## [87217] "andúril"           "lineage"           "sword"            
## [87220] "blade"             "drawn"             "sheath"           
## [87223] "shall"             "stained"           "broken"           
## [87226] "even"              "defeat"            "said"             
## [87229] "aught"             "else"              "desire"           
## [87232] "parting"           "darkness"          "will"             
## [87235] "flow"              "us"                "may"              
## [87238] "shall"             "meet"              "unless"           
## [87241] "far"               "hence"             "upon"             
## [87244] "road"              "returning"         "aragorn"          
## [87247] "answered"          "lady"              "know"             
## [87250] "desire"            "long"              "held"             
## [87253] "keeping"           "treasure"          "seek"             
## [87256] "yet"               "give"              "even"             
## [87259] "darkness"          "shall"             "come"             
## [87262] "yet"               "maybe"             "will"             
## [87265] "lighten"           "heart"             "said"             
## [87268] "galadriel"         "left"              "care"             
## [87271] "given"             "pass"              "land"             
## [87274] "lifted"            "lap"               "great"            
## [87277] "stone"             "clear"             "green"            
## [87280] "set"               "silver"            "brooch"           
## [87283] "wrought"           "likeness"          "eagle"            
## [87286] "outspread"         "wings"             "held"             
## [87289] "gem"               "flashed"           "like"             
## [87292] "sun"               "shining"           "leaves"           
## [87295] "spring"            "stone"             "gave"             
## [87298] "celebrían"         "daughter"          "now"              
## [87301] "comes"             "token"             "hope"             
## [87304] "hour"              "take"              "name"             
## [87307] "foretold"          "elessar"           "elfstone"         
## [87310] "house"             "elendil"           "aragorn"          
## [87313] "took"              "stone"             "pinned"           
## [87316] "brooch"            "upon"              "breast"           
## [87319] "saw"               "wondered"          "marked"           
## [87322] "tall"              "kingly"            "stood"            
## [87325] "seemed"            "many"              "years"            
## [87328] "toil"              "fallen"            "shoulders"        
## [87331] "gifts"             "given"             "thank"            
## [87334] "said"              "lady"              "lórien"           
## [87337] "sprung"            "celebrían"         "arwen"            
## [87340] "evenstar"          "praise"            "say"              
## [87343] "lady"              "bowed"             "head"             
## [87346] "turned"            "boromir"           "gave"             
## [87349] "belt"              "gold"              "merry"            
## [87352] "pippin"            "gave"              "small"            
## [87355] "silver"            "belts"             "clasp"            
## [87358] "wrought"           "like"              "golden"           
## [87361] "flower"            "legolas"           "gave"             
## [87364] "bow"               "galadhrim"         "used"             
## [87367] "longer"            "stouter"           "bows"             
## [87370] "mirkwood"          "strung"            "string"           
## [87373] "elf"               "hair"              "went"             
## [87376] "quiver"            "arrows"            "little"           
## [87379] "gardener"          "lover"             "trees"            
## [87382] "said"              "sam"               "small"            
## [87385] "gift"              "put"               "hand"             
## [87388] "little"            "box"               "plain"            
## [87391] "grey"              "wood"              "unadorned"        
## [87394] "save"              "single"            "silver"           
## [87397] "rune"              "upon"              "lid"              
## [87400] "set"               "galadriel"         "said"             
## [87403] "also"              "may"               "stand"            
## [87406] "garden"            "tongue"            "box"              
## [87409] "earth"             "orchard"           "blessing"         
## [87412] "galadriel"         "still"             "bestow"           
## [87415] "upon"              "will"              "keep"             
## [87418] "road"              "defend"            "peril"            
## [87421] "keep"              "see"               "home"             
## [87424] "last"              "perhaps"           "may"              
## [87427] "reward"            "though"            "find"             
## [87430] "barren"            "laid"              "waste"            
## [87433] "will"              "gardens"           "middle"           
## [87436] "earth"             "will"              "bloom"            
## [87439] "like"              "garden"            "sprinkle"         
## [87442] "earth"             "may"               "remember"         
## [87445] "galadriel"         "catch"             "glimpse"          
## [87448] "far"               "lórien"            "seen"             
## [87451] "winter"            "spring"            "summer"           
## [87454] "gone"              "will"              "never"            
## [87457] "seen"              "earth"             "save"             
## [87460] "memory"            "sam"               "went"             
## [87463] "red"               "ears"              "muttered"         
## [87466] "something"         "inaudible"         "clutched"         
## [87469] "box"               "bowed"             "well"             
## [87472] "gift"              "dwarf"             "ask"              
## [87475] "elves"             "said"              "galadriel"        
## [87478] "turning"           "gimli"             "none"             
## [87481] "lady"              "answered"          "gimli"            
## [87484] "enough"            "seen"              "lady"             
## [87487] "galadhrim"         "heard"             "gentle"           
## [87490] "words"             "hear"              "ye"               
## [87493] "elves"             "cried"             "let"              
## [87496] "none"              "say"               "dwarves"          
## [87499] "grasping"          "ungracious"        "yet"              
## [87502] "surely"            "gimli"             "son"              
## [87505] "glóin"             "desire"            "something"        
## [87508] "give"              "name"              "bid"              
## [87511] "shall"             "guest"             "without"          
## [87514] "gift"              "nothing"           "lady"             
## [87517] "galadriel"         "said"              "gimli"            
## [87520] "bowing"            "low"               "stammering"       
## [87523] "nothing"           "unless"            "might"            
## [87526] "unless"            "permitted"         "ask"              
## [87529] "nay"               "name"              "single"           
## [87532] "strand"            "hair"              "surpasses"        
## [87535] "gold"              "earth"             "stars"            
## [87538] "surpass"           "gems"              "mine"             
## [87541] "ask"               "gift"              "commanded"        
## [87544] "name"              "desire"            "elves"            
## [87547] "stirred"           "murmured"          "astonishment"     
## [87550] "celeborn"          "gazed"             "dwarf"            
## [87553] "wonder"            "lady"              "smiled"           
## [87556] "said"              "skill"             "dwarves"          
## [87559] "hands"             "rather"            "tongues"          
## [87562] "said"              "yet"               "true"             
## [87565] "gimli"             "none"              "ever"             
## [87568] "made"              "request"           "bold"             
## [87571] "yet"               "courteous"         "shall"            
## [87574] "refuse"            "since"             "commanded"        
## [87577] "speak"             "tell"              "gift"             
## [87580] "treasure"          "lady"              "answered"         
## [87583] "memory"            "words"             "first"            
## [87586] "meeting"           "ever"              "return"           
## [87589] "smithies"          "home"              "shall"            
## [87592] "set"               "imperishable"      "crystal"          
## [87595] "heirloom"          "house"             "pledge"           
## [87598] "good"              "will"              "mountain"         
## [87601] "wood"              "end"               "days"             
## [87604] "lady"              "unbraided"         "one"              
## [87607] "long"              "tresses"           "cut"              
## [87610] "three"             "golden"            "hairs"            
## [87613] "laid"              "gimlis"            "hand"             
## [87616] "words"             "shall"             "go"               
## [87619] "gift"              "said"              "foretell"         
## [87622] "foretelling"       "now"               "vain"             
## [87625] "one"               "hand"              "lies"             
## [87628] "darkness"          "hope"              "hope"             
## [87631] "fail"              "say"               "gimli"            
## [87634] "son"               "glóin"             "hands"            
## [87637] "shall"             "flow"              "gold"             
## [87640] "yet"               "gold"              "shall"            
## [87643] "dominion"          "ring"              "bearer"           
## [87646] "said"              "turning"           "frodo"            
## [87649] "come"              "last"              "last"             
## [87652] "thoughts"          "prepared"          "held"             
## [87655] "small"             "crystal"           "phial"            
## [87658] "glittered"         "moved"             "rays"             
## [87661] "white"             "light"             "sprang"           
## [87664] "hand"              "phial"             "said"             
## [87667] "caught"            "light"             "eärendils"        
## [87670] "star"              "set"               "amid"             
## [87673] "waters"            "fountain"          "will"             
## [87676] "shine"             "still"             "brighter"         
## [87679] "night"             "may"               "light"            
## [87682] "dark"              "places"            "lights"           
## [87685] "go"                "remember"          "galadriel"        
## [87688] "mirror"            "frodo"             "took"             
## [87691] "phial"             "moment"            "shone"            
## [87694] "saw"               "standing"          "like"             
## [87697] "queen"             "great"             "beautiful"        
## [87700] "longer"            "terrible"          "bowed"            
## [87703] "found"             "words"             "say"              
## [87706] "now"               "lady"              "arose"            
## [87709] "celeborn"          "led"               "back"             
## [87712] "hythe"             "yellow"            "noon"             
## [87715] "lay"               "green"             "land"             
## [87718] "tongue"            "water"             "glittered"        
## [87721] "silver"            "last"              "made"             
## [87724] "ready"             "company"           "took"             
## [87727] "places"            "boats"             "crying"           
## [87730] "farewell"          "elves"             "lórien"           
## [87733] "long"              "grey"              "poles"            
## [87736] "thrust"            "flowing"           "stream"           
## [87739] "rippling"          "waters"            "bore"             
## [87742] "slowly"            "away"              "travellers"       
## [87745] "sat"               "still"             "without"          
## [87748] "moving"            "speaking"          "green"            
## [87751] "bank"              "near"              "point"            
## [87754] "tongue"            "lady"              "galadriel"        
## [87757] "stood"             "alone"             "silent"           
## [87760] "passed"            "turned"            "eyes"             
## [87763] "watched"           "slowly"            "floating"         
## [87766] "away"              "seemed"            "lórien"           
## [87769] "slipping"          "backward"          "like"             
## [87772] "bright"            "ship"              "masted"           
## [87775] "enchanted"         "trees"             "sailing"          
## [87778] "forgotten"         "shores"            "sat"              
## [87781] "helpless"          "upon"              "margin"           
## [87784] "grey"              "leafless"          "world"            
## [87787] "even"              "gazed"             "silverlode"       
## [87790] "passed"            "currents"          "great"            
## [87793] "river"             "boats"             "turned"           
## [87796] "began"             "speed"             "southwards"       
## [87799] "soon"              "white"             "form"             
## [87802] "lady"              "small"             "distant"          
## [87805] "shone"             "like"              "window"           
## [87808] "glass"             "upon"              "far"              
## [87811] "hill"              "westering"         "sun"              
## [87814] "remote"            "lake"              "seen"             
## [87817] "mountain"          "crystal"           "fallen"           
## [87820] "lap"               "land"              "seemed"           
## [87823] "frodo"             "lifted"            "arms"             
## [87826] "final"             "farewell"          "far"              
## [87829] "piercing"          "clear"             "following"        
## [87832] "wind"              "came"              "sound"            
## [87835] "voice"             "singing"           "now"              
## [87838] "sang"              "ancient"           "tongue"           
## [87841] "elves"             "beyond"            "sea"              
## [87844] "understand"        "words"             "fair"             
## [87847] "music"             "comfort"           "yet"              
## [87850] "way"               "elvish"            "words"            
## [87853] "remained"          "graven"            "memory"           
## [87856] "long"              "afterwards"        "interpreted"      
## [87859] "well"              "language"          "elven"            
## [87862] "song"              "spoke"             "things"           
## [87865] "little"            "known"             "middle"           
## [87868] "earth"             "ai"                "laurië"           
## [87871] "lantar"            "lassi"             "súrinen"          
## [87874] "yéni"              "únótimë"           "ve"               
## [87877] "rámar"             "aldaron"           "yéni"             
## [87880] "ve"                "lintë"             "yuldar"           
## [87883] "avánier"           "mi"                "oromardi"         
## [87886] "lisse"             "miruvóreva"        "andúnë"           
## [87889] "pella"             "vardo"             "tellumar"         
## [87892] "nu"                "luini"             "yassen"           
## [87895] "tintilar"          "eleni"             "ómaryo"           
## [87898] "airetári"          "lírinen"           "sí"               
## [87901] "man"               "yulma"             "nin"              
## [87904] "enquantuva"        "sí"                "tintallë"         
## [87907] "varda"             "oiolossëo"         "ve"               
## [87910] "fanyar"            "máryat"            "elentári"         
## [87913] "ortanë"            "ar"                "ilyë"             
## [87916] "tier"              "undulávë"          "lumbulë"          
## [87919] "ar"                "sindanóriello"     "caita"            
## [87922] "mornië"            "falmalinnar"       "imbë"             
## [87925] "met"               "ar"                "hísië"            
## [87928] "untúpa"            "calaciryo"         "míri"             
## [87931] "oialë"             "si"                "vanwa"            
## [87934] "ná"                "rómello"           "vanwa"            
## [87937] "valimar"           "namárië"           "nai"              
## [87940] "hiruvalyë"         "valimar"           "nai"              
## [87943] "elyë"              "hiruva"            "namárië"          
## [87946] "ah"                "like"              "gold"             
## [87949] "fall"              "leaves"            "wind"             
## [87952] "long"              "years"             "numberless"       
## [87955] "wings"             "trees"             "long"             
## [87958] "years"             "passed"            "like"             
## [87961] "swift"             "draughts"          "sweet"            
## [87964] "mead"              "lofty"             "halls"            
## [87967] "beyond"            "west"              "beneath"          
## [87970] "blue"              "vaults"            "varda"            
## [87973] "wherein"           "stars"             "tremble"          
## [87976] "song"              "voice"             "holy"             
## [87979] "queenly"           "now"               "shall"            
## [87982] "refill"            "cup"               "now"              
## [87985] "kindler"           "varda"             "queen"            
## [87988] "stars"             "mount"             "everwhite"        
## [87991] "uplifted"          "hands"             "like"             
## [87994] "clouds"            "paths"             "drowned"          
## [87997] "deep"              "shadow"            "grey"             
## [88000] "country"           "darkness"          "lies"             
## [88003] "foaming"           "waves"             "us"               
## [88006] "mist"              "covers"            "jewels"           
## [88009] "calacirya"         "ever"              "now"              
## [88012] "lost"              "lost"              "east"             
## [88015] "valimar"           "farewell"          "maybe"            
## [88018] "thou"              "shalt"             "find"             
## [88021] "valimar"           "maybe"             "even"             
## [88024] "thou"              "shalt"             "find"             
## [88027] "farewell"          "varda"             "name"             
## [88030] "lady"              "elves"             "lands"            
## [88033] "exile"             "name"              "elbereth"         
## [88036] "suddenly"          "river"             "swept"            
## [88039] "round"             "bend"              "banks"            
## [88042] "rose"              "upon"              "either"           
## [88045] "side"              "light"             "lórien"           
## [88048] "hidden"            "fair"              "land"             
## [88051] "frodo"             "never"             "came"             
## [88054] "travellers"        "now"               "turned"           
## [88057] "faces"             "journey"           "sun"              
## [88060] "eyes"              "dazzled"           "filled"           
## [88063] "tears"             "gimli"             "wept"             
## [88066] "openly"            "looked"            "last"             
## [88069] "upon"              "fairest"           "said"             
## [88072] "legolas"           "companion"         "henceforward"     
## [88075] "will"              "call"              "nothing"          
## [88078] "fair"              "unless"            "gift"             
## [88081] "put"               "hand"              "breast"           
## [88084] "tell"              "legolas"           "come"             
## [88087] "quest"             "little"            "know"             
## [88090] "chief"             "peril"             "lay"              
## [88093] "truly"             "elrond"            "spoke"            
## [88096] "saying"            "foresee"           "might"            
## [88099] "meet"              "upon"              "road"             
## [88102] "torment"           "dark"              "danger"           
## [88105] "feared"            "hold"              "back"             
## [88108] "come"              "known"             "danger"           
## [88111] "light"             "joy"               "now"              
## [88114] "taken"             "worst"             "wound"            
## [88117] "parting"           "even"              "go"               
## [88120] "night"             "straight"          "dark"             
## [88123] "lord"              "alas"              "gimli"            
## [88126] "son"               "glóin"             "nay"              
## [88129] "said"              "legolas"           "alas"             
## [88132] "us"                "walk"              "world"            
## [88135] "days"              "way"               "find"             
## [88138] "lose"              "seems"             "whose"            
## [88141] "boat"              "running"           "stream"           
## [88144] "count"             "blessed"           "gimli"            
## [88147] "son"               "glóin"             "loss"             
## [88150] "suffer"            "free"              "will"             
## [88153] "might"             "chosen"            "otherwise"        
## [88156] "forsaken"          "companions"        "least"            
## [88159] "reward"            "shall"             "memory"           
## [88162] "lothlórien"        "shall"             "remain"           
## [88165] "ever"              "clear"             "unstained"        
## [88168] "heart"             "shall"             "neither"          
## [88171] "fade"              "grow"              "stale"            
## [88174] "maybe"             "said"              "gimli"            
## [88177] "thank"             "words"             "true"             
## [88180] "words"             "doubtless"         "yet"              
## [88183] "comfort"           "cold"              "memory"           
## [88186] "heart"             "desires"           "mirror"           
## [88189] "clear"             "kheled"            "zâram"            
## [88192] "says"              "heart"             "gimli"            
## [88195] "dwarf"             "elves"             "may"              
## [88198] "see"               "things"            "otherwise"        
## [88201] "indeed"            "heard"             "memory"           
## [88204] "like"              "waking"            "world"            
## [88207] "dream"             "dwarves"           "let"              
## [88210] "us"                "talk"              "look"             
## [88213] "boat"              "low"               "water"            
## [88216] "baggage"           "great"             "river"            
## [88219] "swift"             "wish"              "drown"            
## [88222] "grief"             "cold"              "water"            
## [88225] "took"              "paddle"            "steered"          
## [88228] "towards"           "western"           "bank"             
## [88231] "following"         "aragorns"          "boat"             
## [88234] "ahead"             "already"           "moved"            
## [88237] "middle"            "stream"            "company"          
## [88240] "went"              "long"              "way"              
## [88243] "wide"              "hurrying"          "waters"           
## [88246] "borne"             "ever"              "southwards"       
## [88249] "bare"              "woods"             "stalked"          
## [88252] "along"             "either"            "bank"             
## [88255] "see"               "glimpse"           "lands"            
## [88258] "behind"            "breeze"            "died"             
## [88261] "away"              "river"             "flowed"           
## [88264] "without"           "sound"             "voice"            
## [88267] "bird"              "broke"             "silence"          
## [88270] "sun"               "grew"              "misty"            
## [88273] "day"               "grew"              "old"              
## [88276] "gleamed"           "pale"              "sky"              
## [88279] "like"              "high"              "white"            
## [88282] "pearl"             "faded"             "west"             
## [88285] "dusk"              "came"              "early"            
## [88288] "followed"          "grey"              "starless"         
## [88291] "night"             "far"               "dark"             
## [88294] "quiet"             "hours"             "floated"          
## [88297] "guiding"           "boats"             "overhanging"      
## [88300] "shadows"           "western"           "woods"            
## [88303] "great"             "trees"             "passed"           
## [88306] "like"              "ghosts"            "thrusting"        
## [88309] "twisted"           "thirsty"           "roots"            
## [88312] "mist"              "water"             "dreary"           
## [88315] "cold"              "frodo"             "sat"              
## [88318] "listened"          "faint"             "lap"              
## [88321] "gurgle"            "river"             "fretting"         
## [88324] "among"             "tree"              "roots"            
## [88327] "driftwood"         "near"              "shore"            
## [88330] "head"              "nodded"            "fell"             
## [88333] "uneasy"            "sleep"             "chapter"          
## [88336] "great"             "river"             "frodo"            
## [88339] "roused"            "sam"               "found"            
## [88342] "lying"             "well"              "wrapped"          
## [88345] "tall"              "grey"              "skinned"          
## [88348] "trees"             "quiet"             "corner"           
## [88351] "woodlands"         "west"              "bank"             
## [88354] "great"             "river"             "anduin"           
## [88357] "slept"             "night"             "away"             
## [88360] "grey"              "morning"           "dim"              
## [88363] "among"             "bare"              "branches"         
## [88366] "gimli"             "busy"              "small"            
## [88369] "fire"              "near"              "hand"             
## [88372] "started"           "day"               "broad"            
## [88375] "company"           "eager"             "hurry"            
## [88378] "southwards"        "content"           "decision"         
## [88381] "must"              "make"              "latest"           
## [88384] "came"              "rauros"            "tindrock"         
## [88387] "isle"              "still"             "lay"              
## [88390] "days"              "ahead"             "let"              
## [88393] "river"             "bear"              "pace"             
## [88396] "desire"            "hasten"            "towards"          
## [88399] "perils"            "lay"               "beyond"           
## [88402] "whichever"         "course"            "took"             
## [88405] "end"               "aragorn"           "let"              
## [88408] "drift"             "stream"            "wished"           
## [88411] "husbanding"        "strength"          "weariness"        
## [88414] "come"              "insisted"          "least"            
## [88417] "start"             "early"             "day"              
## [88420] "journey"           "far"               "evening"          
## [88423] "felt"              "heart"             "time"             
## [88426] "pressing"          "feared"            "dark"             
## [88429] "lord"              "idle"              "lingered"         
## [88432] "lórien"            "nonetheless"       "saw"              
## [88435] "sign"              "enemy"             "day"              
## [88438] "next"              "dull"              "grey"             
## [88441] "hours"             "passed"            "without"          
## [88444] "event"             "third"             "day"              
## [88447] "voyage"            "wore"              "lands"            
## [88450] "changed"           "slowly"            "trees"            
## [88453] "thinned"           "failed"            "altogether"       
## [88456] "eastern"           "bank"              "left"             
## [88459] "saw"               "long"              "formless"         
## [88462] "slopes"            "stretching"        "away"             
## [88465] "toward"            "sky"               "brown"            
## [88468] "withered"          "looked"            "fire"             
## [88471] "passed"            "leaving"           "living"           
## [88474] "blade"             "green"             "unfriendly"       
## [88477] "waste"             "without"           "even"             
## [88480] "broken"            "tree"              "bold"             
## [88483] "stone"             "relieve"           "emptiness"        
## [88486] "come"              "brown"             "lands"            
## [88489] "lay"               "vast"              "desolate"         
## [88492] "southern"          "mirkwood"          "hills"            
## [88495] "emyn"              "muil"              "pestilence"       
## [88498] "war"               "evil"              "deed"             
## [88501] "enemy"             "blasted"           "region"           
## [88504] "even"              "aragorn"           "tell"             
## [88507] "upon"              "west"              "right"            
## [88510] "land"              "treeless"          "also"             
## [88513] "flat"              "many"              "places"           
## [88516] "green"             "wide"              "plains"           
## [88519] "grass"             "side"              "river"            
## [88522] "passed"            "forests"           "great"            
## [88525] "reeds"             "tall"              "shut"             
## [88528] "view"              "west"              "little"           
## [88531] "boats"             "went"              "rustling"         
## [88534] "along"             "fluttering"        "borders"          
## [88537] "dark"              "withered"          "plumes"           
## [88540] "bent"              "tossed"            "light"            
## [88543] "cold"              "airs"              "hissing"          
## [88546] "softly"            "sadly"             "openings"         
## [88549] "frodo"             "catch"             "sudden"           
## [88552] "glimpses"          "rolling"           "meads"            
## [88555] "far"               "beyond"            "hills"            
## [88558] "sunset"            "away"              "edge"             
## [88561] "sight"             "dark"              "line"             
## [88564] "marched"           "southernmost"      "ranks"            
## [88567] "misty"             "mountains"         "sign"             
## [88570] "living"            "moving"            "things"           
## [88573] "save"              "birds"             "many"             
## [88576] "small"             "fowl"              "whistling"        
## [88579] "piping"            "reeds"             "seldom"           
## [88582] "seen"              "twice"             "travellers"       
## [88585] "heard"             "rush"              "whine"            
## [88588] "swan"              "wings"             "looking"          
## [88591] "saw"               "great"             "phalanx"          
## [88594] "streaming"         "along"             "sky"              
## [88597] "swans"             "said"              "sam"              
## [88600] "mighty"            "big"               "ones"             
## [88603] "yes"               "said"              "aragorn"          
## [88606] "black"             "swans"             "wide"             
## [88609] "empty"             "mournful"          "country"          
## [88612] "looks"             "said"              "frodo"            
## [88615] "always"            "imagined"          "one"              
## [88618] "journeyed"         "south"             "got"              
## [88621] "warmer"            "merrier"           "winter"           
## [88624] "left"              "behind"            "ever"             
## [88627] "journeyed"         "far"               "south"            
## [88630] "yet"               "answered"          "aragorn"          
## [88633] "still"             "winter"            "far"              
## [88636] "sea"               "world"             "cold"             
## [88639] "sudden"            "spring"            "may"              
## [88642] "yet"               "snow"              "far"              
## [88645] "away"              "bay"               "belfalas"         
## [88648] "anduin"            "runs"              "warm"             
## [88651] "merry"             "maybe"             "enemy"            
## [88654] "sixty"             "leagues"           "guess"            
## [88657] "south"             "southfarthing"     "away"             
## [88660] "shire"             "hundreds"          "long"             
## [88663] "miles"             "yonder"            "looking"          
## [88666] "now"               "south"             "west"             
## [88669] "across"            "north"             "plains"           
## [88672] "riddermark"        "rohan"             "land"             
## [88675] "horse"             "lords"             "ere"              
## [88678] "long"              "shall"             "come"             
## [88681] "mouth"             "limlight"          "runs"             
## [88684] "fangorn"           "join"              "great"            
## [88687] "river"             "north"             "boundary"         
## [88690] "rohan"             "old"               "lay"              
## [88693] "limlight"          "white"             "mountains"        
## [88696] "belonged"          "rohirrim"          "rich"             
## [88699] "pleasant"          "land"              "grass"            
## [88702] "rival"             "evil"              "days"             
## [88705] "folk"              "dwell"             "river"            
## [88708] "ride"              "often"             "shores"           
## [88711] "anduin"            "wide"              "yet"              
## [88714] "orcs"              "can"               "shoot"            
## [88717] "arrows"            "far"               "across"           
## [88720] "stream"            "late"              "said"             
## [88723] "dared"             "cross"             "water"            
## [88726] "raid"              "herds"             "studs"            
## [88729] "rohan"             "sam"               "looked"           
## [88732] "bank"              "bank"              "uneasily"         
## [88735] "trees"             "seemed"            "hostile"          
## [88738] "harboured"         "secret"            "eyes"             
## [88741] "lurking"           "dangers"           "now"              
## [88744] "wished"            "trees"             "still"            
## [88747] "felt"              "company"           "naked"            
## [88750] "afloat"            "little"            "open"             
## [88753] "boats"             "midst"             "shelterless"      
## [88756] "lands"             "river"             "frontier"         
## [88759] "war"               "next"              "day"              
## [88762] "two"               "went"              "borne"            
## [88765] "steadily"          "southwards"        "feeling"          
## [88768] "insecurity"        "grew"              "company"          
## [88771] "whole"             "day"               "took"             
## [88774] "paddles"           "hastened"          "forward"          
## [88777] "banks"             "slid"              "soon"             
## [88780] "river"             "broadened"         "grew"             
## [88783] "shallow"           "long"              "stony"            
## [88786] "beaches"           "lay"               "upon"             
## [88789] "east"              "gravel"            "shoals"           
## [88792] "water"             "careful"           "steering"         
## [88795] "needed"            "brown"             "lands"            
## [88798] "rose"              "bleak"             "wolds"            
## [88801] "flowed"            "chill"             "air"              
## [88804] "east"              "side"              "meads"            
## [88807] "become"            "rolling"           "downs"            
## [88810] "withered"          "grass"             "amidst"           
## [88813] "land"              "fen"               "tussock"          
## [88816] "frodo"             "shivered"          "thinking"         
## [88819] "lawns"             "fountains"         "clear"            
## [88822] "sun"               "gentle"            "rains"            
## [88825] "lothlórien"        "little"            "speech"           
## [88828] "laughter"          "boats"             "member"           
## [88831] "company"           "busy"              "thoughts"         
## [88834] "heart"             "legolas"           "running"          
## [88837] "stars"             "summer"            "night"            
## [88840] "northern"          "glade"             "amid"             
## [88843] "beech"             "woods"             "gimli"            
## [88846] "fingering"         "gold"              "mind"             
## [88849] "wondering"         "fit"               "wrought"          
## [88852] "housing"           "ladys"             "gift"             
## [88855] "merry"             "pippin"            "middle"           
## [88858] "boat"              "ill"               "ease"             
## [88861] "boromir"           "sat"               "muttering"        
## [88864] "sometimes"         "biting"            "nails"            
## [88867] "restlessness"      "doubt"             "consumed"         
## [88870] "sometimes"         "seizing"           "paddle"           
## [88873] "driving"           "boat"              "close"            
## [88876] "behind"            "aragorns"          "pippin"           
## [88879] "sat"               "bow"               "looking"          
## [88882] "back"              "caught"            "queer"            
## [88885] "gleam"             "eye"               "peered"           
## [88888] "forward"           "gazing"            "frodo"            
## [88891] "sam"               "long"              "ago"              
## [88894] "made"              "mind"              "though"           
## [88897] "boats"             "maybe"             "dangerous"        
## [88900] "brought"           "believe"           "far"              
## [88903] "uncomfortable"     "even"              "imagined"         
## [88906] "cramped"           "miserable"         "nothing"          
## [88909] "stare"             "winter"            "lands"            
## [88912] "crawling"          "grey"              "water"            
## [88915] "either"            "side"              "even"             
## [88918] "paddles"           "use"               "trust"            
## [88921] "sam"               "one"               "dusk"             
## [88924] "drew"              "fourth"            "day"              
## [88927] "looking"           "back"              "bowed"            
## [88930] "heads"             "frodo"             "aragorn"          
## [88933] "following"         "boats"             "drowsy"           
## [88936] "longed"            "camp"              "feel"             
## [88939] "earth"             "toes"              "suddenly"         
## [88942] "something"         "caught"            "sight"            
## [88945] "first"             "stared"            "listlessly"       
## [88948] "sat"               "rubbed"            "eyes"             
## [88951] "looked"            "see"               "night"            
## [88954] "camped"            "small"             "eyot"             
## [88957] "close"             "western"           "bank"             
## [88960] "sam"               "lay"               "rolled"           
## [88963] "blankets"          "beside"            "frodo"            
## [88966] "funny"             "dream"             "hour"             
## [88969] "two"               "stopped"           "mr"               
## [88972] "frodo"             "said"              "maybe"            
## [88975] "wasnt"             "dream"             "funny"            
## [88978] "anyway"            "well"              "said"             
## [88981] "frodo"             "knowing"           "sam"              
## [88984] "settle"            "told"              "tale"             
## [88987] "whatever"          "havent"            "seen"             
## [88990] "thought"           "anything"          "make"             
## [88993] "smile"             "since"             "left"             
## [88996] "lothlórien"        "wasnt"             "funny"            
## [88999] "way"               "mr"                "frodo"            
## [89002] "queer"             "wrong"             "wasnt"            
## [89005] "dream"             "best"              "hear"             
## [89008] "like"              "saw"               "log"              
## [89011] "eyes"              "logs"              "right"            
## [89014] "said"              "frodo"             "many"             
## [89017] "river"             "leave"             "eyes"             
## [89020] "wont"              "said"              "sam"              
## [89023] "twas"              "eyes"              "made"             
## [89026] "sit"               "speak"             "saw"              
## [89029] "took"              "log"               "floating"         
## [89032] "along"             "half"              "light"            
## [89035] "behind"            "gimlis"            "boat"             
## [89038] "didnt"             "give"              "much"             
## [89041] "heed"              "seemed"            "log"              
## [89044] "slowly"            "catching"          "us"               
## [89047] "peculiar"          "might"             "say"              
## [89050] "seeing"            "floating"          "stream"           
## [89053] "together"          "just"              "saw"              
## [89056] "eyes"              "two"               "pale"             
## [89059] "sort"              "points"            "shiny"            
## [89062] "like"              "hump"              "near"             
## [89065] "end"               "log"               "whats"            
## [89068] "wasnt"             "log"               "paddle"           
## [89071] "feet"              "like"              "swans"            
## [89074] "almost"            "seemed"            "bigger"           
## [89077] "kept"              "dipping"           "water"            
## [89080] "thats"             "sat"               "right"            
## [89083] "rubbed"            "eyes"              "meaning"          
## [89086] "give"              "shout"             "still"            
## [89089] "rubbed"            "drowse"            "head"             
## [89092] "whatever"          "coming"            "along"            
## [89095] "fast"              "now"               "getting"          
## [89098] "close"             "behind"            "gimli"            
## [89101] "whether"           "two"               "lamps"            
## [89104] "spotted"           "moving"            "staring"          
## [89107] "whether"           "came"              "senses"           
## [89110] "dont"              "know"              "looked"           
## [89113] "wasnt"             "yet"               "think"            
## [89116] "caught"            "glimpse"           "tail"             
## [89119] "eye"               "saying"            "something"        
## [89122] "dark"              "shooting"          "shadow"           
## [89125] "bank"              "couldnt"           "see"              
## [89128] "eyes"              "though"            "said"             
## [89131] "dreaming"          "sam"               "gamgee"           
## [89134] "said"              "said"              "just"             
## [89137] "ive"               "thinking"          "since"            
## [89140] "now"               "im"                "sure"             
## [89143] "make"              "mr"                "frodo"            
## [89146] "make"              "nothing"           "log"              
## [89149] "dusk"              "sleep"             "eyes"             
## [89152] "sam"               "said"              "frodo"            
## [89155] "first"             "time"              "eyes"             
## [89158] "seen"              "isnt"              "saw"              
## [89161] "away"              "back"              "north"            
## [89164] "reached"           "lórien"            "saw"              
## [89167] "strange"           "creature"          "eyes"             
## [89170] "climbing"          "flet"              "night"            
## [89173] "haldir"            "saw"               "remember"         
## [89176] "report"            "elves"             "went"             
## [89179] "orc"               "band"              "ah"               
## [89182] "said"              "sam"               "remember"         
## [89185] "dont"              "like"              "thoughts"         
## [89188] "thinking"          "one"               "thing"            
## [89191] "another"           "mr"                "bilbos"           
## [89194] "stories"           "fancy"             "put"              
## [89197] "name"              "creature"          "guess"            
## [89200] "nasty"             "name"              "gollum"           
## [89203] "maybe"             "yes"               "feared"           
## [89206] "time"              "said"              "frodo"            
## [89209] "ever"              "since"             "night"            
## [89212] "flet"              "suppose"           "lurking"          
## [89215] "moria"             "picked"            "trail"            
## [89218] "hoped"             "stay"              "lórien"           
## [89221] "throw"             "scent"             "miserable"        
## [89224] "creature"          "must"              "hiding"           
## [89227] "woods"             "silverlode"        "watching"         
## [89230] "us"                "start"             "thats"            
## [89233] "said"              "sam"               "wed"              
## [89236] "better"            "bit"               "watchful"         
## [89239] "well"              "feel"              "nasty"            
## [89242] "fingers"           "round"             "necks"            
## [89245] "one"               "nights"            "ever"             
## [89248] "wake"              "feel"              "anything"         
## [89251] "thats"             "leading"           "need"             
## [89254] "trouble"           "strider"           "others"           
## [89257] "tonight"           "ill"               "keep"             
## [89260] "watch"             "can"               "sleep"            
## [89263] "tomorrow"          "luggage"           "boat"             
## [89266] "might"             "say"               "might"            
## [89269] "said"              "frodo"             "might"            
## [89272] "say"               "luggage"           "eyes"             
## [89275] "shall"             "watch"             "promise"          
## [89278] "wake"              "halfway"           "towards"          
## [89281] "morning"           "nothing"           "happens"          
## [89284] "dead"              "hours"             "frodo"            
## [89287] "came"              "deep"              "dark"             
## [89290] "sleep"             "find"              "sam"              
## [89293] "shaking"           "shame"             "wake"             
## [89296] "whispered"         "sam"               "thats"            
## [89299] "said"              "theres"            "nothing"          
## [89302] "tell"              "much"              "thought"          
## [89305] "heard"             "soft"              "plashing"         
## [89308] "sniffing"          "noise"             "back"             
## [89311] "hear"              "lot"               "queer"            
## [89314] "sounds"            "river"             "night"            
## [89317] "lay"               "frodo"             "sat"              
## [89320] "huddled"           "blankets"          "fought"           
## [89323] "sleep"             "minutes"           "hours"            
## [89326] "passed"            "slowly"            "nothing"          
## [89329] "happened"          "frodo"             "just"             
## [89332] "yielding"          "temptation"        "lie"              
## [89335] "dark"              "shape"             "hardly"           
## [89338] "visible"           "floated"           "close"            
## [89341] "one"               "moored"            "boats"            
## [89344] "long"              "whitish"           "hand"             
## [89347] "dimly"             "seen"              "shot"             
## [89350] "grabbed"           "gunwale"           "two"              
## [89353] "pale"              "lamplike"          "eyes"             
## [89356] "shone"             "coldly"            "peered"           
## [89359] "inside"            "lifted"            "gazed"            
## [89362] "frodo"             "eyot"              "yard"             
## [89365] "two"               "away"              "frodo"            
## [89368] "heard"             "soft"              "hiss"             
## [89371] "intaken"           "breath"            "stood"            
## [89374] "drawing"           "sting"             "sheath"           
## [89377] "faced"             "eyes"              "immediately"      
## [89380] "light"             "shut"              "another"          
## [89383] "hiss"              "splash"            "dark"             
## [89386] "log"               "shape"             "shot"             
## [89389] "away"              "downstream"        "night"            
## [89392] "aragorn"           "stirred"           "sleep"            
## [89395] "turned"            "sat"               "whispered"        
## [89398] "springing"         "coming"            "frodo"            
## [89401] "felt"              "something"         "sleep"            
## [89404] "drawn"             "sword"             "gollum"           
## [89407] "answered"          "frodo"             "least"            
## [89410] "guess"             "ah"                "said"             
## [89413] "aragorn"           "know"              "little"           
## [89416] "footpad"           "padded"            "us"               
## [89419] "moria"             "right"             "nimrodel"         
## [89422] "since"             "took"              "boats"            
## [89425] "lying"             "log"               "paddling"         
## [89428] "hands"             "feet"              "tried"            
## [89431] "catch"             "twice"             "night"            
## [89434] "slier"             "fox"               "slippery"         
## [89437] "fish"              "hoped"             "river"            
## [89440] "voyage"            "beat"              "clever"           
## [89443] "waterman"          "shall"             "try"              
## [89446] "going"             "faster"            "tomorrow"         
## [89449] "lie"               "now"               "will"             
## [89452] "keep"              "watch"             "left"             
## [89455] "night"             "wish"              "lay"              
## [89458] "hands"             "wretch"            "might"            
## [89461] "make"              "useful"            "shall"            
## [89464] "try"               "lose"              "dangerous"        
## [89467] "quite"             "apart"             "murder"           
## [89470] "night"             "account"           "may"              
## [89473] "put"               "enemy"             "track"            
## [89476] "night"             "passed"            "without"          
## [89479] "gollum"            "showing"           "much"             
## [89482] "shadow"            "company"           "kept"             
## [89485] "sharp"             "look"              "saw"              
## [89488] "gollum"            "voyage"            "lasted"           
## [89491] "still"             "following"         "wary"             
## [89494] "cunning"           "aragorns"          "bidding"          
## [89497] "paddled"           "now"               "long"             
## [89500] "spells"            "banks"             "went"             
## [89503] "swiftly"           "saw"               "little"           
## [89506] "country"           "journeyed"         "mostly"           
## [89509] "night"             "twilight"          "resting"          
## [89512] "day"               "lying"             "hidden"           
## [89515] "land"              "allowed"           "way"              
## [89518] "time"              "passed"            "without"          
## [89521] "event"             "seventh"           "day"              
## [89524] "weather"           "still"             "grey"             
## [89527] "overcast"          "wind"              "east"             
## [89530] "evening"           "drew"              "night"            
## [89533] "sky"               "away"              "westward"         
## [89536] "cleared"           "pools"             "faint"            
## [89539] "light"             "yellow"            "pale"             
## [89542] "green"             "opened"            "grey"             
## [89545] "shores"            "cloud"             "white"            
## [89548] "rind"              "new"               "moon"             
## [89551] "seen"              "glimmering"        "remote"           
## [89554] "lakes"             "sam"               "looked"           
## [89557] "puckered"          "brows"             "next"             
## [89560] "day"               "country"           "either"           
## [89563] "side"              "began"             "change"           
## [89566] "rapidly"           "banks"             "began"            
## [89569] "rise"              "grow"              "stony"            
## [89572] "soon"              "passing"           "hilly"            
## [89575] "rocky"             "land"              "shores"           
## [89578] "steep"             "slopes"            "buried"           
## [89581] "deep"              "brakes"            "thorn"            
## [89584] "sloe"              "tangled"           "brambles"         
## [89587] "creepers"          "behind"            "stood"            
## [89590] "low"               "crumbling"         "cliffs"           
## [89593] "chimneys"          "grey"              "weathered"        
## [89596] "stone"             "dark"              "ivy"              
## [89599] "beyond"            "rose"              "high"             
## [89602] "ridges"            "crowned"           "wind"             
## [89605] "writhen"           "firs"              "drawing"          
## [89608] "near"              "grey"              "hill"             
## [89611] "country"           "emyn"              "muil"             
## [89614] "southern"          "march"             "wilderland"       
## [89617] "many"              "birds"             "cliffs"           
## [89620] "rock"              "chimneys"          "day"              
## [89623] "high"              "air"               "flocks"           
## [89626] "birds"             "circling"          "black"            
## [89629] "pale"              "sky"               "lay"              
## [89632] "camp"              "day"               "aragorn"          
## [89635] "watched"           "flights"           "doubtfully"       
## [89638] "wondering"         "gollum"            "mischief"         
## [89641] "news"              "voyage"            "now"              
## [89644] "moving"            "wilderness"        "later"            
## [89647] "sun"               "setting"           "company"          
## [89650] "stirring"          "getting"           "ready"            
## [89653] "start"             "descried"          "dark"             
## [89656] "spot"              "fading"            "light"            
## [89659] "great"             "bird"              "high"             
## [89662] "far"               "now"               "wheeling"         
## [89665] "now"               "flying"            "slowly"           
## [89668] "southwards"        "legolas"           "asked"            
## [89671] "pointing"          "northern"          "sky"              
## [89674] "think"             "eagle"             "yes"              
## [89677] "said"              "legolas"           "eagle"            
## [89680] "hunting"           "eagle"             "wonder"           
## [89683] "forebodes"         "far"               "mountains"        
## [89686] "will"              "start"             "fully"            
## [89689] "dark"              "said"              "aragorn"          
## [89692] "eighth"            "night"             "journey"          
## [89695] "came"              "silent"            "windless"         
## [89698] "grey"              "east"              "wind"             
## [89701] "passed"            "away"              "thin"             
## [89704] "crescent"          "moon"              "fallen"           
## [89707] "early"             "pale"              "sunset"           
## [89710] "sky"               "clear"             "though"           
## [89713] "far"               "away"              "south"            
## [89716] "great"             "ranges"            "cloud"            
## [89719] "still"             "shone"             "faintly"          
## [89722] "west"              "stars"             "glinted"          
## [89725] "bright"            "come"              "said"             
## [89728] "aragorn"           "will"              "venture"          
## [89731] "one"               "journey"           "night"            
## [89734] "coming"            "reaches"           "river"            
## [89737] "know"              "well"              "never"            
## [89740] "journeyed"         "water"             "parts"            
## [89743] "rapids"            "sarn"              "gebir"            
## [89746] "right"             "reckoning"         "still"            
## [89749] "many"              "miles"             "ahead"            
## [89752] "still"             "dangerous"         "places"           
## [89755] "even"              "come"              "rocks"            
## [89758] "stony"             "eyots"             "stream"           
## [89761] "must"              "keep"              "sharp"            
## [89764] "watch"             "try"               "paddle"           
## [89767] "swiftly"           "sam"               "leading"          
## [89770] "boat"              "given"             "task"             
## [89773] "watchman"          "lay"               "forward"          
## [89776] "peering"           "gloom"             "night"            
## [89779] "grew"              "dark"              "stars"            
## [89782] "strangely"         "bright"            "glimmer"          
## [89785] "face"              "river"             "close"            
## [89788] "midnight"          "drifting"          "hardly"           
## [89791] "using"             "paddles"           "suddenly"         
## [89794] "sam"               "cried"             "yards"            
## [89797] "ahead"             "dark"              "shapes"           
## [89800] "loomed"            "stream"            "heard"            
## [89803] "swirl"             "racing"            "water"            
## [89806] "swift"             "current"           "swung"            
## [89809] "left"              "towards"           "eastern"          
## [89812] "shore"             "channel"           "clear"            
## [89815] "swept"             "aside"             "travellers"       
## [89818] "see"               "now"               "close"            
## [89821] "pale"              "foam"              "river"            
## [89824] "lashing"           "sharp"             "rocks"            
## [89827] "thrust"            "far"               "stream"           
## [89830] "like"              "ridge"             "teeth"            
## [89833] "boats"             "huddled"           "together"         
## [89836] "hoy"               "aragorn"           "shouted"          
## [89839] "boromir"           "boat"              "bumped"           
## [89842] "leader"            "madness"           "dare"             
## [89845] "rapids"            "night"             "boat"             
## [89848] "can"               "live"              "sarn"             
## [89851] "gebir"             "night"             "day"              
## [89854] "back"              "back"              "cried"            
## [89857] "aragorn"           "turn"              "turn"             
## [89860] "can"               "drove"             "paddle"           
## [89863] "water"             "trying"            "hold"             
## [89866] "boat"              "bring"             "round"            
## [89869] "reckoning"         "said"              "frodo"            
## [89872] "know"              "come"              "far"              
## [89875] "anduin"            "flows"             "faster"           
## [89878] "thought"           "sarn"              "gebir"            
## [89881] "must"              "close"             "hand"             
## [89884] "already"           "great"             "efforts"          
## [89887] "checked"           "boats"             "slowly"           
## [89890] "brought"           "first"             "make"             
## [89893] "small"             "headway"           "current"          
## [89896] "time"              "carried"           "nearer"           
## [89899] "nearer"            "eastern"           "bank"             
## [89902] "now"               "dark"              "ominous"          
## [89905] "loomed"            "night"             "together"         
## [89908] "paddle"            "shouted"           "boromir"          
## [89911] "paddle"            "shall"             "driven"           
## [89914] "shoals"            "even"              "spoke"            
## [89917] "frodo"             "felt"              "keel"             
## [89920] "beneath"           "grate"             "upon"             
## [89923] "stone"             "moment"            "twang"            
## [89926] "bowstrings"        "several"           "arrows"           
## [89929] "whistled"          "fell"              "among"            
## [89932] "one"               "smote"             "frodo"            
## [89935] "shoulders"         "lurched"           "forward"          
## [89938] "cry"               "letting"           "go"               
## [89941] "paddle"            "arrow"             "fell"             
## [89944] "back"              "foiled"            "hidden"           
## [89947] "coat"              "mail"              "another"          
## [89950] "passed"            "aragorns"          "hood"             
## [89953] "third"             "stood"             "fast"             
## [89956] "gunwale"           "second"            "boat"             
## [89959] "close"             "merrys"            "hand"             
## [89962] "sam"               "thought"           "glimpse"          
## [89965] "black"             "figures"           "running"          
## [89968] "fro"               "upon"              "long"             
## [89971] "shingle"           "banks"             "lay"              
## [89974] "eastern"           "shore"             "seemed"           
## [89977] "near"              "yrch"              "said"             
## [89980] "legolas"           "falling"           "tongue"           
## [89983] "orcs"              "cried"             "gimli"            
## [89986] "gollums"           "ill"               "bound"            
## [89989] "said"              "sam"               "frodo"            
## [89992] "nice"              "place"             "choose"           
## [89995] "river"             "seems"             "set"              
## [89998] "taking"            "us"                "right"            
## [90001] "arms"              "leaned"            "forward"          
## [90004] "straining"         "paddles"           "even"             
## [90007] "sam"               "took"              "hand"             
## [90010] "every"             "moment"            "expected"         
## [90013] "feel"              "bite"              "black"            
## [90016] "feathered"         "arrows"            "many"             
## [90019] "whined"            "overhead"          "struck"           
## [90022] "water"             "nearby"            "hits"             
## [90025] "dark"              "dark"              "night"            
## [90028] "eyes"              "orcs"              "star"             
## [90031] "glimmer"           "must"              "offered"          
## [90034] "cunning"           "foes"              "mark"             
## [90037] "unless"            "grey"              "cloaks"           
## [90040] "lórien"            "grey"              "timber"           
## [90043] "elf"               "wrought"           "boats"            
## [90046] "defeated"          "malice"            "archers"          
## [90049] "mordor"            "stroke"            "stroke"           
## [90052] "laboured"          "darkness"          "hard"             
## [90055] "sure"              "indeed"            "moving"           
## [90058] "slowly"            "swirl"             "water"            
## [90061] "grew"              "less"              "shadow"           
## [90064] "eastern"           "bank"              "faded"            
## [90067] "back"              "night"             "last"             
## [90070] "far"               "judge"             "reached"          
## [90073] "middle"            "stream"            "driven"           
## [90076] "boats"             "back"              "distance"         
## [90079] "jutting"           "rocks"             "half"             
## [90082] "turning"           "thrust"            "strength"         
## [90085] "towards"           "western"           "shore"            
## [90088] "shadow"            "bushes"            "leaning"          
## [90091] "water"             "halted"            "drew"             
## [90094] "breath"            "legolas"           "laid"             
## [90097] "paddle"            "took"              "bow"              
## [90100] "brought"           "lórien"            "sprang"           
## [90103] "ashore"            "climbed"           "paces"            
## [90106] "bank"              "stringing"         "bow"              
## [90109] "fitting"           "arrow"             "turned"           
## [90112] "peering"           "back"              "river"            
## [90115] "darkness"          "across"            "water"            
## [90118] "shrill"            "cries"             "nothing"          
## [90121] "seen"              "frodo"             "looked"           
## [90124] "elf"               "standing"          "tall"             
## [90127] "gazed"             "night"             "seeking"          
## [90130] "mark"              "shoot"             "head"             
## [90133] "dark"              "crowned"           "sharp"            
## [90136] "white"             "stars"             "glittered"        
## [90139] "black"             "pools"             "sky"              
## [90142] "behind"            "now"               "rising"           
## [90145] "sailing"           "south"             "great"            
## [90148] "clouds"            "advanced"          "sending"          
## [90151] "dark"              "outriders"         "starry"           
## [90154] "fields"            "sudden"            "dread"            
## [90157] "fell"              "company"           "elbereth"         
## [90160] "gilthoniel"        "sighed"            "legolas"          
## [90163] "looked"            "even"              "dark"             
## [90166] "shape"             "like"              "cloud"            
## [90169] "yet"               "cloud"             "moved"            
## [90172] "far"               "swiftly"           "came"             
## [90175] "blackness"         "south"             "sped"             
## [90178] "towards"           "company"           "blotting"         
## [90181] "light"             "approached"        "soon"             
## [90184] "appeared"          "great"             "winged"           
## [90187] "creature"          "blacker"           "pits"             
## [90190] "night"             "fierce"            "voices"           
## [90193] "rose"              "greet"             "across"           
## [90196] "water"             "frodo"             "felt"             
## [90199] "sudden"            "chill"             "running"          
## [90202] "clutching"         "heart"             "deadly"           
## [90205] "cold"              "like"              "memory"           
## [90208] "old"               "wound"             "shoulder"         
## [90211] "crouched"          "hide"              "suddenly"         
## [90214] "great"             "bow"               "lórien"           
## [90217] "sang"              "shrill"            "went"             
## [90220] "arrow"             "elven"             "string"           
## [90223] "frodo"             "looked"            "almost"           
## [90226] "winged"            "shape"             "swerved"          
## [90229] "harsh"             "croaking"          "scream"           
## [90232] "fell"              "air"               "vanishing"        
## [90235] "gloom"             "eastern"           "shore"            
## [90238] "sky"               "clean"             "tumult"           
## [90241] "many"              "voices"            "far"              
## [90244] "away"              "cursing"           "wailing"          
## [90247] "darkness"          "silence"           "neither"          
## [90250] "shaft"             "cry"               "came"             
## [90253] "east"              "night"             "aragorn"          
## [90256] "led"               "boats"             "back"             
## [90259] "upstream"          "felt"              "way"              
## [90262] "along"             "waters"            "edge"             
## [90265] "distance"          "found"             "small"            
## [90268] "shallow"           "bay"               "low"              
## [90271] "trees"             "grew"              "close"            
## [90274] "water"             "behind"            "rose"             
## [90277] "steep"             "rocky"             "bank"             
## [90280] "company"           "decided"           "stay"             
## [90283] "await"             "dawn"              "useless"          
## [90286] "attempt"           "move"              "night"            
## [90289] "made"              "camp"              "lit"              
## [90292] "fire"              "lay"               "huddled"          
## [90295] "boats"             "moored"            "close"            
## [90298] "together"          "praised"           "bow"              
## [90301] "galadriel"         "hand"              "eye"              
## [90304] "legolas"           "said"              "gimli"            
## [90307] "munched"           "wafer"             "lembas"           
## [90310] "mighty"            "shot"              "dark"             
## [90313] "friend"            "can"               "say"              
## [90316] "hit"               "said"              "legolas"          
## [90319] "said"              "gimli"             "glad"             
## [90322] "shadow"            "came"              "nearer"           
## [90325] "liked"             "much"              "reminded"         
## [90328] "shadow"            "moria"             "shadow"           
## [90331] "balrog"            "ended"             "whisper"          
## [90334] "balrog"            "said"              "frodo"            
## [90337] "still"             "shivering"         "chill"            
## [90340] "come"              "upon"              "something"        
## [90343] "colder"            "think"             "paused"           
## [90346] "fell"              "silent"            "think"            
## [90349] "asked"             "boromir"           "eagerly"          
## [90352] "leaning"           "boat"              "trying"           
## [90355] "catch"             "glimpse"           "frodos"           
## [90358] "face"              "think"             "will"             
## [90361] "say"               "answered"          "frodo"            
## [90364] "whatever"          "fall"              "dismayed"         
## [90367] "enemies"           "seems"             "said"             
## [90370] "aragorn"           "yet"               "many"             
## [90373] "will"              "next"              "know"             
## [90376] "night"             "must"              "sleepless"        
## [90379] "dark"              "hides"             "us"               
## [90382] "now"               "day"               "will"             
## [90385] "show"              "can"               "tell"             
## [90388] "weapons"           "close"             "hand"             
## [90391] "sam"               "sat"               "tapping"          
## [90394] "hilt"              "sword"             "counting"         
## [90397] "fingers"           "looking"           "sky"              
## [90400] "strange"           "murmured"          "moons"            
## [90403] "shire"             "wilderland"        "either"           
## [90406] "running"           "im"                "wrong"            
## [90409] "reckoning"         "youll"             "remember"         
## [90412] "mr"                "frodo"             "moon"             
## [90415] "waning"            "lay"               "flet"             
## [90418] "tree"              "week"              "full"             
## [90421] "reckon"            "wed"               "week"             
## [90424] "way"               "last"              "night"            
## [90427] "pops"              "new"               "moon"             
## [90430] "thin"              "nail"              "paring"           
## [90433] "never"             "stayed"            "time"             
## [90436] "elvish"            "country"           "well"             
## [90439] "can"               "remember"          "three"            
## [90442] "nights"            "certain"           "seem"             
## [90445] "remember"          "several"           "take"             
## [90448] "oath"              "never"             "whole"            
## [90451] "month"             "anyone"            "think"            
## [90454] "time"              "count"             "perhaps"          
## [90457] "way"               "said"              "frodo"            
## [90460] "land"              "maybe"             "time"             
## [90463] "elsewhere"         "long"              "gone"             
## [90466] "think"             "silverlode"        "bore"             
## [90469] "us"                "back"              "anduin"           
## [90472] "returned"          "time"              "flows"            
## [90475] "mortal"            "lands"             "great"            
## [90478] "sea"               "dont"              "remember"         
## [90481] "moon"              "either"            "new"              
## [90484] "old"               "caras"             "galadhon"         
## [90487] "stars"             "night"             "sun"              
## [90490] "day"               "legolas"           "stirred"          
## [90493] "boat"              "nay"               "time"             
## [90496] "tarry"             "ever"              "said"             
## [90499] "change"            "growth"            "things"           
## [90502] "places"            "alike"             "elves"            
## [90505] "world"             "moves"             "moves"            
## [90508] "swift"             "slow"              "swift"            
## [90511] "change"            "little"            "else"             
## [90514] "fleets"            "grief"             "slow"             
## [90517] "count"             "running"           "years"            
## [90520] "passing"           "seasons"           "ripples"          
## [90523] "ever"              "repeated"          "long"             
## [90526] "long"              "stream"            "yet"              
## [90529] "beneath"           "sun"               "things"           
## [90532] "must"              "wear"              "end"              
## [90535] "last"              "wearing"           "slow"             
## [90538] "lórien"            "said"              "frodo"            
## [90541] "power"             "lady"              "rich"             
## [90544] "hours"             "though"            "short"            
## [90547] "seem"              "caras"             "galadhon"         
## [90550] "galadriel"         "wields"            "elven"            
## [90553] "ring"              "said"              "outside"          
## [90556] "lórien"            "even"              "said"             
## [90559] "aragorn"           "speak"             "sam"              
## [90562] "land"              "lost"              "count"            
## [90565] "time"              "flowed"            "swiftly"          
## [90568] "us"                "elves"             "old"              
## [90571] "moon"              "passed"            "new"              
## [90574] "moon"              "waxed"             "waned"            
## [90577] "world"             "outside"           "tarried"          
## [90580] "yestereve"         "new"               "moon"             
## [90583] "came"              "winter"            "nearly"           
## [90586] "gone"              "time"              "flows"            
## [90589] "spring"            "little"            "hope"             
## [90592] "night"             "passed"            "silently"         
## [90595] "voice"             "call"              "heard"            
## [90598] "across"            "water"             "travellers"       
## [90601] "huddled"           "boats"             "felt"             
## [90604] "changing"          "weather"           "air"              
## [90607] "grew"              "warm"              "still"            
## [90610] "great"             "moist"             "clouds"           
## [90613] "floated"           "south"             "distant"          
## [90616] "seas"              "rushing"           "river"            
## [90619] "rocks"             "rapids"            "seemed"           
## [90622] "grow"              "louder"            "closer"           
## [90625] "twigs"             "trees"             "began"            
## [90628] "drip"              "day"               "came"             
## [90631] "mood"              "world"             "become"           
## [90634] "soft"              "sad"               "slowly"           
## [90637] "dawn"              "grew"              "pale"             
## [90640] "light"             "diffused"          "shadowless"       
## [90643] "mist"              "river"             "white"            
## [90646] "fog"               "swathed"           "shore"            
## [90649] "far"               "bank"              "seen"             
## [90652] "cant"              "abide"             "fog"              
## [90655] "said"              "sam"               "seems"            
## [90658] "lucky"             "one"               "now"              
## [90661] "perhaps"           "can"               "get"              
## [90664] "away"              "without"           "cursed"           
## [90667] "goblins"           "seeing"            "us"               
## [90670] "perhaps"           "said"              "aragorn"          
## [90673] "will"              "hard"              "find"             
## [90676] "path"              "unless"            "fog"              
## [90679] "lifts"             "little"            "later"            
## [90682] "must"              "find"              "path"             
## [90685] "pass"              "sarn"              "gebir"            
## [90688] "come"              "emyn"              "muil"             
## [90691] "see"               "pass"              "rapids"           
## [90694] "follow"            "river"             "said"             
## [90697] "boromir"           "emyn"              "muil"             
## [90700] "lie"               "us"                "can"              
## [90703] "abandon"           "cockle"            "boats"            
## [90706] "strike"            "westward"          "southward"        
## [90709] "come"              "entwash"           "cross"            
## [90712] "land"              "can"               "making"           
## [90715] "minas"             "tirith"            "said"             
## [90718] "aragorn"           "yet"               "agreed"           
## [90721] "course"            "may"               "perilous"         
## [90724] "sounds"            "vale"              "entwash"          
## [90727] "flat"              "fenny"             "fog"              
## [90730] "deadly"            "peril"             "foot"             
## [90733] "laden"             "abandon"           "boats"            
## [90736] "must"              "river"             "least"            
## [90739] "path"              "missed"            "enemy"            
## [90742] "holds"             "eastern"           "bank"             
## [90745] "objected"          "boromir"           "even"             
## [90748] "pass"              "gates"             "argonath"         
## [90751] "come"              "unmolested"        "tindrock"         
## [90754] "will"              "leap"              "falls"            
## [90757] "land"              "marshes"           "answered"         
## [90760] "aragorn"           "say"               "rather"           
## [90763] "will"              "bear"              "boats"            
## [90766] "ancient"           "way"               "rauros"           
## [90769] "foot"              "take"              "water"            
## [90772] "know"              "boromir"           "choose"           
## [90775] "forget"            "north"             "stair"            
## [90778] "high"              "seat"              "upon"             
## [90781] "amon"              "hen"               "made"             
## [90784] "days"              "great"             "kings"            
## [90787] "least"             "mind"              "stand"            
## [90790] "high"              "place"             "decide"           
## [90793] "course"            "maybe"             "shall"            
## [90796] "see"               "sign"              "will"             
## [90799] "guide"             "us"                "boromir"          
## [90802] "held"              "long"              "choice"           
## [90805] "became"            "plain"             "frodo"            
## [90808] "follow"            "aragorn"           "wherever"         
## [90811] "went"              "gave"              "way"              
## [90814] "men"               "minas"             "tirith"           
## [90817] "desert"            "friends"           "need"             
## [90820] "said"              "will"              "need"             
## [90823] "strength"          "ever"              "reach"            
## [90826] "tindrock"          "tall"              "isle"             
## [90829] "will"              "go"                "shall"            
## [90832] "turn"              "home"              "alone"            
## [90835] "help"              "earned"            "reward"           
## [90838] "companionship"     "day"               "now"              
## [90841] "growing"           "fog"               "lifted"           
## [90844] "little"            "decided"           "aragorn"          
## [90847] "legolas"           "go"                "forward"          
## [90850] "along"             "shore"             "others"           
## [90853] "remained"          "boats"             "aragorn"          
## [90856] "hoped"             "find"              "way"              
## [90859] "carry"             "boats"             "baggage"          
## [90862] "smoother"          "water"             "beyond"           
## [90865] "rapids"            "boats"             "elves"            
## [90868] "sink"              "maybe"             "said"             
## [90871] "say"               "come"              "sarn"             
## [90874] "gebir"             "alive"             "none"             
## [90877] "ever"              "done"              "yet"              
## [90880] "road"              "made"              "men"              
## [90883] "gondor"            "region"            "even"             
## [90886] "great"             "days"              "realm"            
## [90889] "reach"             "anduin"            "beyond"           
## [90892] "emyn"              "muil"              "portage"          
## [90895] "way"               "somewhere"         "western"          
## [90898] "shore"             "can"               "find"             
## [90901] "yet"               "perished"          "light"            
## [90904] "boats"             "used"              "journey"          
## [90907] "wilderland"        "osgiliath"         "still"            
## [90910] "years"             "ago"               "orcs"             
## [90913] "mordor"            "began"             "multiply"         
## [90916] "seldom"            "life"              "boat"             
## [90919] "come"              "north"             "orcs"             
## [90922] "prowl"             "east"              "shore"            
## [90925] "said"              "boromir"           "go"               
## [90928] "forward"           "peril"             "will"             
## [90931] "grow"              "every"             "mile"             
## [90934] "even"              "find"              "path"             
## [90937] "peril"             "lies"              "ahead"            
## [90940] "every"             "southward"         "road"             
## [90943] "answered"          "aragorn"           "wait"             
## [90946] "us"                "one"               "day"              
## [90949] "return"            "time"              "will"             
## [90952] "know"              "evil"              "indeed"           
## [90955] "befallen"          "us"                "must"             
## [90958] "take"              "new"               "leader"           
## [90961] "follow"            "best"              "can"              
## [90964] "heavy"             "heart"             "frodo"            
## [90967] "saw"               "aragorn"           "legolas"          
## [90970] "climb"             "steep"             "bank"             
## [90973] "vanish"            "mists"             "fears"            
## [90976] "proved"            "groundless"        "two"              
## [90979] "three"             "hours"             "passed"           
## [90982] "barely"            "mid"               "day"              
## [90985] "shadowy"           "shapes"            "explorers"        
## [90988] "appeared"          "well"              "said"             
## [90991] "aragorn"           "clambered"         "bank"             
## [90994] "track"             "leads"             "good"             
## [90997] "landing"           "still"             "serviceable"      
## [91000] "distance"          "great"             "head"             
## [91003] "rapids"            "half"              "mile"             
## [91006] "us"                "little"            "mile"             
## [91009] "long"              "far"               "beyond"           
## [91012] "stream"            "becomes"           "clear"            
## [91015] "smooth"            "though"            "runs"             
## [91018] "swiftly"           "hardest"           "task"             
## [91021] "will"              "get"               "boats"            
## [91024] "baggage"           "old"               "portage"          
## [91027] "way"               "found"             "lies"             
## [91030] "well"              "back"              "water"            
## [91033] "side"              "runs"              "lee"              
## [91036] "rock"              "wall"              "furlong"          
## [91039] "shore"             "find"              "northward"        
## [91042] "landing"           "lies"              "still"            
## [91045] "remains"           "must"              "passed"           
## [91048] "yesterday"         "night"             "might"            
## [91051] "labour"            "far"               "upstream"         
## [91054] "yet"               "miss"              "fog"              
## [91057] "fear"              "must"              "leave"            
## [91060] "river"             "now"               "make"             
## [91063] "portage"           "way"               "best"             
## [91066] "can"               "easy"              "even"             
## [91069] "men"               "said"              "boromir"          
## [91072] "yet"               "will"              "try"              
## [91075] "said"              "aragorn"           "aye"              
## [91078] "will"              "said"              "gimli"            
## [91081] "legs"              "men"               "will"             
## [91084] "lag"               "rough"             "road"             
## [91087] "dwarf"             "goes"              "burden"           
## [91090] "twice"             "weight"            "master"           
## [91093] "boromir"           "task"              "proved"           
## [91096] "hard"              "indeed"            "yet"              
## [91099] "end"               "done"              "goods"            
## [91102] "taken"             "boats"             "brought"          
## [91105] "top"               "bank"              "level"            
## [91108] "space"             "boats"             "drawn"            
## [91111] "water"             "carried"           "far"              
## [91114] "less"              "heavy"             "expected"         
## [91117] "tree"              "growing"           "elvish"           
## [91120] "country"           "made"              "even"             
## [91123] "legolas"           "knew"              "wood"             
## [91126] "tough"             "yet"               "strangely"        
## [91129] "light"             "merry"             "pippin"           
## [91132] "alone"             "carry"             "boat"             
## [91135] "ease"              "along"             "flat"             
## [91138] "nonetheless"       "needed"            "strength"         
## [91141] "two"               "men"               "lift"             
## [91144] "haul"              "ground"            "company"          
## [91147] "now"               "cross"             "sloped"           
## [91150] "away"              "river"             "tumbled"          
## [91153] "waste"             "grey"              "limestone"        
## [91156] "boulders"          "many"              "hidden"           
## [91159] "holes"             "shrouded"          "weeds"            
## [91162] "bushes"            "thickets"          "brambles"         
## [91165] "sheer"             "dells"             "boggy"            
## [91168] "pools"             "fed"               "waters"           
## [91171] "trickling"         "terraces"          "inland"           
## [91174] "one"               "one"               "boromir"          
## [91177] "aragorn"           "carried"           "boats"            
## [91180] "others"            "toiled"            "scrambled"        
## [91183] "baggage"           "last"              "removed"          
## [91186] "laid"              "portage"           "way"              
## [91189] "little"            "hindrance"         "save"             
## [91192] "sprawling"         "briars"            "many"             
## [91195] "fallen"            "stones"            "moved"            
## [91198] "forward"           "together"          "fog"              
## [91201] "still"             "hung"              "veils"            
## [91204] "upon"              "crumbling"         "rock"             
## [91207] "wall"              "left"              "mist"             
## [91210] "shrouded"          "river"             "hear"             
## [91213] "rushing"           "foaming"           "sharp"            
## [91216] "shelves"           "stony"             "teeth"            
## [91219] "sarn"              "gebir"             "see"              
## [91222] "twice"             "made"              "journey"          
## [91225] "brought"           "safe"              "southern"         
## [91228] "landing"           "portage"           "way"              
## [91231] "turning"           "back"              "water"            
## [91234] "side"              "ran"               "gently"           
## [91237] "shallow"           "edge"              "little"           
## [91240] "pool"              "seemed"            "scooped"          
## [91243] "river"             "side"              "hand"             
## [91246] "water"             "swirling"          "sarn"             
## [91249] "gebir"             "low"               "pier"             
## [91252] "rock"              "jutted"            "way"              
## [91255] "stream"            "beyond"            "shore"            
## [91258] "rose"              "sheer"             "grey"             
## [91261] "cliff"             "passage"           "foot"             
## [91264] "already"           "short"             "afternoon"        
## [91267] "past"              "dim"               "cloudy"           
## [91270] "dusk"              "closing"           "sat"              
## [91273] "beside"            "water"             "listening"        
## [91276] "confused"          "rush"              "roar"             
## [91279] "rapids"            "hidden"            "mist"             
## [91282] "tired"             "sleepy"            "hearts"           
## [91285] "gloomy"            "dying"             "day"              
## [91288] "well"              "must"              "pass"             
## [91291] "another"           "night"             "said"             
## [91294] "boromir"           "need"              "sleep"            
## [91297] "even"              "aragorn"           "mind"             
## [91300] "pass"              "gates"             "argonath"         
## [91303] "night"             "tired"             "except"           
## [91306] "doubt"             "sturdy"            "dwarf"            
## [91309] "gimli"             "made"              "reply"            
## [91312] "nodding"           "sat"               "let"              
## [91315] "us"                "rest"              "much"             
## [91318] "can"               "now"               "said"             
## [91321] "aragorn"           "tomorrow"          "must"             
## [91324] "journey"           "day"               "unless"           
## [91327] "weather"           "changes"           "cheats"           
## [91330] "us"                "shall"             "good"             
## [91333] "chance"            "slipping"          "unseen"           
## [91336] "eyes"              "eastern"           "shore"            
## [91339] "tonight"           "two"               "must"             
## [91342] "watch"             "together"          "turns"            
## [91345] "three"             "hours"             "one"              
## [91348] "guard"             "nothing"           "happened"         
## [91351] "night"             "worse"             "brief"            
## [91354] "drizzle"           "rain"              "hour"             
## [91357] "dawn"              "soon"              "fully"            
## [91360] "light"             "started"           "already"          
## [91363] "fog"               "thinning"          "kept"             
## [91366] "close"             "western"           "side"             
## [91369] "see"               "dim"               "shapes"           
## [91372] "low"               "cliffs"            "rising"           
## [91375] "ever"              "higher"            "shadowy"          
## [91378] "walls"             "feet"              "hurrying"         
## [91381] "river"             "mid"               "morning"          
## [91384] "clouds"            "drew"              "lower"            
## [91387] "began"             "rain"              "heavily"          
## [91390] "drew"              "skin"              "covers"           
## [91393] "boats"             "prevent"           "flooded"          
## [91396] "drifted"           "little"            "seen"             
## [91399] "grey"              "falling"           "curtains"         
## [91402] "rain"              "however"           "last"             
## [91405] "long"              "slowly"            "sky"              
## [91408] "grew"              "lighter"           "suddenly"         
## [91411] "clouds"            "broke"             "draggled"         
## [91414] "fringes"           "trailed"           "away"             
## [91417] "northward"         "river"             "fogs"             
## [91420] "mists"             "gone"              "travellers"       
## [91423] "lay"               "wide"              "ravine"           
## [91426] "great"             "rocky"             "sides"            
## [91429] "clung"             "upon"              "shelves"          
## [91432] "narrow"            "crevices"          "thrawn"           
## [91435] "trees"             "channel"           "grew"             
## [91438] "narrower"          "river"             "swifter"          
## [91441] "now"               "speeding"          "along"            
## [91444] "little"            "hope"              "stopping"         
## [91447] "turning"           "whatever"          "might"            
## [91450] "meet"              "ahead"             "lane"             
## [91453] "pale"              "blue"              "sky"              
## [91456] "around"            "dark"              "overshadowed"     
## [91459] "river"             "black"             "shutting"         
## [91462] "sun"               "hills"             "emyn"             
## [91465] "muil"              "opening"           "seen"             
## [91468] "frodo"             "peering"           "forward"          
## [91471] "saw"               "distance"          "two"              
## [91474] "great"             "rocks"             "approaching"      
## [91477] "like"              "great"             "pinnacles"        
## [91480] "pillars"           "stone"             "seemed"           
## [91483] "tall"              "sheer"             "ominous"          
## [91486] "stood"             "upon"              "either"           
## [91489] "side"              "stream"            "narrow"           
## [91492] "gap"               "appeared"          "river"            
## [91495] "swept"             "boats"             "towards"          
## [91498] "behold"            "argonath"          "pillars"          
## [91501] "kings"             "cried"             "aragorn"          
## [91504] "shall"             "pass"              "soon"             
## [91507] "keep"              "boats"             "line"             
## [91510] "far"               "apart"             "can"              
## [91513] "hold"              "middle"            "stream"           
## [91516] "frodo"             "borne"             "towards"          
## [91519] "great"             "pillars"           "rose"             
## [91522] "like"              "towers"            "meet"             
## [91525] "giants"            "seemed"            "vast"             
## [91528] "grey"              "figures"           "silent"           
## [91531] "threatening"       "saw"               "indeed"           
## [91534] "shaped"            "fashioned"         "craft"            
## [91537] "power"             "old"               "wrought"          
## [91540] "upon"              "still"             "preserved"        
## [91543] "suns"              "rains"             "forgotten"        
## [91546] "years"             "mighty"            "likenesses"       
## [91549] "hewn"              "upon"              "great"            
## [91552] "pedestals"         "founded"           "deep"             
## [91555] "waters"            "stood"             "two"              
## [91558] "great"             "kings"             "stone"            
## [91561] "still"             "blurred"           "eyes"             
## [91564] "crannied"          "brows"             "frowned"          
## [91567] "upon"              "north"             "left"             
## [91570] "hand"              "raised"            "palm"             
## [91573] "outwards"          "gesture"           "warning"          
## [91576] "right"             "hand"              "axe"              
## [91579] "upon"              "head"              "crumbling"        
## [91582] "helm"              "crown"             "great"            
## [91585] "power"             "majesty"           "still"            
## [91588] "wore"              "silent"            "wardens"          
## [91591] "long"              "vanished"          "kingdom"          
## [91594] "awe"               "fear"              "fell"             
## [91597] "upon"              "frodo"             "cowered"          
## [91600] "shutting"          "eyes"              "daring"           
## [91603] "look"              "boat"              "drew"             
## [91606] "near"              "even"              "boromir"          
## [91609] "bowed"             "head"              "boats"            
## [91612] "whirled"           "frail"             "fleeting"         
## [91615] "little"            "leaves"            "enduring"         
## [91618] "shadow"            "sentinels"         "númenor"          
## [91621] "passed"            "dark"              "chasm"            
## [91624] "gates"             "sheer"             "rose"             
## [91627] "dreadful"          "cliffs"            "unguessed"        
## [91630] "heights"           "either"            "side"             
## [91633] "far"               "dim"               "sky"              
## [91636] "black"             "waters"            "roared"           
## [91639] "echoed"            "wind"              "screamed"         
## [91642] "frodo"             "crouching"         "knees"            
## [91645] "heard"             "sam"               "front"            
## [91648] "muttering"         "groaning"          "place"            
## [91651] "horrible"          "place"             "just"             
## [91654] "let"               "get"               "boat"             
## [91657] "ill"               "never"             "wet"              
## [91660] "toes"              "puddle"            "let"              
## [91663] "alone"             "river"             "fear"             
## [91666] "said"              "strange"           "voice"            
## [91669] "behind"            "frodo"             "turned"           
## [91672] "saw"               "strider"           "yet"              
## [91675] "strider"           "weatherworn"       "ranger"           
## [91678] "longer"            "stern"             "sat"              
## [91681] "aragorn"           "son"               "arathorn"         
## [91684] "proud"             "erect"             "guiding"          
## [91687] "boat"              "skilful"           "strokes"          
## [91690] "hood"              "cast"              "back"             
## [91693] "dark"              "hair"              "blowing"          
## [91696] "wind"              "light"             "eyes"             
## [91699] "king"              "returning"         "exile"            
## [91702] "land"              "fear"              "said"             
## [91705] "long"              "desired"           "look"             
## [91708] "upon"              "likenesses"        "isildur"          
## [91711] "anárion"           "sires"             "old"              
## [91714] "shadow"            "elessar"           "elfstone"         
## [91717] "son"               "arathorn"          "house"            
## [91720] "valandil"          "isildurs"          "son"              
## [91723] "heir"              "elendil"           "nought"           
## [91726] "dread"             "light"             "eyes"             
## [91729] "faded"             "spoke"             "gandalf"          
## [91732] "heart"             "yearns"            "minas"            
## [91735] "anor"              "walls"             "city"             
## [91738] "whither"           "now"               "shall"            
## [91741] "go"                "chasm"             "long"             
## [91744] "dark"              "filled"            "noise"            
## [91747] "wind"              "rushing"           "water"            
## [91750] "echoing"           "stone"             "bent"             
## [91753] "somewhat"          "towards"           "west"             
## [91756] "first"             "dark"              "ahead"            
## [91759] "soon"              "frodo"             "saw"              
## [91762] "tall"              "gap"               "light"            
## [91765] "ever"              "growing"           "swiftly"          
## [91768] "drew"              "near"              "suddenly"         
## [91771] "boats"             "shot"              "wide"             
## [91774] "clear"             "light"             "sun"              
## [91777] "already"           "long"              "fallen"           
## [91780] "noon"              "shining"           "windy"            
## [91783] "sky"               "pent"              "waters"           
## [91786] "spread"            "long"              "oval"             
## [91789] "lake"              "pale"              "nen"              
## [91792] "hithoel"           "fenced"            "steep"            
## [91795] "grey"              "hills"             "whose"            
## [91798] "sides"             "clad"              "trees"            
## [91801] "heads"             "bare"              "cold"             
## [91804] "gleaming"          "sunlight"          "far"              
## [91807] "southern"          "end"               "rose"             
## [91810] "three"             "peaks"             "midmost"          
## [91813] "stood"             "somewhat"          "forward"          
## [91816] "others"            "sundered"          "island"           
## [91819] "waters"            "flowing"           "river"            
## [91822] "flung"             "pale"              "shimmering"       
## [91825] "arms"              "distant"           "deep"             
## [91828] "came"              "wind"              "roaring"          
## [91831] "sound"             "like"              "roll"             
## [91834] "thunder"           "heard"             "far"              
## [91837] "away"              "behold"            "tol"              
## [91840] "brandir"           "said"              "aragorn"          
## [91843] "pointing"          "south"             "tall"             
## [91846] "peak"              "upon"              "left"             
## [91849] "stands"            "amon"              "lhaw"             
## [91852] "upon"              "right"             "amon"             
## [91855] "hen"               "hills"             "hearing"          
## [91858] "sight"             "days"              "great"            
## [91861] "kings"             "high"              "seats"            
## [91864] "upon"              "watch"             "kept"             
## [91867] "said"              "foot"              "man"              
## [91870] "beast"             "ever"              "set"              
## [91873] "upon"              "tol"               "brandir"          
## [91876] "ere"               "shade"             "night"            
## [91879] "falls"             "shall"             "come"             
## [91882] "hear"              "endless"           "voice"            
## [91885] "rauros"            "calling"           "company"          
## [91888] "rested"            "now"               "drifting"         
## [91891] "south"             "current"           "flowed"           
## [91894] "middle"            "lake"              "ate"              
## [91897] "food"              "took"              "paddles"          
## [91900] "hastened"          "way"               "sides"            
## [91903] "westward"          "hills"             "fell"             
## [91906] "shadow"            "sun"               "grew"             
## [91909] "round"             "red"               "misty"            
## [91912] "star"              "peered"            "three"            
## [91915] "peaks"             "loomed"            "darkling"         
## [91918] "twilight"          "rauros"            "roaring"          
## [91921] "great"             "voice"             "already"          
## [91924] "night"             "laid"              "flowing"          
## [91927] "waters"            "travellers"        "came"             
## [91930] "last"              "shadow"            "hills"            
## [91933] "tenth"             "day"               "journey"          
## [91936] "wilderland"        "behind"            "go"               
## [91939] "without"           "choice"            "east"             
## [91942] "way"               "west"              "last"             
## [91945] "stage"             "quest"             "chapter"          
## [91948] "breaking"          "fellowship"        "aragorn"          
## [91951] "led"               "right"             "arm"              
## [91954] "river"             "upon"              "western"          
## [91957] "side"              "shadow"            "tol"              
## [91960] "brandir"           "green"             "lawn"             
## [91963] "ran"               "water"             "feet"             
## [91966] "amon"              "hen"               "behind"           
## [91969] "rose"              "first"             "gentle"           
## [91972] "slopes"            "hill"              "clad"             
## [91975] "trees"             "trees"             "marched"          
## [91978] "away"              "westward"          "along"            
## [91981] "curving"           "shores"            "lake"             
## [91984] "little"            "spring"            "fell"             
## [91987] "tumbling"          "fed"               "grass"            
## [91990] "will"              "rest"              "tonight"          
## [91993] "said"              "aragorn"           "lawn"             
## [91996] "parth"             "galen"             "fair"             
## [91999] "place"             "summer"            "days"             
## [92002] "old"               "let"               "us"               
## [92005] "hope"              "evil"              "yet"              
## [92008] "come"              "drew"              "boats"            
## [92011] "green"             "banks"             "beside"           
## [92014] "made"              "camp"              "set"              
## [92017] "watch"             "sight"             "sound"            
## [92020] "enemies"           "gollum"            "contrived"        
## [92023] "follow"            "remained"          "unseen"           
## [92026] "unheard"           "nonetheless"       "night"            
## [92029] "wore"              "aragorn"           "grew"             
## [92032] "uneasy"            "tossing"           "often"            
## [92035] "sleep"             "waking"            "small"            
## [92038] "hours"             "got"               "came"             
## [92041] "frodo"             "whose"             "turn"             
## [92044] "watch"             "waking"            "asked"            
## [92047] "frodo"             "watch"             "know"             
## [92050] "answered"          "aragorn"           "shadow"           
## [92053] "threat"            "growing"           "sleep"            
## [92056] "well"              "draw"              "sword"            
## [92059] "said"              "frodo"             "enemies"          
## [92062] "hand"              "let"               "us"               
## [92065] "see"               "sting"             "may"              
## [92068] "show"              "answered"          "aragorn"          
## [92071] "frodo"             "drew"              "elf"              
## [92074] "blade"             "sheath"            "dismay"           
## [92077] "edges"             "gleamed"           "dimly"            
## [92080] "night"             "orcs"              "said"             
## [92083] "near"              "yet"               "near"             
## [92086] "seems"             "feared"            "much"             
## [92089] "said"              "aragorn"           "maybe"            
## [92092] "side"              "river"             "light"            
## [92095] "sting"             "faint"             "may"              
## [92098] "point"             "spies"             "mordor"           
## [92101] "roaming"           "slopes"            "amon"             
## [92104] "lhaw"              "never"             "heard"            
## [92107] "orcs"              "upon"              "amon"             
## [92110] "hen"               "yet"               "knows"            
## [92113] "may"               "happen"            "evil"             
## [92116] "days"              "now"               "minas"            
## [92119] "tirith"            "longer"            "holds"            
## [92122] "secure"            "passages"          "anduin"           
## [92125] "must"              "go"                "warily"           
## [92128] "tomorrow"          "day"               "came"             
## [92131] "like"              "fire"              "smoke"            
## [92134] "low"               "east"              "black"            
## [92137] "bars"              "cloud"             "like"             
## [92140] "fumes"             "great"             "burning"          
## [92143] "rising"            "sun"               "lit"              
## [92146] "beneath"           "flames"            "murky"            
## [92149] "red"               "soon"              "climbed"          
## [92152] "clear"             "sky"               "summit"           
## [92155] "tol"               "brandir"           "tipped"           
## [92158] "gold"              "frodo"             "looked"           
## [92161] "eastward"          "gazed"             "tall"             
## [92164] "island"            "sides"             "sprang"           
## [92167] "sheer"             "running"           "water"            
## [92170] "high"              "tall"              "cliffs"           
## [92173] "steep"             "slopes"            "upon"             
## [92176] "trees"             "climbed"           "mounting"         
## [92179] "one"               "head"              "another"          
## [92182] "grey"              "faces"             "inaccessible"     
## [92185] "rock"              "crowned"           "great"            
## [92188] "spire"             "stone"             "many"             
## [92191] "birds"             "circling"          "sign"             
## [92194] "living"            "things"            "seen"             
## [92197] "eaten"             "aragorn"           "called"           
## [92200] "company"           "together"          "day"              
## [92203] "come"              "last"              "said"             
## [92206] "day"               "choice"            "long"             
## [92209] "delayed"           "shall"             "now"              
## [92212] "become"            "company"           "travelled"        
## [92215] "far"               "fellowship"        "shall"            
## [92218] "turn"              "west"              "boromir"          
## [92221] "go"                "wars"              "gondor"           
## [92224] "turn"              "east"              "fear"             
## [92227] "shadow"            "shall"             "break"            
## [92230] "fellowship"        "go"                "way"              
## [92233] "may"               "choose"            "whatever"         
## [92236] "must"              "done"              "soon"             
## [92239] "long"              "halt"              "enemy"            
## [92242] "eastern"           "shore"             "know"             
## [92245] "fear"              "orcs"              "may"              
## [92248] "already"           "side"              "water"            
## [92251] "long"              "silence"           "one"              
## [92254] "spoke"             "moved"             "well"             
## [92257] "frodo"             "said"              "aragorn"          
## [92260] "last"              "fear"              "burden"           
## [92263] "laid"              "upon"              "bearer"           
## [92266] "appointed"         "council"           "way"              
## [92269] "alone"             "can"               "choose"           
## [92272] "matter"            "advise"            "gandalf"          
## [92275] "though"            "tried"             "bear"             
## [92278] "part"              "know"              "design"           
## [92281] "hope"              "hour"              "indeed"           
## [92284] "likely"            "seems"             "now"              
## [92287] "choice"            "still"             "wait"             
## [92290] "fate"              "frodo"             "answer"           
## [92293] "spoke"             "slowly"            "know"             
## [92296] "haste"             "needed"            "yet"              
## [92299] "choose"            "burden"            "heavy"            
## [92302] "give"              "hour"              "longer"           
## [92305] "will"              "speak"             "let"              
## [92308] "alone"             "aragorn"           "looked"           
## [92311] "kindly"            "pity"              "well"             
## [92314] "frodo"             "son"               "drogo"            
## [92317] "said"              "shall"             "hour"             
## [92320] "shall"             "alone"             "will"             
## [92323] "stay"              "stray"             "far"              
## [92326] "call"              "frodo"             "sat"              
## [92329] "moment"            "head"              "bowed"            
## [92332] "sam"               "watching"          "master"           
## [92335] "great"             "concern"           "shook"            
## [92338] "head"              "muttered"          "plain"            
## [92341] "pikestaff"         "good"              "sam"              
## [92344] "gamgee"            "putting"           "spoke"            
## [92347] "just"              "now"               "presently"        
## [92350] "frodo"             "got"               "walked"           
## [92353] "away"              "sam"               "saw"              
## [92356] "others"            "restrained"        "stare"            
## [92359] "eyes"              "boromir"           "followed"         
## [92362] "frodo"             "intently"          "passed"           
## [92365] "sight"             "trees"             "foot"             
## [92368] "amon"              "hen"               "wandering"        
## [92371] "aimlessly"         "first"             "wood"             
## [92374] "frodo"             "found"             "feet"             
## [92377] "leading"           "towards"           "slopes"           
## [92380] "hill"              "came"              "path"             
## [92383] "dwindling"         "ruins"             "road"             
## [92386] "long"              "ago"               "steep"            
## [92389] "places"            "stairs"            "stone"            
## [92392] "hewn"              "now"               "cracked"          
## [92395] "worn"              "split"             "roots"            
## [92398] "trees"             "climbed"           "caring"           
## [92401] "way"               "went"              "came"             
## [92404] "grassy"            "place"             "rowan"            
## [92407] "trees"             "grew"              "midst"            
## [92410] "wide"              "flat"              "stone"            
## [92413] "little"            "upland"            "lawn"             
## [92416] "open"              "upon"              "east"             
## [92419] "filled"            "now"               "early"            
## [92422] "sunlight"          "frodo"             "halted"           
## [92425] "looked"            "river"             "far"              
## [92428] "tol"               "brandir"           "birds"            
## [92431] "wheeling"          "great"             "gulf"             
## [92434] "air"               "untrodden"         "isle"             
## [92437] "voice"             "rauros"            "mighty"           
## [92440] "roaring"           "mingled"           "deep"             
## [92443] "throbbing"         "boom"              "sat"              
## [92446] "upon"              "stone"             "cupped"           
## [92449] "chin"              "hands"             "staring"          
## [92452] "eastwards"         "seeing"            "little"           
## [92455] "eyes"              "happened"          "since"            
## [92458] "bilbo"             "left"              "shire"            
## [92461] "passing"           "mind"              "recalled"         
## [92464] "pondered"          "everything"        "remember"         
## [92467] "gandalfs"          "words"             "time"             
## [92470] "went"              "still"             "nearer"           
## [92473] "choice"            "suddenly"          "awoke"            
## [92476] "thoughts"          "strange"           "feeling"          
## [92479] "came"              "something"         "behind"           
## [92482] "unfriendly"        "eyes"              "upon"             
## [92485] "sprang"            "turned"            "saw"              
## [92488] "surprise"          "boromir"           "face"             
## [92491] "smiling"           "kind"              "afraid"           
## [92494] "frodo"             "said"              "coming"           
## [92497] "forward"           "aragorn"           "right"            
## [92500] "orcs"              "near"              "none"             
## [92503] "us"                "wander"            "alone"            
## [92506] "least"             "much"              "depends"          
## [92509] "heart"             "heavy"             "may"              
## [92512] "stay"              "now"               "talk"             
## [92515] "since"             "found"             "comfort"          
## [92518] "many"              "speech"            "becomes"          
## [92521] "debate"            "without"           "end"              
## [92524] "two"               "together"          "may"              
## [92527] "perhaps"           "find"              "wisdom"           
## [92530] "kind"              "answered"          "frodo"            
## [92533] "think"             "speech"            "will"             
## [92536] "help"              "know"              "afraid"           
## [92539] "boromir"           "afraid"            "boromir"          
## [92542] "stood"             "silent"            "rauros"           
## [92545] "roared"            "endlessly"         "wind"             
## [92548] "murmured"          "branches"          "trees"            
## [92551] "frodo"             "shivered"          "suddenly"         
## [92554] "boromir"           "came"              "sat"              
## [92557] "beside"            "sure"              "suffer"           
## [92560] "needlessly"        "said"              "wish"             
## [92563] "help"              "need"              "counsel"          
## [92566] "hard"              "choice"            "will"             
## [92569] "take"              "mine"              "think"            
## [92572] "know"              "already"           "counsel"          
## [92575] "give"              "boromir"           "said"             
## [92578] "frodo"             "seem"              "like"             
## [92581] "wisdom"            "warning"           "heart"            
## [92584] "warning"           "warning"           "said"             
## [92587] "boromir"           "sharply"           "delay"            
## [92590] "way"               "seems"             "easier"           
## [92593] "refusal"           "burden"            "laid"             
## [92596] "well"              "must"              "said"             
## [92599] "trust"             "strength"          "truth"            
## [92602] "men"               "yet"               "strength"         
## [92605] "long"              "protected"         "far"              
## [92608] "away"              "little"            "country"          
## [92611] "though"            "knew"              "doubt"            
## [92614] "valour"            "people"            "world"            
## [92617] "changing"          "walls"             "minas"            
## [92620] "tirith"            "may"               "strong"           
## [92623] "strong"            "enough"            "fail"             
## [92626] "shall"             "fall"              "battle"           
## [92629] "valiantly"         "yet"               "still"            
## [92632] "hope"              "will"              "fail"             
## [92635] "hope"              "ring"              "lasts"            
## [92638] "said"              "frodo"             "ah"               
## [92641] "ring"              "said"              "boromir"          
## [92644] "eyes"              "lighting"          "ring"             
## [92647] "strange"           "fate"              "suffer"           
## [92650] "much"              "fear"              "doubt"            
## [92653] "small"             "thing"             "small"            
## [92656] "thing"             "seen"              "instant"          
## [92659] "house"             "elrond"            "sight"            
## [92662] "frodo"             "looked"            "heart"            
## [92665] "went"              "suddenly"          "cold"             
## [92668] "caught"            "strange"           "gleam"            
## [92671] "boromirs"          "eyes"              "yet"              
## [92674] "face"              "still"             "kind"             
## [92677] "friendly"          "best"              "lie"              
## [92680] "hidden"            "answered"          "wish"             
## [92683] "care"              "said"              "boromir"          
## [92686] "yet"               "may"               "even"             
## [92689] "speak"             "seem"              "ever"             
## [92692] "think"             "power"             "hands"            
## [92695] "enemy"             "evil"              "uses"             
## [92698] "good"              "world"             "changing"         
## [92701] "say"               "minas"             "tirith"           
## [92704] "will"              "fall"              "ring"             
## [92707] "lasts"             "certainly"         "ring"             
## [92710] "enemy"             "us"                "council"          
## [92713] "answered"          "frodo"             "use"              
## [92716] "done"              "turns"             "evil"             
## [92719] "boromir"           "got"               "walked"           
## [92722] "impatiently"       "go"                "cried"            
## [92725] "gandalf"           "elrond"            "folk"             
## [92728] "taught"            "say"               "may"              
## [92731] "right"             "elves"             "half"             
## [92734] "elves"             "wizards"           "come"             
## [92737] "grief"             "perhaps"           "yet"              
## [92740] "often"             "doubt"             "wise"             
## [92743] "merely"            "timid"             "kind"             
## [92746] "true"              "hearted"           "men"              
## [92749] "will"              "corrupted"         "minas"            
## [92752] "tirith"            "staunch"           "long"             
## [92755] "years"             "trial"             "desire"           
## [92758] "power"             "wizard"            "lords"            
## [92761] "strength"          "defend"            "strength"         
## [92764] "just"              "cause"             "behold"           
## [92767] "need"              "chance"            "brings"           
## [92770] "light"             "ring"              "power"            
## [92773] "gift"              "say"               "gift"             
## [92776] "foes"              "mordor"            "mad"              
## [92779] "use"               "use"               "power"            
## [92782] "enemy"             "fearless"          "ruthless"         
## [92785] "alone"             "will"              "achieve"          
## [92788] "victory"           "warrior"           "hour"             
## [92791] "great"             "leader"            "aragorn"          
## [92794] "refuses"           "boromir"           "ring"             
## [92797] "give"              "power"             "command"          
## [92800] "drive"             "hosts"             "mordor"           
## [92803] "men"               "flock"             "banner"           
## [92806] "boromir"           "strode"            "speaking"         
## [92809] "ever"              "loudly"            "almost"           
## [92812] "seemed"            "forgotten"         "frodo"            
## [92815] "talk"              "dwelt"             "walls"            
## [92818] "weapons"           "mustering"         "men"              
## [92821] "drew"              "plans"             "great"            
## [92824] "alliances"         "glorious"          "victories"        
## [92827] "cast"              "mordor"            "became"           
## [92830] "mighty"            "king"              "benevolent"       
## [92833] "wise"              "suddenly"          "stopped"          
## [92836] "waved"             "arms"              "tell"             
## [92839] "us"                "throw"             "away"             
## [92842] "cried"             "say"               "destroy"          
## [92845] "might"             "well"              "reason"           
## [92848] "show"              "hope"              "plan"             
## [92851] "proposed"          "us"                "halfling"         
## [92854] "walk"              "blindly"           "mordor"           
## [92857] "offer"             "enemy"             "every"            
## [92860] "chance"            "recapturing"       "folly"            
## [92863] "surely"            "see"               "friend"           
## [92866] "said"              "turning"           "now"              
## [92869] "suddenly"          "frodo"             "say"              
## [92872] "afraid"            "boldest"           "pardon"           
## [92875] "really"            "good"              "sense"            
## [92878] "revolts"           "afraid"            "said"             
## [92881] "frodo"             "simply"            "afraid"           
## [92884] "glad"              "heard"             "speak"            
## [92887] "fully"             "mind"              "clearer"          
## [92890] "now"               "will"              "come"             
## [92893] "minas"             "tirith"            "cried"            
## [92896] "boromir"           "eyes"              "shining"          
## [92899] "face"              "eager"             "misunderstand"    
## [92902] "said"              "frodo"             "will"             
## [92905] "come"              "least"             "boromir"          
## [92908] "persisted"         "city"              "far"              
## [92911] "now"               "little"            "mordor"           
## [92914] "long"              "wilderness"        "need"             
## [92917] "news"              "enemy"             "make"             
## [92920] "move"              "come"              "frodo"            
## [92923] "said"              "need"              "rest"             
## [92926] "venture"           "go"                "must"             
## [92929] "laid"              "hand"              "hobbits"          
## [92932] "shoulder"          "friendly"          "fashion"          
## [92935] "frodo"             "felt"              "hand"             
## [92938] "trembling"         "suppressed"        "excitement"       
## [92941] "stepped"           "quickly"           "away"             
## [92944] "eyed"              "alarm"             "tall"             
## [92947] "man"               "nearly"            "twice"            
## [92950] "height"            "many"              "times"            
## [92953] "match"             "strength"          "unfriendly"       
## [92956] "said"              "boromir"           "true"             
## [92959] "man"               "neither"           "thief"            
## [92962] "tracker"           "need"              "ring"             
## [92965] "know"              "now"               "give"             
## [92968] "word"              "desire"            "keep"             
## [92971] "will"              "least"             "let"              
## [92974] "make"              "trial"             "plan"             
## [92977] "lend"              "ring"              "cried"            
## [92980] "frodo"             "council"           "laid"             
## [92983] "upon"              "bear"              "folly"            
## [92986] "enemy"             "will"              "defeat"           
## [92989] "us"                "cried"             "boromir"          
## [92992] "angers"            "fool"              "obstinate"        
## [92995] "fool"              "running"           "wilfully"         
## [92998] "death"             "ruining"           "cause"            
## [93001] "mortals"           "claim"             "ring"             
## [93004] "men"               "númenor"           "halflings"        
## [93007] "save"              "unhappy"           "chance"           
## [93010] "might"             "mine"              "mine"             
## [93013] "give"              "frodo"             "answer"           
## [93016] "moved"             "away"              "till"             
## [93019] "great"             "flat"              "stone"            
## [93022] "stood"             "come"              "come"             
## [93025] "friend"            "said"              "boromir"          
## [93028] "softer"            "voice"             "get"              
## [93031] "rid"               "free"              "doubt"            
## [93034] "fear"              "can"               "lay"              
## [93037] "blame"             "will"              "can"              
## [93040] "say"               "strong"            "took"             
## [93043] "force"             "strong"            "halfling"         
## [93046] "cried"             "suddenly"          "sprang"           
## [93049] "stone"             "leaped"            "frodo"            
## [93052] "fair"              "pleasant"          "face"             
## [93055] "hideously"         "changed"           "raging"           
## [93058] "fire"              "eyes"              "frodo"            
## [93061] "dodged"            "aside"             "put"              
## [93064] "stone"             "one"               "thing"            
## [93067] "trembling"         "pulled"            "ring"             
## [93070] "upon"              "chain"             "quickly"          
## [93073] "slipped"           "finger"            "even"             
## [93076] "boromir"           "sprang"            "man"              
## [93079] "gasped"            "stared"            "moment"           
## [93082] "amazed"            "ran"               "wildly"           
## [93085] "seeking"           "among"             "rocks"            
## [93088] "trees"             "miserable"         "trickster"        
## [93091] "shouted"           "let"               "get"              
## [93094] "hands"             "now"               "see"              
## [93097] "mind"              "will"              "take"             
## [93100] "ring"              "sauron"            "sell"             
## [93103] "us"                "waited"            "chance"           
## [93106] "leave"             "us"                "lurch"            
## [93109] "curse"             "halflings"         "death"            
## [93112] "darkness"          "catching"          "foot"             
## [93115] "stone"             "fell"              "sprawling"        
## [93118] "lay"               "upon"              "face"             
## [93121] "still"             "curse"             "struck"           
## [93124] "suddenly"          "wept"              "rose"             
## [93127] "passed"            "hand"              "eyes"             
## [93130] "dashing"           "away"              "tears"            
## [93133] "said"              "cried"             "done"             
## [93136] "frodo"             "frodo"             "called"           
## [93139] "come"              "back"              "madness"          
## [93142] "took"              "passed"            "come"             
## [93145] "back"              "answer"            "frodo"            
## [93148] "even"              "hear"              "cries"            
## [93151] "already"           "far"               "away"             
## [93154] "leaping"           "blindly"           "path"             
## [93157] "hill"              "top"               "terror"           
## [93160] "grief"             "shook"             "seeing"           
## [93163] "thought"           "mad"               "fierce"           
## [93166] "face"              "boromir"           "burning"          
## [93169] "eyes"              "soon"              "came"             
## [93172] "alone"             "summit"            "amon"             
## [93175] "hen"               "halted"            "gasping"          
## [93178] "breath"            "saw"               "mist"             
## [93181] "wide"              "flat"              "circle"           
## [93184] "paved"             "mighty"            "flags"            
## [93187] "surrounded"        "crumbling"         "battlement"       
## [93190] "middle"            "set"               "upon"             
## [93193] "four"              "carven"            "pillars"          
## [93196] "high"              "seat"              "reached"          
## [93199] "stair"             "many"              "steps"            
## [93202] "went"              "sat"               "upon"             
## [93205] "ancient"           "chair"             "feeling"          
## [93208] "like"              "lost"              "child"            
## [93211] "clambered"         "upon"              "throne"           
## [93214] "mountain"          "kings"             "first"            
## [93217] "see"               "little"            "seemed"           
## [93220] "world"             "mist"              "shadows"          
## [93223] "ring"              "upon"              "mist"             
## [93226] "gave"              "way"               "saw"              
## [93229] "many"              "visions"           "small"            
## [93232] "clear"             "eyes"              "upon"             
## [93235] "table"             "yet"               "remote"           
## [93238] "sound"             "bright"            "living"           
## [93241] "images"            "world"             "seemed"           
## [93244] "shrunk"            "fallen"            "silent"           
## [93247] "sitting"           "upon"              "seat"             
## [93250] "seeing"            "amon"              "hen"              
## [93253] "hill"              "eye"               "men"              
## [93256] "númenor"           "eastward"          "looked"           
## [93259] "wide"              "uncharted"         "lands"            
## [93262] "nameless"          "plains"            "forests"          
## [93265] "unexplored"        "northward"         "looked"           
## [93268] "great"             "river"             "lay"              
## [93271] "like"              "ribbon"            "beneath"          
## [93274] "misty"             "mountains"         "stood"            
## [93277] "small"             "hard"              "broken"           
## [93280] "teeth"             "westward"          "looked"           
## [93283] "saw"               "broad"             "pastures"         
## [93286] "rohan"             "orthanc"           "pinnacle"         
## [93289] "isengard"          "like"              "black"            
## [93292] "spike"             "southward"         "looked"           
## [93295] "feet"              "great"             "river"            
## [93298] "curled"            "like"              "toppling"         
## [93301] "wave"              "plunged"           "falls"            
## [93304] "rauros"            "foaming"           "pit"              
## [93307] "glimmering"        "rainbow"           "played"           
## [93310] "upon"              "fume"              "ethir"            
## [93313] "anduin"            "saw"               "mighty"           
## [93316] "delta"             "river"             "myriads"          
## [93319] "sea"               "birds"             "whirling"         
## [93322] "like"              "white"             "dust"             
## [93325] "sun"               "beneath"           "green"            
## [93328] "silver"            "sea"               "rippling"         
## [93331] "endless"           "lines"             "everywhere"       
## [93334] "looked"            "saw"               "signs"            
## [93337] "war"               "misty"             "mountains"        
## [93340] "crawling"          "like"              "anthills"         
## [93343] "orcs"              "issuing"           "thousand"         
## [93346] "holes"             "boughs"            "mirkwood"         
## [93349] "deadly"            "strife"            "elves"            
## [93352] "men"               "fell"              "beasts"           
## [93355] "land"              "beornings"         "aflame"           
## [93358] "cloud"             "moria"             "smoke"            
## [93361] "rose"              "borders"           "lórien"           
## [93364] "horsemen"          "galloping"         "grass"            
## [93367] "rohan"             "wolves"            "poured"           
## [93370] "isengard"          "havens"            "harad"            
## [93373] "ships"             "war"               "put"              
## [93376] "sea"               "east"              "men"              
## [93379] "moving"            "endlessly"         "swordsmen"        
## [93382] "spearmen"          "bowmen"            "upon"             
## [93385] "horses"            "chariots"          "chieftains"       
## [93388] "laden"             "wains"             "power"            
## [93391] "dark"              "lord"              "motion"           
## [93394] "turning"           "south"             "beheld"           
## [93397] "minas"             "tirith"            "far"              
## [93400] "away"              "seemed"            "beautiful"        
## [93403] "white"             "walled"            "many"             
## [93406] "towered"           "proud"             "fair"             
## [93409] "upon"              "mountain"          "seat"             
## [93412] "battlements"       "glittered"         "steel"            
## [93415] "turrets"           "bright"            "many"             
## [93418] "banners"           "hope"              "leaped"           
## [93421] "heart"             "minas"             "tirith"           
## [93424] "set"               "another"           "fortress"         
## [93427] "greater"           "strong"            "thither"          
## [93430] "eastward"          "unwilling"         "eye"              
## [93433] "drawn"             "passed"            "ruined"           
## [93436] "bridges"           "osgiliath"         "grinning"         
## [93439] "gates"             "minas"             "morgul"           
## [93442] "haunted"           "mountains"         "looked"           
## [93445] "upon"              "gorgoroth"         "valley"           
## [93448] "terror"            "land"              "mordor"           
## [93451] "darkness"          "lay"               "sun"              
## [93454] "fire"              "glowed"            "amid"             
## [93457] "smoke"             "mount"             "doom"             
## [93460] "burning"           "great"             "reek"             
## [93463] "rising"            "last"              "gaze"             
## [93466] "held"              "wall"              "upon"             
## [93469] "wall"              "battlement"        "upon"             
## [93472] "battlement"        "black"             "immeasurably"     
## [93475] "strong"            "mountain"          "iron"             
## [93478] "gate"              "steel"             "tower"            
## [93481] "adamant"           "saw"               "barad"            
## [93484] "dûr"               "fortress"          "sauron"           
## [93487] "hope"              "left"              "suddenly"         
## [93490] "felt"              "eye"               "eye"              
## [93493] "dark"              "tower"             "sleep"            
## [93496] "knew"              "become"            "aware"            
## [93499] "gaze"              "fierce"            "eager"            
## [93502] "will"              "leaped"            "towards"          
## [93505] "almost"            "like"              "finger"           
## [93508] "felt"              "searching"         "soon"             
## [93511] "nail"              "know"              "just"             
## [93514] "exactly"           "amon"              "lhaw"             
## [93517] "touched"           "glanced"           "upon"             
## [93520] "tol"               "brandir"           "threw"            
## [93523] "seat"              "crouching"         "covering"         
## [93526] "head"              "grey"              "hood"             
## [93529] "heard"             "crying"            "never"            
## [93532] "never"             "verily"            "come"             
## [93535] "come"              "tell"              "flash"            
## [93538] "point"             "power"             "came"             
## [93541] "mind"              "another"           "thought"          
## [93544] "take"              "take"              "fool"             
## [93547] "take"              "take"              "ring"             
## [93550] "two"               "powers"            "strove"           
## [93553] "moment"            "perfectly"         "balanced"         
## [93556] "piercing"          "points"            "writhed"          
## [93559] "tormented"         "suddenly"          "aware"            
## [93562] "frodo"             "neither"           "voice"            
## [93565] "eye"               "free"              "choose"           
## [93568] "one"               "remaining"         "instant"          
## [93571] "took"              "ring"              "finger"           
## [93574] "kneeling"          "clear"             "sunlight"         
## [93577] "high"              "seat"              "black"            
## [93580] "shadow"            "seemed"            "pass"             
## [93583] "like"              "arm"               "missed"           
## [93586] "amon"              "hen"               "groped"           
## [93589] "west"              "faded"             "sky"              
## [93592] "clean"             "blue"              "birds"            
## [93595] "sang"              "every"             "tree"             
## [93598] "frodo"             "rose"              "feet"             
## [93601] "great"             "weariness"         "will"             
## [93604] "firm"              "heart"             "lighter"          
## [93607] "spoke"             "aloud"             "will"             
## [93610] "now"               "must"              "said"             
## [93613] "least"             "plain"             "evil"             
## [93616] "ring"              "already"           "work"             
## [93619] "even"              "company"           "ring"             
## [93622] "must"              "leave"             "harm"             
## [93625] "will"              "go"                "alone"            
## [93628] "trust"             "can"               "trust"            
## [93631] "dear"              "poor"              "old"              
## [93634] "sam"               "merry"             "pippin"           
## [93637] "strider"           "heart"             "yearns"           
## [93640] "minas"             "tirith"            "will"             
## [93643] "needed"            "now"               "boromir"          
## [93646] "fallen"            "evil"              "will"             
## [93649] "go"                "alone"             "went"             
## [93652] "quickly"           "path"              "came"             
## [93655] "back"              "lawn"              "boromir"          
## [93658] "found"             "halted"            "listening"        
## [93661] "thought"           "hear"              "cries"            
## [93664] "calls"             "woods"             "near"             
## [93667] "shore"             "theyll"            "hunting"          
## [93670] "said"              "wonder"            "long"             
## [93673] "away"              "hours"             "think"            
## [93676] "hesitated"         "can"               "muttered"         
## [93679] "must"              "go"                "now"              
## [93682] "shall"             "never"             "go"               
## [93685] "shant"             "get"               "chance"           
## [93688] "hate"              "leaving"           "like"             
## [93691] "without"           "explanation"       "surely"           
## [93694] "will"              "understand"        "sam"              
## [93697] "will"              "else"              "can"              
## [93700] "slowly"            "drew"              "ring"             
## [93703] "put"               "vanished"          "passed"           
## [93706] "hill"              "less"              "rustle"           
## [93709] "wind"              "others"            "remained"         
## [93712] "long"              "river"             "side"             
## [93715] "time"              "silent"            "moving"           
## [93718] "restlessly"        "now"               "sitting"          
## [93721] "circle"            "talking"           "every"            
## [93724] "now"               "made"              "efforts"          
## [93727] "speak"             "things"            "long"             
## [93730] "road"              "many"              "adventures"       
## [93733] "questioned"        "aragorn"           "concerning"       
## [93736] "realm"             "gondor"            "ancient"          
## [93739] "history"           "remnants"          "great"            
## [93742] "works"             "still"             "seen"             
## [93745] "strange"           "border"            "land"             
## [93748] "emyn"              "muil"              "stone"            
## [93751] "kings"             "seats"             "lhaw"             
## [93754] "hen"               "great"             "stair"            
## [93757] "beside"            "falls"             "rauros"           
## [93760] "always"            "thoughts"          "words"            
## [93763] "strayed"           "back"              "frodo"            
## [93766] "ring"              "frodo"             "choose"           
## [93769] "hesitating"        "debating"          "course"           
## [93772] "desperate"         "think"             "said"             
## [93775] "aragorn"           "well"              "may"              
## [93778] "now"               "hopeless"          "ever"             
## [93781] "company"           "go"                "east"             
## [93784] "since"             "tracked"           "gollum"           
## [93787] "must"              "fear"              "secret"           
## [93790] "journey"           "already"           "betrayed"         
## [93793] "minas"             "tirith"            "nearer"           
## [93796] "fire"              "destruction"       "burden"           
## [93799] "may"               "remain"            "make"             
## [93802] "brave"             "stand"             "lord"             
## [93805] "denethor"          "men"               "hope"             
## [93808] "even"              "elrond"            "said"             
## [93811] "beyond"            "power"             "either"           
## [93814] "keep"              "burden"            "secret"           
## [93817] "hold"              "full"              "might"            
## [93820] "enemy"             "comes"             "take"             
## [93823] "way"               "us"                "choose"           
## [93826] "frodos"            "place"             "know"             
## [93829] "now"               "indeed"            "miss"             
## [93832] "gandalf"           "grievous"          "loss"             
## [93835] "said"              "legolas"           "yet"              
## [93838] "must"              "needs"             "make"             
## [93841] "minds"             "without"           "aid"              
## [93844] "decide"            "help"              "frodo"            
## [93847] "let"               "us"                "call"             
## [93850] "back"              "vote"              "vote"             
## [93853] "minas"             "tirith"            "said"             
## [93856] "gimli"             "course"            "sent"             
## [93859] "help"              "bearer"            "along"            
## [93862] "road"              "go"                "wished"           
## [93865] "none"              "us"                "oath"             
## [93868] "command"           "seek"              "mount"            
## [93871] "doom"              "hard"              "parting"          
## [93874] "lothlórien"        "yet"               "come"             
## [93877] "far"               "say"               "now"              
## [93880] "reached"           "last"              "choice"           
## [93883] "clear"             "leave"             "frodo"            
## [93886] "choose"            "minas"             "tirith"           
## [93889] "follow"            "will"              "go"               
## [93892] "said"              "legolas"           "faithless"        
## [93895] "now"               "say"               "farewell"         
## [93898] "indeed"            "betrayal"          "left"             
## [93901] "said"              "aragorn"           "goes"             
## [93904] "east"              "need"              "go"               
## [93907] "think"             "venture"           "desperate"        
## [93910] "much"              "eight"             "three"            
## [93913] "two"               "one"               "alone"            
## [93916] "let"               "choose"            "appoint"          
## [93919] "three"             "companions"        "sam"              
## [93922] "bear"              "otherwise"         "gimli"            
## [93925] "boromir"           "will"              "return"           
## [93928] "city"              "father"            "people"           
## [93931] "need"              "others"            "go"               
## [93934] "least"             "meriadoc"          "peregrin"         
## [93937] "legolas"           "willing"           "leave"            
## [93940] "us"                "wont"              "cried"            
## [93943] "merry"             "cant"              "leave"            
## [93946] "frodo"             "pippin"            "always"           
## [93949] "intended"          "go"                "wherever"         
## [93952] "went"              "still"             "realize"          
## [93955] "mean"              "seemed"            "different"        
## [93958] "far"               "away"              "shire"            
## [93961] "rivendell"         "mad"               "cruel"            
## [93964] "let"               "frodo"             "go"               
## [93967] "mordor"            "cant"              "stop"             
## [93970] "must"              "stop"              "said"             
## [93973] "pippin"            "worrying"          "sure"             
## [93976] "knows"             "shant"             "agree"            
## [93979] "going"             "east"              "doesnt"           
## [93982] "like"              "ask"               "anyone"           
## [93985] "go"                "poor"              "old"              
## [93988] "fellow"            "imagine"           "going"            
## [93991] "mordor"            "alone"             "pippin"           
## [93994] "shuddered"         "dear"              "silly"            
## [93997] "old"               "hobbit"            "know"             
## [94000] "hasnt"             "got"               "ask"              
## [94003] "know"              "cant"              "stop"             
## [94006] "shant"             "leave"             "begging"          
## [94009] "pardon"            "said"              "sam"              
## [94012] "dont"              "think"             "understand"       
## [94015] "master"            "isnt"              "hesitating"       
## [94018] "way"               "go"                "course"           
## [94021] "whats"             "good"              "minas"            
## [94024] "tirith"            "anyway"            "mean"             
## [94027] "begging"           "pardon"            "master"           
## [94030] "boromir"           "added"             "turned"           
## [94033] "discovered"        "boromir"           "first"            
## [94036] "sitting"           "silent"            "outside"          
## [94039] "circle"            "longer"            "now"              
## [94042] "wheres"            "got"               "cried"            
## [94045] "sam"               "looking"           "worried"          
## [94048] "hes"               "bit"               "queer"            
## [94051] "lately"            "mind"              "anyway"           
## [94054] "hes"               "business"          "hes"              
## [94057] "home"              "always"            "said"             
## [94060] "blame"             "mr"                "frodo"            
## [94063] "knows"             "hes"               "got"              
## [94066] "find"              "cracks"            "doom"             
## [94069] "can"               "hes"               "afraid"           
## [94072] "now"               "come"              "point"            
## [94075] "hes"               "just"              "plain"            
## [94078] "terrified"         "thats"             "trouble"          
## [94081] "course"            "hes"               "bit"              
## [94084] "schooling"         "speak"             "since"            
## [94087] "left"              "home"              "hed"              
## [94090] "terrified"         "hed"               "just"             
## [94093] "fling"             "ring"              "river"            
## [94096] "bolt"              "hes"               "still"            
## [94099] "frightened"        "start"             "isnt"             
## [94102] "worrying"          "us"                "either"           
## [94105] "whether"           "well"              "go"               
## [94108] "along"             "knows"             "mean"             
## [94111] "thats"             "another"           "thing"            
## [94114] "thats"             "bothering"         "screws"           
## [94117] "go"                "hell"              "want"             
## [94120] "go"                "alone"             "mark"             
## [94123] "words"             "going"             "trouble"          
## [94126] "comes"             "back"              "hell"             
## [94129] "screw"             "right"             "sure"             
## [94132] "names"             "baggins"           "believe"          
## [94135] "speak"             "wisely"            "us"               
## [94138] "sam"               "said"              "aragorn"          
## [94141] "shall"             "prove"             "right"            
## [94144] "stop"              "dont"              "let"              
## [94147] "go"                "cried"             "pippin"           
## [94150] "wonder"            "said"              "aragorn"          
## [94153] "bearer"            "fate"              "burden"           
## [94156] "think"             "part"              "drive"            
## [94159] "one"               "way"               "think"            
## [94162] "succeed"           "tried"             "powers"           
## [94165] "work"              "far"               "stronger"         
## [94168] "well"              "wish"              "frodo"            
## [94171] "screw"             "come"              "back"             
## [94174] "let"               "us"                "get"              
## [94177] "said"              "pippin"            "waiting"          
## [94180] "horrible"          "surely"            "time"             
## [94183] "yes"               "said"              "aragorn"          
## [94186] "hour"              "long"              "passed"           
## [94189] "morning"           "wearing"           "away"             
## [94192] "must"              "call"              "moment"           
## [94195] "boromir"           "reappeared"        "came"             
## [94198] "trees"             "walked"            "towards"          
## [94201] "without"           "speaking"          "face"             
## [94204] "looked"            "grim"              "sad"              
## [94207] "paused"            "counting"          "present"          
## [94210] "sat"               "aloof"             "eyes"             
## [94213] "ground"            "boromir"           "asked"            
## [94216] "aragorn"           "seen"              "frodo"            
## [94219] "boromir"           "hesitated"         "second"           
## [94222] "yes"               "answered"          "slowly"           
## [94225] "yes"               "found"             "way"              
## [94228] "hill"              "spoke"             "urged"            
## [94231] "come"              "minas"             "tirith"           
## [94234] "go"                "east"              "grew"             
## [94237] "angry"             "left"              "vanished"         
## [94240] "never"             "seen"              "thing"            
## [94243] "happen"            "though"            "heard"            
## [94246] "tales"             "must"              "put"              
## [94249] "ring"              "find"              "thought"          
## [94252] "return"            "say"               "said"             
## [94255] "aragorn"           "looking"           "hard"             
## [94258] "kindly"            "boromir"           "yes"              
## [94261] "answered"          "will"              "say"              
## [94264] "yet"               "bad"               "cried"            
## [94267] "sam"               "jumping"           "dont"             
## [94270] "know"              "man"               "mr"               
## [94273] "frodo"             "put"               "thing"            
## [94276] "didnt"             "goodness"          "knows"            
## [94279] "may"               "happened"          "wouldnt"          
## [94282] "keep"              "said"              "merry"            
## [94285] "escaped"           "unwelcome"         "visitor"          
## [94288] "like"              "bilbo"             "used"             
## [94291] "go"                "cried"             "pippin"           
## [94294] "hes"               "away"              "ages"             
## [94297] "now"               "long"              "since"            
## [94300] "saw"               "frodo"             "last"             
## [94303] "boromir"           "asked"             "aragorn"          
## [94306] "half"              "hour"              "maybe"            
## [94309] "answered"          "might"             "hour"             
## [94312] "wandered"          "time"              "since"            
## [94315] "know"              "know"              "put"              
## [94318] "head"              "hands"             "sat"              
## [94321] "bowed"             "grief"             "hour"             
## [94324] "since"             "vanished"          "shouted"          
## [94327] "sam"               "must"              "try"              
## [94330] "find"              "come"              "wait"             
## [94333] "moment"            "cried"             "aragorn"          
## [94336] "must"              "divide"            "pairs"            
## [94339] "arrange"           "hold"              "wait"             
## [94342] "good"              "took"              "notice"           
## [94345] "sam"               "dashed"            "first"            
## [94348] "merry"             "pippin"            "followed"         
## [94351] "already"           "disappearing"      "westward"         
## [94354] "trees"             "shore"             "shouting"         
## [94357] "frodo"             "frodoin"           "clear"            
## [94360] "high"              "hobbit"            "voices"           
## [94363] "legolas"           "gimli"             "running"          
## [94366] "sudden"            "panic"             "madness"          
## [94369] "seemed"            "fallen"            "company"          
## [94372] "shall"             "scattered"         "lost"             
## [94375] "groaned"           "aragorn"           "boromir"          
## [94378] "know"              "part"              "played"           
## [94381] "mischief"          "help"              "now"              
## [94384] "go"                "two"               "young"            
## [94387] "hobbits"           "guard"             "least"            
## [94390] "even"              "find"              "frodo"            
## [94393] "come"              "back"              "spot"             
## [94396] "find"              "traces"            "shall"            
## [94399] "return"            "soon"              "aragorn"          
## [94402] "sprang"            "swiftly"           "away"             
## [94405] "went"              "pursuit"           "sam"              
## [94408] "just"              "reached"           "little"           
## [94411] "lawn"              "among"             "rowans"           
## [94414] "overtook"          "toiling"           "uphill"           
## [94417] "panting"           "calling"           "frodo"            
## [94420] "come"              "sam"               "said"             
## [94423] "none"              "us"                "alone"            
## [94426] "mischief"          "feel"              "going"            
## [94429] "top"               "seat"              "amon"             
## [94432] "hen"               "see"               "may"              
## [94435] "seen"              "look"              "heart"            
## [94438] "guessed"           "frodo"             "went"             
## [94441] "way"               "follow"            "keep"             
## [94444] "eyes"              "open"              "sped"             
## [94447] "path"              "sam"               "best"             
## [94450] "keep"              "strider"           "ranger"           
## [94453] "soon"              "fell"              "behind"           
## [94456] "gone"              "far"               "aragorn"          
## [94459] "sight"             "ahead"             "sam"              
## [94462] "stopped"           "puffed"            "suddenly"         
## [94465] "clapped"           "hand"              "head"             
## [94468] "whoa"              "sam"               "gamgee"           
## [94471] "said"              "aloud"             "legs"             
## [94474] "short"             "use"               "head"             
## [94477] "let"               "see"               "now"              
## [94480] "boromir"           "isnt"              "lying"            
## [94483] "thats"             "way"               "hasnt"            
## [94486] "told"              "us"                "everything"       
## [94489] "something"         "scared"            "mr"               
## [94492] "frodo"             "badly"             "screwed"          
## [94495] "point"             "sudden"            "made"             
## [94498] "mind"              "last"              "go"               
## [94501] "east"              "without"           "sam"              
## [94504] "yes"               "without"           "even"             
## [94507] "sam"               "thats"             "hard"             
## [94510] "cruel"             "hard"              "sam"              
## [94513] "passed"            "hand"              "eyes"             
## [94516] "brushing"          "away"              "tears"            
## [94519] "steady"            "gamgee"            "said"             
## [94522] "think"             "can"               "cant"             
## [94525] "fly"               "across"            "rivers"           
## [94528] "cant"              "jump"              "waterfalls"       
## [94531] "hes"               "got"               "gear"             
## [94534] "hes"               "got"               "get"              
## [94537] "back"              "boats"             "back"             
## [94540] "boats"             "back"              "boats"            
## [94543] "sam"               "like"              "lightning"        
## [94546] "sam"               "turned"            "bolted"           
## [94549] "back"              "path"              "fell"             
## [94552] "cut"               "knees"             "got"              
## [94555] "ran"               "came"              "edge"             
## [94558] "lawn"              "parth"             "galen"            
## [94561] "shore"             "boats"             "drawn"            
## [94564] "water"             "one"               "seemed"           
## [94567] "cries"             "woods"             "behind"           
## [94570] "heed"              "stood"             "gazing"           
## [94573] "moment"            "stock"             "still"            
## [94576] "gaping"            "boat"              "sliding"          
## [94579] "bank"              "shout"             "sam"              
## [94582] "raced"             "across"            "grass"            
## [94585] "boat"              "slipped"           "water"            
## [94588] "coming"            "mr"                "frodo"            
## [94591] "coming"            "called"            "sam"              
## [94594] "flung"             "bank"              "clutching"        
## [94597] "departing"         "boat"              "missed"           
## [94600] "yard"              "cry"               "splash"           
## [94603] "fell"              "face"              "downward"         
## [94606] "deep"              "swift"             "water"            
## [94609] "gurgling"          "went"              "river"            
## [94612] "closed"            "curly"             "head"             
## [94615] "exclamation"       "dismay"            "came"             
## [94618] "empty"             "boat"              "paddle"           
## [94621] "swirled"           "boat"              "put"              
## [94624] "frodo"             "just"              "time"             
## [94627] "grasp"             "sam"               "hair"             
## [94630] "came"              "bubbling"          "struggling"       
## [94633] "fear"              "staring"           "round"            
## [94636] "brown"             "eyes"              "come"             
## [94639] "sam"               "lad"               "said"             
## [94642] "frodo"             "now"               "take"             
## [94645] "hand"              "save"              "mr"               
## [94648] "frodo"             "gasped"            "sam"              
## [94651] "im"                "drownded"          "cant"             
## [94654] "see"               "hand"              "dont"             
## [94657] "pinch"             "lad"               "wont"             
## [94660] "let"               "go"                "tread"            
## [94663] "water"             "dont"              "flounder"         
## [94666] "youll"             "upset"             "boat"             
## [94669] "now"               "get"               "hold"             
## [94672] "side"              "let"               "use"              
## [94675] "paddle"            "strokes"           "frodo"            
## [94678] "brought"           "boat"              "back"             
## [94681] "bank"              "sam"               "able"             
## [94684] "scramble"          "wet"               "water"            
## [94687] "rat"               "frodo"             "took"             
## [94690] "ring"              "stepped"           "ashore"           
## [94693] "confounded"        "nuisances"         "worst"            
## [94696] "sam"               "said"              "oh"               
## [94699] "mr"                "frodo"             "thats"            
## [94702] "hard"              "said"              "sam"              
## [94705] "shivering"         "thats"             "hard"             
## [94708] "trying"            "go"                "without"          
## [94711] "hadnt"             "guessed"           "right"            
## [94714] "now"               "safely"            "way"              
## [94717] "safely"            "said"              "sam"              
## [94720] "alone"             "without"           "help"             
## [94723] "couldnt"           "borne"             "itd"              
## [94726] "death"             "death"             "come"             
## [94729] "sam"               "said"              "frodo"            
## [94732] "borne"             "certain"           "left"             
## [94735] "behind"            "said"              "sam"              
## [94738] "going"             "mordor"            "know"             
## [94741] "well"              "enough"            "mr"               
## [94744] "frodo"             "course"            "im"               
## [94747] "coming"            "now"               "sam"              
## [94750] "said"              "frodo"             "dont"             
## [94753] "hinder"            "others"            "will"             
## [94756] "coming"            "back"              "minute"           
## [94759] "catch"             "shall"             "argue"            
## [94762] "explain"           "shall"             "never"            
## [94765] "heart"             "chance"            "get"              
## [94768] "must"              "go"                "way"              
## [94771] "course"            "answered"          "sam"              
## [94774] "alone"             "im"                "coming"           
## [94777] "neither"           "us"                "isnt"             
## [94780] "going"             "ill"               "knock"            
## [94783] "holes"             "boats"             "first"            
## [94786] "frodo"             "actually"          "laughed"          
## [94789] "sudden"            "warmth"            "gladness"         
## [94792] "touched"           "heart"             "leave"            
## [94795] "one"               "said"              "well"             
## [94798] "need"              "cant"              "come"             
## [94801] "like"              "without"           "gear"             
## [94804] "food"              "anything"          "just"             
## [94807] "hold"              "moment"            "ill"              
## [94810] "get"               "stuff"             "cried"            
## [94813] "sam"               "eagerly"           "ready"            
## [94816] "thought"           "today"             "rushed"           
## [94819] "camping"           "place"             "fished"           
## [94822] "pack"              "pile"              "frodo"            
## [94825] "laid"              "emptied"           "boat"             
## [94828] "companions"        "goods"             "grabbed"          
## [94831] "spare"             "blanket"           "extra"            
## [94834] "packages"          "food"              "ran"              
## [94837] "back"              "plan"              "spoilt"           
## [94840] "said"              "frodo"             "good"             
## [94843] "trying"            "escape"            "im"               
## [94846] "glad"              "sam"               "tell"             
## [94849] "glad"              "come"              "along"            
## [94852] "plain"             "meant"             "go"               
## [94855] "together"          "will"              "go"               
## [94858] "may"               "others"            "find"             
## [94861] "safe"              "road"              "strider"          
## [94864] "will"              "look"              "dont"             
## [94867] "suppose"           "shall"             "see"              
## [94870] "yet"               "may"               "mr"               
## [94873] "frodo"             "may"               "said"             
## [94876] "sam"               "frodo"             "sam"              
## [94879] "set"               "last"              "stage"            
## [94882] "quest"             "together"          "frodo"            
## [94885] "paddled"           "away"              "shore"            
## [94888] "river"             "bore"              "swiftly"          
## [94891] "away"              "western"           "arm"              
## [94894] "past"              "frowning"          "cliffs"           
## [94897] "tol"               "brandir"           "roar"             
## [94900] "great"             "falls"             "drew"             
## [94903] "nearer"            "even"              "help"             
## [94906] "sam"               "give"              "hard"             
## [94909] "work"              "pass"              "across"           
## [94912] "current"           "southward"         "end"              
## [94915] "island"            "drive"             "boat"             
## [94918] "eastward"          "towards"           "far"              
## [94921] "shore"             "length"            "came"             
## [94924] "land"              "upon"              "southern"         
## [94927] "slopes"            "amon"              "lhaw"             
## [94930] "found"             "shelving"          "shore"            
## [94933] "drew"              "boat"              "high"             
## [94936] "water"             "hid"               "well"             
## [94939] "behind"            "great"             "boulder"          
## [94942] "shouldering"       "burdens"           "set"              
## [94945] "seeking"           "path"              "bring"            
## [94948] "grey"              "hills"             "emyn"             
## [94951] "muil"              "land"              "shadow"           
## [94954] "ends"              "first"             "part"             
## [94957] "history"           "war"               "ring"             
## [94960] "second"            "part"              "called"           
## [94963] "two"               "towers"            "since"            
## [94966] "events"            "recounted"         "dominated"        
## [94969] "orthanc"           "citadel"           "saruman"          
## [94972] "fortress"          "minas"             "morgul"           
## [94975] "guards"            "secret"            "entrance"         
## [94978] "mordor"            "tells"             "deeds"            
## [94981] "perils"            "members"           "now"              
## [94984] "sundered"          "fellowship"        "coming"           
## [94987] "great"             "darkness"          "third"            
## [94990] "part"              "tells"             "last"             
## [94993] "defence"           "shadow"            "end"              
## [94996] "mission"           "ring"              "bearer"           
## [94999] "return"            "king"

Next we need to contrast words in LOTR with positive and negative sentiment. We will import a corpus of positive words from here:

http://ptrckprry.com/course/ssd/data/positive-words.txt

We will import a corpus of negative words from here: http://ptrckprry.com/course/ssd/data/negative-words.txt

Import Positive and Negative Words

pos <- readLines("positiveWords.txt")
neg <- readLines("negativeWords.txt")
print(pos)
##    [1] "a+"                   "abound"               "abounds"             
##    [4] "abundance"            "abundant"             "accessable"          
##    [7] "accessible"           "acclaim"              "acclaimed"           
##   [10] "acclamation"          "accolade"             "accolades"           
##   [13] "accommodative"        "accomodative"         "accomplish"          
##   [16] "accomplished"         "accomplishment"       "accomplishments"     
##   [19] "accurate"             "accurately"           "achievable"          
##   [22] "achievement"          "achievements"         "achievible"          
##   [25] "acumen"               "adaptable"            "adaptive"            
##   [28] "adequate"             "adjustable"           "admirable"           
##   [31] "admirably"            "admiration"           "admire"              
##   [34] "admirer"              "admiring"             "admiringly"          
##   [37] "adorable"             "adore"                "adored"              
##   [40] "adorer"               "adoring"              "adoringly"           
##   [43] "adroit"               "adroitly"             "adulate"             
##   [46] "adulation"            "adulatory"            "advanced"            
##   [49] "advantage"            "advantageous"         "advantageously"      
##   [52] "advantages"           "adventuresome"        "adventurous"         
##   [55] "advocate"             "advocated"            "advocates"           
##   [58] "affability"           "affable"              "affably"             
##   [61] "affectation"          "affection"            "affectionate"        
##   [64] "affinity"             "affirm"               "affirmation"         
##   [67] "affirmative"          "affluence"            "affluent"            
##   [70] "afford"               "affordable"           "affordably"          
##   [73] "afordable"            "agile"                "agilely"             
##   [76] "agility"              "agreeable"            "agreeableness"       
##   [79] "agreeably"            "all-around"           "alluring"            
##   [82] "alluringly"           "altruistic"           "altruistically"      
##   [85] "amaze"                "amazed"               "amazement"           
##   [88] "amazes"               "amazing"              "amazingly"           
##   [91] "ambitious"            "ambitiously"          "ameliorate"          
##   [94] "amenable"             "amenity"              "amiability"          
##   [97] "amiabily"             "amiable"              "amicability"         
##  [100] "amicable"             "amicably"             "amity"               
##  [103] "ample"                "amply"                "amuse"               
##  [106] "amusing"              "amusingly"            "angel"               
##  [109] "angelic"              "apotheosis"           "appeal"              
##  [112] "appealing"            "applaud"              "appreciable"         
##  [115] "appreciate"           "appreciated"          "appreciates"         
##  [118] "appreciative"         "appreciatively"       "appropriate"         
##  [121] "approval"             "approve"              "ardent"              
##  [124] "ardently"             "ardor"                "articulate"          
##  [127] "aspiration"           "aspirations"          "aspire"              
##  [130] "assurance"            "assurances"           "assure"              
##  [133] "assuredly"            "assuring"             "astonish"            
##  [136] "astonished"           "astonishing"          "astonishingly"       
##  [139] "astonishment"         "astound"              "astounded"           
##  [142] "astounding"           "astoundingly"         "astutely"            
##  [145] "attentive"            "attraction"           "attractive"          
##  [148] "attractively"         "attune"               "audible"             
##  [151] "audibly"              "auspicious"           "authentic"           
##  [154] "authoritative"        "autonomous"           "available"           
##  [157] "aver"                 "avid"                 "avidly"              
##  [160] "award"                "awarded"              "awards"              
##  [163] "awe"                  "awed"                 "awesome"             
##  [166] "awesomely"            "awesomeness"          "awestruck"           
##  [169] "awsome"               "backbone"             "balanced"            
##  [172] "bargain"              "beauteous"            "beautiful"           
##  [175] "beautifullly"         "beautifully"          "beautify"            
##  [178] "beauty"               "beckon"               "beckoned"            
##  [181] "beckoning"            "beckons"              "believable"          
##  [184] "believeable"          "beloved"              "benefactor"          
##  [187] "beneficent"           "beneficial"           "beneficially"        
##  [190] "beneficiary"          "benefit"              "benefits"            
##  [193] "benevolence"          "benevolent"           "benifits"            
##  [196] "best"                 "best-known"           "best-performing"     
##  [199] "best-selling"         "better"               "better-known"        
##  [202] "better-than-expected" "beutifully"           "blameless"           
##  [205] "bless"                "blessing"             "bliss"               
##  [208] "blissful"             "blissfully"           "blithe"              
##  [211] "blockbuster"          "bloom"                "blossom"             
##  [214] "bolster"              "bonny"                "bonus"               
##  [217] "bonuses"              "boom"                 "booming"             
##  [220] "boost"                "boundless"            "bountiful"           
##  [223] "brainiest"            "brainy"               "brand-new"           
##  [226] "brave"                "bravery"              "bravo"               
##  [229] "breakthrough"         "breakthroughs"        "breathlessness"      
##  [232] "breathtaking"         "breathtakingly"       "breeze"              
##  [235] "bright"               "brighten"             "brighter"            
##  [238] "brightest"            "brilliance"           "brilliances"         
##  [241] "brilliant"            "brilliantly"          "brisk"               
##  [244] "brotherly"            "bullish"              "buoyant"             
##  [247] "cajole"               "calm"                 "calming"             
##  [250] "calmness"             "capability"           "capable"             
##  [253] "capably"              "captivate"            "captivating"         
##  [256] "carefree"             "cashback"             "cashbacks"           
##  [259] "catchy"               "celebrate"            "celebrated"          
##  [262] "celebration"          "celebratory"          "champ"               
##  [265] "champion"             "charisma"             "charismatic"         
##  [268] "charitable"           "charm"                "charming"            
##  [271] "charmingly"           "chaste"               "cheaper"             
##  [274] "cheapest"             "cheer"                "cheerful"            
##  [277] "cheery"               "cherish"              "cherished"           
##  [280] "cherub"               "chic"                 "chivalrous"          
##  [283] "chivalry"             "civility"             "civilize"            
##  [286] "clarity"              "classic"              "classy"              
##  [289] "clean"                "cleaner"              "cleanest"            
##  [292] "cleanliness"          "cleanly"              "clear"               
##  [295] "clear-cut"            "cleared"              "clearer"             
##  [298] "clearly"              "clears"               "clever"              
##  [301] "cleverly"             "cohere"               "coherence"           
##  [304] "coherent"             "cohesive"             "colorful"            
##  [307] "comely"               "comfort"              "comfortable"         
##  [310] "comfortably"          "comforting"           "comfy"               
##  [313] "commend"              "commendable"          "commendably"         
##  [316] "commitment"           "commodious"           "compact"             
##  [319] "compactly"            "compassion"           "compassionate"       
##  [322] "compatible"           "competitive"          "complement"          
##  [325] "complementary"        "complemented"         "complements"         
##  [328] "compliant"            "compliment"           "complimentary"       
##  [331] "comprehensive"        "conciliate"           "conciliatory"        
##  [334] "concise"              "confidence"           "confident"           
##  [337] "congenial"            "congratulate"         "congratulation"      
##  [340] "congratulations"      "congratulatory"       "conscientious"       
##  [343] "considerate"          "consistent"           "consistently"        
##  [346] "constructive"         "consummate"           "contentment"         
##  [349] "continuity"           "contrasty"            "contribution"        
##  [352] "convenience"          "convenient"           "conveniently"        
##  [355] "convience"            "convienient"          "convient"            
##  [358] "convincing"           "convincingly"         "cool"                
##  [361] "coolest"              "cooperative"          "cooperatively"       
##  [364] "cornerstone"          "correct"              "correctly"           
##  [367] "cost-effective"       "cost-saving"          "counter-attack"      
##  [370] "counter-attacks"      "courage"              "courageous"          
##  [373] "courageously"         "courageousness"       "courteous"           
##  [376] "courtly"              "covenant"             "cozy"                
##  [379] "creative"             "credence"             "credible"            
##  [382] "crisp"                "crisper"              "cure"                
##  [385] "cure-all"             "cushy"                "cute"                
##  [388] "cuteness"             "danke"                "danken"              
##  [391] "daring"               "daringly"             "darling"             
##  [394] "dashing"              "dauntless"            "dawn"                
##  [397] "dazzle"               "dazzled"              "dazzling"            
##  [400] "dead-cheap"           "dead-on"              "decency"             
##  [403] "decent"               "decisive"             "decisiveness"        
##  [406] "dedicated"            "defeat"               "defeated"            
##  [409] "defeating"            "defeats"              "defender"            
##  [412] "deference"            "deft"                 "deginified"          
##  [415] "delectable"           "delicacy"             "delicate"            
##  [418] "delicious"            "delight"              "delighted"           
##  [421] "delightful"           "delightfully"         "delightfulness"      
##  [424] "dependable"           "dependably"           "deservedly"          
##  [427] "deserving"            "desirable"            "desiring"            
##  [430] "desirous"             "destiny"              "detachable"          
##  [433] "devout"               "dexterous"            "dexterously"         
##  [436] "dextrous"             "dignified"            "dignify"             
##  [439] "dignity"              "diligence"            "diligent"            
##  [442] "diligently"           "diplomatic"           "dirt-cheap"          
##  [445] "distinction"          "distinctive"          "distinguished"       
##  [448] "diversified"          "divine"               "divinely"            
##  [451] "dominate"             "dominated"            "dominates"           
##  [454] "dote"                 "dotingly"             "doubtless"           
##  [457] "dreamland"            "dumbfounded"          "dumbfounding"        
##  [460] "dummy-proof"          "durable"              "dynamic"             
##  [463] "eager"                "eagerly"              "eagerness"           
##  [466] "earnest"              "earnestly"            "earnestness"         
##  [469] "ease"                 "eased"                "eases"               
##  [472] "easier"               "easiest"              "easiness"            
##  [475] "easing"               "easy"                 "easy-to-use"         
##  [478] "easygoing"            "ebullience"           "ebullient"           
##  [481] "ebulliently"          "ecenomical"           "economical"          
##  [484] "ecstasies"            "ecstasy"              "ecstatic"            
##  [487] "ecstatically"         "edify"                "educated"            
##  [490] "effective"            "effectively"          "effectiveness"       
##  [493] "effectual"            "efficacious"          "efficient"           
##  [496] "efficiently"          "effortless"           "effortlessly"        
##  [499] "effusion"             "effusive"             "effusively"          
##  [502] "effusiveness"         "elan"                 "elate"               
##  [505] "elated"               "elatedly"             "elation"             
##  [508] "electrify"            "elegance"             "elegant"             
##  [511] "elegantly"            "elevate"              "elite"               
##  [514] "eloquence"            "eloquent"             "eloquently"          
##  [517] "embolden"             "eminence"             "eminent"             
##  [520] "empathize"            "empathy"              "empower"             
##  [523] "empowerment"          "enchant"              "enchanted"           
##  [526] "enchanting"           "enchantingly"         "encourage"           
##  [529] "encouragement"        "encouraging"          "encouragingly"       
##  [532] "endear"               "endearing"            "endorse"             
##  [535] "endorsed"             "endorsement"          "endorses"            
##  [538] "endorsing"            "energetic"            "energize"            
##  [541] "energy-efficient"     "energy-saving"        "engaging"            
##  [544] "engrossing"           "enhance"              "enhanced"            
##  [547] "enhancement"          "enhances"             "enjoy"               
##  [550] "enjoyable"            "enjoyably"            "enjoyed"             
##  [553] "enjoying"             "enjoyment"            "enjoys"              
##  [556] "enlighten"            "enlightenment"        "enliven"             
##  [559] "ennoble"              "enough"               "enrapt"              
##  [562] "enrapture"            "enraptured"           "enrich"              
##  [565] "enrichment"           "enterprising"         "entertain"           
##  [568] "entertaining"         "entertains"           "enthral"             
##  [571] "enthrall"             "enthralled"           "enthuse"             
##  [574] "enthusiasm"           "enthusiast"           "enthusiastic"        
##  [577] "enthusiastically"     "entice"               "enticed"             
##  [580] "enticing"             "enticingly"           "entranced"           
##  [583] "entrancing"           "entrust"              "enviable"            
##  [586] "enviably"             "envious"              "enviously"           
##  [589] "enviousness"          "envy"                 "equitable"           
##  [592] "ergonomical"          "err-free"             "erudite"             
##  [595] "ethical"              "eulogize"             "euphoria"            
##  [598] "euphoric"             "euphorically"         "evaluative"          
##  [601] "evenly"               "eventful"             "everlasting"         
##  [604] "evocative"            "exalt"                "exaltation"          
##  [607] "exalted"              "exaltedly"            "exalting"            
##  [610] "exaltingly"           "examplar"             "examplary"           
##  [613] "excallent"            "exceed"               "exceeded"            
##  [616] "exceeding"            "exceedingly"          "exceeds"             
##  [619] "excel"                "exceled"              "excelent"            
##  [622] "excellant"            "excelled"             "excellence"          
##  [625] "excellency"           "excellent"            "excellently"         
##  [628] "excels"               "exceptional"          "exceptionally"       
##  [631] "excite"               "excited"              "excitedly"           
##  [634] "excitedness"          "excitement"           "excites"             
##  [637] "exciting"             "excitingly"           "exellent"            
##  [640] "exemplar"             "exemplary"            "exhilarate"          
##  [643] "exhilarating"         "exhilaratingly"       "exhilaration"        
##  [646] "exonerate"            "expansive"            "expeditiously"       
##  [649] "expertly"             "exquisite"            "exquisitely"         
##  [652] "extol"                "extoll"               "extraordinarily"     
##  [655] "extraordinary"        "exuberance"           "exuberant"           
##  [658] "exuberantly"          "exult"                "exultant"            
##  [661] "exultation"           "exultingly"           "eye-catch"           
##  [664] "eye-catching"         "eyecatch"             "eyecatching"         
##  [667] "fabulous"             "fabulously"           "facilitate"          
##  [670] "fair"                 "fairly"               "fairness"            
##  [673] "faith"                "faithful"             "faithfully"          
##  [676] "faithfulness"         "fame"                 "famed"               
##  [679] "famous"               "famously"             "fancier"             
##  [682] "fancinating"          "fancy"                "fanfare"             
##  [685] "fans"                 "fantastic"            "fantastically"       
##  [688] "fascinate"            "fascinating"          "fascinatingly"       
##  [691] "fascination"          "fashionable"          "fashionably"         
##  [694] "fast"                 "fast-growing"         "fast-paced"          
##  [697] "faster"               "fastest"              "fastest-growing"     
##  [700] "faultless"            "fav"                  "fave"                
##  [703] "favor"                "favorable"            "favored"             
##  [706] "favorite"             "favorited"            "favour"              
##  [709] "fearless"             "fearlessly"           "feasible"            
##  [712] "feasibly"             "feat"                 "feature-rich"        
##  [715] "fecilitous"           "feisty"               "felicitate"          
##  [718] "felicitous"           "felicity"             "fertile"             
##  [721] "fervent"              "fervently"            "fervid"              
##  [724] "fervidly"             "fervor"               "festive"             
##  [727] "fidelity"             "fiery"                "fine"                
##  [730] "fine-looking"         "finely"               "finer"               
##  [733] "finest"               "firmer"               "first-class"         
##  [736] "first-in-class"       "first-rate"           "flashy"              
##  [739] "flatter"              "flattering"           "flatteringly"        
##  [742] "flawless"             "flawlessly"           "flexibility"         
##  [745] "flexible"             "flourish"             "flourishing"         
##  [748] "fluent"               "flutter"              "fond"                
##  [751] "fondly"               "fondness"             "foolproof"           
##  [754] "foremost"             "foresight"            "formidable"          
##  [757] "fortitude"            "fortuitous"           "fortuitously"        
##  [760] "fortunate"            "fortunately"          "fortune"             
##  [763] "fragrant"             "free"                 "freed"               
##  [766] "freedom"              "freedoms"             "fresh"               
##  [769] "fresher"              "freshest"             "friendliness"        
##  [772] "friendly"             "frolic"               "frugal"              
##  [775] "fruitful"             "ftw"                  "fulfillment"         
##  [778] "fun"                  "futurestic"           "futuristic"          
##  [781] "gaiety"               "gaily"                "gain"                
##  [784] "gained"               "gainful"              "gainfully"           
##  [787] "gaining"              "gains"                "gallant"             
##  [790] "gallantly"            "galore"               "geekier"             
##  [793] "geeky"                "gem"                  "gems"                
##  [796] "generosity"           "generous"             "generously"          
##  [799] "genial"               "genius"               "gentle"              
##  [802] "gentlest"             "genuine"              "gifted"              
##  [805] "glad"                 "gladden"              "gladly"              
##  [808] "gladness"             "glamorous"            "glee"                
##  [811] "gleeful"              "gleefully"            "glimmer"             
##  [814] "glimmering"           "glisten"              "glistening"          
##  [817] "glitter"              "glitz"                "glorify"             
##  [820] "glorious"             "gloriously"           "glory"               
##  [823] "glow"                 "glowing"              "glowingly"           
##  [826] "god-given"            "god-send"             "godlike"             
##  [829] "godsend"              "gold"                 "golden"              
##  [832] "good"                 "goodly"               "goodness"            
##  [835] "goodwill"             "goood"                "gooood"              
##  [838] "gorgeous"             "gorgeously"           "grace"               
##  [841] "graceful"             "gracefully"           "gracious"            
##  [844] "graciously"           "graciousness"         "grand"               
##  [847] "grandeur"             "grateful"             "gratefully"          
##  [850] "gratification"        "gratified"            "gratifies"           
##  [853] "gratify"              "gratifying"           "gratifyingly"        
##  [856] "gratitude"            "great"                "greatest"            
##  [859] "greatness"            "grin"                 "groundbreaking"      
##  [862] "guarantee"            "guidance"             "guiltless"           
##  [865] "gumption"             "gush"                 "gusto"               
##  [868] "gutsy"                "hail"                 "halcyon"             
##  [871] "hale"                 "hallmark"             "hallmarks"           
##  [874] "hallowed"             "handier"              "handily"             
##  [877] "hands-down"           "handsome"             "handsomely"          
##  [880] "handy"                "happier"              "happily"             
##  [883] "happiness"            "happy"                "hard-working"        
##  [886] "hardier"              "hardy"                "harmless"            
##  [889] "harmonious"           "harmoniously"         "harmonize"           
##  [892] "harmony"              "headway"              "heal"                
##  [895] "healthful"            "healthy"              "hearten"             
##  [898] "heartening"           "heartfelt"            "heartily"            
##  [901] "heartwarming"         "heaven"               "heavenly"            
##  [904] "helped"               "helpful"              "helping"             
##  [907] "hero"                 "heroic"               "heroically"          
##  [910] "heroine"              "heroize"              "heros"               
##  [913] "high-quality"         "high-spirited"        "hilarious"           
##  [916] "holy"                 "homage"               "honest"              
##  [919] "honesty"              "honor"                "honorable"           
##  [922] "honored"              "honoring"             "hooray"              
##  [925] "hopeful"              "hospitable"           "hot"                 
##  [928] "hotcake"              "hotcakes"             "hottest"             
##  [931] "hug"                  "humane"               "humble"              
##  [934] "humility"             "humor"                "humorous"            
##  [937] "humorously"           "humour"               "humourous"           
##  [940] "ideal"                "idealize"             "ideally"             
##  [943] "idol"                 "idolize"              "idolized"            
##  [946] "idyllic"              "illuminate"           "illuminati"          
##  [949] "illuminating"         "illumine"             "illustrious"         
##  [952] "ilu"                  "imaculate"            "imaginative"         
##  [955] "immaculate"           "immaculately"         "immense"             
##  [958] "impartial"            "impartiality"         "impartially"         
##  [961] "impassioned"          "impeccable"           "impeccably"          
##  [964] "important"            "impress"              "impressed"           
##  [967] "impresses"            "impressive"           "impressively"        
##  [970] "impressiveness"       "improve"              "improved"            
##  [973] "improvement"          "improvements"         "improves"            
##  [976] "improving"            "incredible"           "incredibly"          
##  [979] "indebted"             "individualized"       "indulgence"          
##  [982] "indulgent"            "industrious"          "inestimable"         
##  [985] "inestimably"          "inexpensive"          "infallibility"       
##  [988] "infallible"           "infallibly"           "influential"         
##  [991] "ingenious"            "ingeniously"          "ingenuity"           
##  [994] "ingenuous"            "ingenuously"          "innocuous"           
##  [997] "innovation"           "innovative"           "inpressed"           
## [1000] "insightful"           "insightfully"         "inspiration"         
## [1003] "inspirational"        "inspire"              "inspiring"           
## [1006] "instantly"            "instructive"          "instrumental"        
## [1009] "integral"             "integrated"           "intelligence"        
## [1012] "intelligent"          "intelligible"         "interesting"         
## [1015] "interests"            "intimacy"             "intimate"            
## [1018] "intricate"            "intrigue"             "intriguing"          
## [1021] "intriguingly"         "intuitive"            "invaluable"          
## [1024] "invaluablely"         "inventive"            "invigorate"          
## [1027] "invigorating"         "invincibility"        "invincible"          
## [1030] "inviolable"           "inviolate"            "invulnerable"        
## [1033] "irreplaceable"        "irreproachable"       "irresistible"        
## [1036] "irresistibly"         "issue-free"           "jaw-droping"         
## [1039] "jaw-dropping"         "jollify"              "jolly"               
## [1042] "jovial"               "joy"                  "joyful"              
## [1045] "joyfully"             "joyous"               "joyously"            
## [1048] "jubilant"             "jubilantly"           "jubilate"            
## [1051] "jubilation"           "jubiliant"            "judicious"           
## [1054] "justly"               "keen"                 "keenly"              
## [1057] "keenness"             "kid-friendly"         "kindliness"          
## [1060] "kindly"               "kindness"             "knowledgeable"       
## [1063] "kudos"                "large-capacity"       "laud"                
## [1066] "laudable"             "laudably"             "lavish"              
## [1069] "lavishly"             "law-abiding"          "lawful"              
## [1072] "lawfully"             "lead"                 "leading"             
## [1075] "leads"                "lean"                 "led"                 
## [1078] "legendary"            "leverage"             "levity"              
## [1081] "liberate"             "liberation"           "liberty"             
## [1084] "lifesaver"            "light-hearted"        "lighter"             
## [1087] "likable"              "like"                 "liked"               
## [1090] "likes"                "liking"               "lionhearted"         
## [1093] "lively"               "logical"              "long-lasting"        
## [1096] "lovable"              "lovably"              "love"                
## [1099] "loved"                "loveliness"           "lovely"              
## [1102] "lover"                "loves"                "loving"              
## [1105] "low-cost"             "low-price"            "low-priced"          
## [1108] "low-risk"             "lower-priced"         "loyal"               
## [1111] "loyalty"              "lucid"                "lucidly"             
## [1114] "luck"                 "luckier"              "luckiest"            
## [1117] "luckiness"            "lucky"                "lucrative"           
## [1120] "luminous"             "lush"                 "luster"              
## [1123] "lustrous"             "luxuriant"            "luxuriate"           
## [1126] "luxurious"            "luxuriously"          "luxury"              
## [1129] "lyrical"              "magic"                "magical"             
## [1132] "magnanimous"          "magnanimously"        "magnificence"        
## [1135] "magnificent"          "magnificently"        "majestic"            
## [1138] "majesty"              "manageable"           "maneuverable"        
## [1141] "marvel"               "marveled"             "marvelled"           
## [1144] "marvellous"           "marvelous"            "marvelously"         
## [1147] "marvelousness"        "marvels"              "master"              
## [1150] "masterful"            "masterfully"          "masterpiece"         
## [1153] "masterpieces"         "masters"              "mastery"             
## [1156] "matchless"            "mature"               "maturely"            
## [1159] "maturity"             "meaningful"           "memorable"           
## [1162] "merciful"             "mercifully"           "mercy"               
## [1165] "merit"                "meritorious"          "merrily"             
## [1168] "merriment"            "merriness"            "merry"               
## [1171] "mesmerize"            "mesmerized"           "mesmerizes"          
## [1174] "mesmerizing"          "mesmerizingly"        "meticulous"          
## [1177] "meticulously"         "mightily"             "mighty"              
## [1180] "mind-blowing"         "miracle"              "miracles"            
## [1183] "miraculous"           "miraculously"         "miraculousness"      
## [1186] "modern"               "modest"               "modesty"             
## [1189] "momentous"            "monumental"           "monumentally"        
## [1192] "morality"             "motivated"            "multi-purpose"       
## [1195] "navigable"            "neat"                 "neatest"             
## [1198] "neatly"               "nice"                 "nicely"              
## [1201] "nicer"                "nicest"               "nifty"               
## [1204] "nimble"               "noble"                "nobly"               
## [1207] "noiseless"            "non-violence"         "non-violent"         
## [1210] "notably"              "noteworthy"           "nourish"             
## [1213] "nourishing"           "nourishment"          "novelty"             
## [1216] "nurturing"            "oasis"                "obsession"           
## [1219] "obsessions"           "obtainable"           "openly"              
## [1222] "openness"             "optimal"              "optimism"            
## [1225] "optimistic"           "opulent"              "orderly"             
## [1228] "originality"          "outdo"                "outdone"             
## [1231] "outperform"           "outperformed"         "outperforming"       
## [1234] "outperforms"          "outshine"             "outshone"            
## [1237] "outsmart"             "outstanding"          "outstandingly"       
## [1240] "outstrip"             "outwit"               "ovation"             
## [1243] "overjoyed"            "overtake"             "overtaken"           
## [1246] "overtakes"            "overtaking"           "overtook"            
## [1249] "overture"             "pain-free"            "painless"            
## [1252] "painlessly"           "palatial"             "pamper"              
## [1255] "pampered"             "pamperedly"           "pamperedness"        
## [1258] "pampers"              "panoramic"            "paradise"            
## [1261] "paramount"            "pardon"               "passion"             
## [1264] "passionate"           "passionately"         "patience"            
## [1267] "patient"              "patiently"            "patriot"             
## [1270] "patriotic"            "peace"                "peaceable"           
## [1273] "peaceful"             "peacefully"           "peacekeepers"        
## [1276] "peach"                "peerless"             "pep"                 
## [1279] "pepped"               "pepping"              "peppy"               
## [1282] "peps"                 "perfect"              "perfection"          
## [1285] "perfectly"            "permissible"          "perseverance"        
## [1288] "persevere"            "personages"           "personalized"        
## [1291] "phenomenal"           "phenomenally"         "picturesque"         
## [1294] "piety"                "pinnacle"             "playful"             
## [1297] "playfully"            "pleasant"             "pleasantly"          
## [1300] "pleased"              "pleases"              "pleasing"            
## [1303] "pleasingly"           "pleasurable"          "pleasurably"         
## [1306] "pleasure"             "plentiful"            "pluses"              
## [1309] "plush"                "plusses"              "poetic"              
## [1312] "poeticize"            "poignant"             "poise"               
## [1315] "poised"               "polished"             "polite"              
## [1318] "politeness"           "popular"              "portable"            
## [1321] "posh"                 "positive"             "positively"          
## [1324] "positives"            "powerful"             "powerfully"          
## [1327] "praise"               "praiseworthy"         "praising"            
## [1330] "pre-eminent"          "precious"             "precise"             
## [1333] "precisely"            "preeminent"           "prefer"              
## [1336] "preferable"           "preferably"           "prefered"            
## [1339] "preferes"             "preferring"           "prefers"             
## [1342] "premier"              "prestige"             "prestigious"         
## [1345] "prettily"             "pretty"               "priceless"           
## [1348] "pride"                "principled"           "privilege"           
## [1351] "privileged"           "prize"                "proactive"           
## [1354] "problem-free"         "problem-solver"       "prodigious"          
## [1357] "prodigiously"         "prodigy"              "productive"          
## [1360] "productively"         "proficient"           "proficiently"        
## [1363] "profound"             "profoundly"           "profuse"             
## [1366] "profusion"            "progress"             "progressive"         
## [1369] "prolific"             "prominence"           "prominent"           
## [1372] "promise"              "promised"             "promises"            
## [1375] "promising"            "promoter"             "prompt"              
## [1378] "promptly"             "proper"               "properly"            
## [1381] "propitious"           "propitiously"         "pros"                
## [1384] "prosper"              "prosperity"           "prosperous"          
## [1387] "prospros"             "protect"              "protection"          
## [1390] "protective"           "proud"                "proven"              
## [1393] "proves"               "providence"           "proving"             
## [1396] "prowess"              "prudence"             "prudent"             
## [1399] "prudently"            "punctual"             "pure"                
## [1402] "purify"               "purposeful"           "quaint"              
## [1405] "qualified"            "qualify"              "quicker"             
## [1408] "quiet"                "quieter"              "radiance"            
## [1411] "radiant"              "rapid"                "rapport"             
## [1414] "rapt"                 "rapture"              "raptureous"          
## [1417] "raptureously"         "rapturous"            "rapturously"         
## [1420] "rational"             "razor-sharp"          "reachable"           
## [1423] "readable"             "readily"              "ready"               
## [1426] "reaffirm"             "reaffirmation"        "realistic"           
## [1429] "realizable"           "reasonable"           "reasonably"          
## [1432] "reasoned"             "reassurance"          "reassure"            
## [1435] "receptive"            "reclaim"              "recomend"            
## [1438] "recommend"            "recommendation"       "recommendations"     
## [1441] "recommended"          "reconcile"            "reconciliation"      
## [1444] "record-setting"       "recover"              "recovery"            
## [1447] "rectification"        "rectify"              "rectifying"          
## [1450] "redeem"               "redeeming"            "redemption"          
## [1453] "refine"               "refined"              "refinement"          
## [1456] "reform"               "reformed"             "reforming"           
## [1459] "reforms"              "refresh"              "refreshed"           
## [1462] "refreshing"           "refund"               "refunded"            
## [1465] "regal"                "regally"              "regard"              
## [1468] "rejoice"              "rejoicing"            "rejoicingly"         
## [1471] "rejuvenate"           "rejuvenated"          "rejuvenating"        
## [1474] "relaxed"              "relent"               "reliable"            
## [1477] "reliably"             "relief"               "relish"              
## [1480] "remarkable"           "remarkably"           "remedy"              
## [1483] "remission"            "remunerate"           "renaissance"         
## [1486] "renewed"              "renown"               "renowned"            
## [1489] "replaceable"          "reputable"            "reputation"          
## [1492] "resilient"            "resolute"             "resound"             
## [1495] "resounding"           "resourceful"          "resourcefulness"     
## [1498] "respect"              "respectable"          "respectful"          
## [1501] "respectfully"         "respite"              "resplendent"         
## [1504] "responsibly"          "responsive"           "restful"             
## [1507] "restored"             "restructure"          "restructured"        
## [1510] "restructuring"        "retractable"          "revel"               
## [1513] "revelation"           "revere"               "reverence"           
## [1516] "reverent"             "reverently"           "revitalize"          
## [1519] "revival"              "revive"               "revives"             
## [1522] "revolutionary"        "revolutionize"        "revolutionized"      
## [1525] "revolutionizes"       "reward"               "rewarding"           
## [1528] "rewardingly"          "rich"                 "richer"              
## [1531] "richly"               "richness"             "right"               
## [1534] "righten"              "righteous"            "righteously"         
## [1537] "righteousness"        "rightful"             "rightfully"          
## [1540] "rightly"              "rightness"            "risk-free"           
## [1543] "robust"               "rock-star"            "rock-stars"          
## [1546] "rockstar"             "rockstars"            "romantic"            
## [1549] "romantically"         "romanticize"          "roomier"             
## [1552] "roomy"                "rosy"                 "safe"                
## [1555] "safely"               "sagacity"             "sagely"              
## [1558] "saint"                "saintliness"          "saintly"             
## [1561] "salutary"             "salute"               "sane"                
## [1564] "satisfactorily"       "satisfactory"         "satisfied"           
## [1567] "satisfies"            "satisfy"              "satisfying"          
## [1570] "satisified"           "saver"                "savings"             
## [1573] "savior"               "savvy"                "scenic"              
## [1576] "seamless"             "seasoned"             "secure"              
## [1579] "securely"             "selective"            "self-determination"  
## [1582] "self-respect"         "self-satisfaction"    "self-sufficiency"    
## [1585] "self-sufficient"      "sensation"            "sensational"         
## [1588] "sensationally"        "sensations"           "sensible"            
## [1591] "sensibly"             "sensitive"            "serene"              
## [1594] "serenity"             "sexy"                 "sharp"               
## [1597] "sharper"              "sharpest"             "shimmering"          
## [1600] "shimmeringly"         "shine"                "shiny"               
## [1603] "significant"          "silent"               "simpler"             
## [1606] "simplest"             "simplified"           "simplifies"          
## [1609] "simplify"             "simplifying"          "sincere"             
## [1612] "sincerely"            "sincerity"            "skill"               
## [1615] "skilled"              "skillful"             "skillfully"          
## [1618] "slammin"              "sleek"                "slick"               
## [1621] "smart"                "smarter"              "smartest"            
## [1624] "smartly"              "smile"                "smiles"              
## [1627] "smiling"              "smilingly"            "smitten"             
## [1630] "smooth"               "smoother"             "smoothes"            
## [1633] "smoothest"            "smoothly"             "snappy"              
## [1636] "snazzy"               "sociable"             "soft"                
## [1639] "softer"               "solace"               "solicitous"          
## [1642] "solicitously"         "solid"                "solidarity"          
## [1645] "soothe"               "soothingly"           "sophisticated"       
## [1648] "soulful"              "soundly"              "soundness"           
## [1651] "spacious"             "sparkle"              "sparkling"           
## [1654] "spectacular"          "spectacularly"        "speedily"            
## [1657] "speedy"               "spellbind"            "spellbinding"        
## [1660] "spellbindingly"       "spellbound"           "spirited"            
## [1663] "spiritual"            "splendid"             "splendidly"          
## [1666] "splendor"             "spontaneous"          "sporty"              
## [1669] "spotless"             "sprightly"            "stability"           
## [1672] "stabilize"            "stable"               "stainless"           
## [1675] "standout"             "state-of-the-art"     "stately"             
## [1678] "statuesque"           "staunch"              "staunchly"           
## [1681] "staunchness"          "steadfast"            "steadfastly"         
## [1684] "steadfastness"        "steadiest"            "steadiness"          
## [1687] "steady"               "stellar"              "stellarly"           
## [1690] "stimulate"            "stimulates"           "stimulating"         
## [1693] "stimulative"          "stirringly"           "straighten"          
## [1696] "straightforward"      "streamlined"          "striking"            
## [1699] "strikingly"           "striving"             "strong"              
## [1702] "stronger"             "strongest"            "stunned"             
## [1705] "stunning"             "stunningly"           "stupendous"          
## [1708] "stupendously"         "sturdier"             "sturdy"              
## [1711] "stylish"              "stylishly"            "stylized"            
## [1714] "suave"                "suavely"              "sublime"             
## [1717] "subsidize"            "subsidized"           "subsidizes"          
## [1720] "subsidizing"          "substantive"          "succeed"             
## [1723] "succeeded"            "succeeding"           "succeeds"            
## [1726] "succes"               "success"              "successes"           
## [1729] "successful"           "successfully"         "suffice"             
## [1732] "sufficed"             "suffices"             "sufficient"          
## [1735] "sufficiently"         "suitable"             "sumptuous"           
## [1738] "sumptuously"          "sumptuousness"        "super"               
## [1741] "superb"               "superbly"             "superior"            
## [1744] "superiority"          "supple"               "support"             
## [1747] "supported"            "supporter"            "supporting"          
## [1750] "supportive"           "supports"             "supremacy"           
## [1753] "supreme"              "supremely"            "supurb"              
## [1756] "supurbly"             "surmount"             "surpass"             
## [1759] "surreal"              "survival"             "survivor"            
## [1762] "sustainability"       "sustainable"          "swank"               
## [1765] "swankier"             "swankiest"            "swanky"              
## [1768] "sweeping"             "sweet"                "sweeten"             
## [1771] "sweetheart"           "sweetly"              "sweetness"           
## [1774] "swift"                "swiftness"            "talent"              
## [1777] "talented"             "talents"              "tantalize"           
## [1780] "tantalizing"          "tantalizingly"        "tempt"               
## [1783] "tempting"             "temptingly"           "tenacious"           
## [1786] "tenaciously"          "tenacity"             "tender"              
## [1789] "tenderly"             "terrific"             "terrifically"        
## [1792] "thank"                "thankful"             "thinner"             
## [1795] "thoughtful"           "thoughtfully"         "thoughtfulness"      
## [1798] "thrift"               "thrifty"              "thrill"              
## [1801] "thrilled"             "thrilling"            "thrillingly"         
## [1804] "thrills"              "thrive"               "thriving"            
## [1807] "thumb-up"             "thumbs-up"            "tickle"              
## [1810] "tidy"                 "time-honored"         "timely"              
## [1813] "tingle"               "titillate"            "titillating"         
## [1816] "titillatingly"        "togetherness"         "tolerable"           
## [1819] "toll-free"            "top"                  "top-notch"           
## [1822] "top-quality"          "topnotch"             "tops"                
## [1825] "tough"                "tougher"              "toughest"            
## [1828] "traction"             "tranquil"             "tranquility"         
## [1831] "transparent"          "treasure"             "tremendously"        
## [1834] "trendy"               "triumph"              "triumphal"           
## [1837] "triumphant"           "triumphantly"         "trivially"           
## [1840] "trophy"               "trouble-free"         "trump"               
## [1843] "trumpet"              "trust"                "trusted"             
## [1846] "trusting"             "trustingly"           "trustworthiness"     
## [1849] "trustworthy"          "trusty"               "truthful"            
## [1852] "truthfully"           "truthfulness"         "twinkly"             
## [1855] "ultra-crisp"          "unabashed"            "unabashedly"         
## [1858] "unaffected"           "unassailable"         "unbeatable"          
## [1861] "unbiased"             "unbound"              "uncomplicated"       
## [1864] "unconditional"        "undamaged"            "undaunted"           
## [1867] "understandable"       "undisputable"         "undisputably"        
## [1870] "undisputed"           "unencumbered"         "unequivocal"         
## [1873] "unequivocally"        "unfazed"              "unfettered"          
## [1876] "unforgettable"        "unity"                "unlimited"           
## [1879] "unmatched"            "unparalleled"         "unquestionable"      
## [1882] "unquestionably"       "unreal"               "unrestricted"        
## [1885] "unrivaled"            "unselfish"            "unwavering"          
## [1888] "upbeat"               "upgradable"           "upgradeable"         
## [1891] "upgraded"             "upheld"               "uphold"              
## [1894] "uplift"               "uplifting"            "upliftingly"         
## [1897] "upliftment"           "upscale"              "usable"              
## [1900] "useable"              "useful"               "user-friendly"       
## [1903] "user-replaceable"     "valiant"              "valiantly"           
## [1906] "valor"                "valuable"             "variety"             
## [1909] "venerate"             "verifiable"           "veritable"           
## [1912] "versatile"            "versatility"          "vibrant"             
## [1915] "vibrantly"            "victorious"           "victory"             
## [1918] "viewable"             "vigilance"            "vigilant"            
## [1921] "virtue"               "virtuous"             "virtuously"          
## [1924] "visionary"            "vivacious"            "vivid"               
## [1927] "vouch"                "vouchsafe"            "warm"                
## [1930] "warmer"               "warmhearted"          "warmly"              
## [1933] "warmth"               "wealthy"              "welcome"             
## [1936] "well"                 "well-backlit"         "well-balanced"       
## [1939] "well-behaved"         "well-being"           "well-bred"           
## [1942] "well-connected"       "well-educated"        "well-established"    
## [1945] "well-informed"        "well-intentioned"     "well-known"          
## [1948] "well-made"            "well-managed"         "well-mannered"       
## [1951] "well-positioned"      "well-received"        "well-regarded"       
## [1954] "well-rounded"         "well-run"             "well-wishers"        
## [1957] "wellbeing"            "whoa"                 "wholeheartedly"      
## [1960] "wholesome"            "whooa"                "whoooa"              
## [1963] "wieldy"               "willing"              "willingly"           
## [1966] "willingness"          "win"                  "windfall"            
## [1969] "winnable"             "winner"               "winners"             
## [1972] "winning"              "wins"                 "wisdom"              
## [1975] "wise"                 "wisely"               "witty"               
## [1978] "won"                  "wonder"               "wonderful"           
## [1981] "wonderfully"          "wonderous"            "wonderously"         
## [1984] "wonders"              "wondrous"             "woo"                 
## [1987] "work"                 "workable"             "worked"              
## [1990] "works"                "world-famous"         "worth"               
## [1993] "worth-while"          "worthiness"           "worthwhile"          
## [1996] "worthy"               "wow"                  "wowed"               
## [1999] "wowing"               "wows"                 "yay"                 
## [2002] "youthful"             "zeal"                 "zenith"              
## [2005] "zest"                 "zippy"

Contrast Pos vs. Neg Word Usage

length(lotr2) # get overall length
## [1] 95000
PosSent <- sum(!is.na(match(lotr2, pos)))  #sum positive matches (observations that are not NA)
NegSent <- sum(!is.na(match(lotr2, neg)))  #sum negative matches (observations that are not NA)
PosSent - NegSent
## [1] -828

A value below 0 indicates negative sentiment. There is definitely some ‘doom and gloom’ in the Fellowship of the Ring.

Using the Syuzhet package

library(syuzhet) #includes own corpus of pos/neg words
syuzhet_vector <- get_sentiment(lotr2, method="syuzhet")
# see summary statistics of the vector
summary(syuzhet_vector)
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
## -1.0000  0.0000  0.0000  0.0043  0.0000  1.0000

This method uses a scale from -1 to 1. We see the mean is <1, so again: negative overall.

Explore Sentiment by Specific Emotions

# anger, anticipation, disgust, fear, joy, sadness, surprise, trust 
emot<-get_nrc_sentiment(lotr) # get count for each word
head(emot,10)
#transpose
emotprep<-data.frame(t(emot))
#The function rowSums computes column sums across rows for each level of a grouping variable.
emotprep_new <- data.frame(rowSums(emotprep[1]))
#Transformation and cleaning
names(emotprep_new)[1] <- "count"
emotprep_new <- cbind("sentiment" = rownames(emotprep_new), emotprep_new)
rownames(emotprep_new) <- NULL
emotprep_new2<-emotprep_new[1:8,]
#Plot One - count of words associated with each sentiment
library(ggplot2)
quickplot(sentiment, data=emotprep_new2, weight=count, geom="bar", fill=sentiment, ylab="count")+ggtitle("Survey sentiments")

Lots of ‘fear’ and ‘sadness’ weighted words in LOTR, but also weighted on pleasant dimensions like ‘trust’.

5 3. Frequency Analysis

Overall

lotrcorp <- Corpus(VectorSource(lotr2))
wtm <- TermDocumentMatrix(lotrcorp)
m <- as.matrix(wtm)  #to a regular matrix
v <- sort(rowSums(m), decreasing = TRUE)
d <- data.frame(word = names(v), freq = v)

barplot(d[1:25, ]$freq, las = 2, names.arg = d[1:25, ]$word, col = "green", main = "Most frequent", 
    ylab = "Word frequencies")  #most frequent

Well, look at that. The only word said more than ‘Frodo’ is ‘said’ (lots of dialogue). Let’s plot it another way.

Create Word Plot

set.seed(123)  #prevents resampling, samples once then locks in that random sample
wordcloud(lotr2, min.freq = 2, max.words = 300, random.order = FALSE, rot.per = 0.25, 
    colors = brewer.pal(10, "Spectral"))

Next let’s just look at the main characters…

By Character

lotrcharacters <- subset(d, word=="frodo"| word=="gandalf"|word=="sam"| word=="aragorn"|
word=="pippin"| word=="merry"|word=="legolas"| word=="boromir"|word=="gimli"| word=="bilbo"|word=="bombadil"| word=="sauron" | word=="saruman")

barplot(lotrcharacters[1:25, ]$freq, las = 2, names.arg = lotrcharacters[1:25, ]$word, col = "green", main = "Most frequent", 
    ylab = "Word frequencies")  #most frequent

Again, we see Frodo rise to the top (more than double Gandalf).

Explore Co-occurance Network

One method to investigate “centrality” is to formulate a co-occurance network. This allows us to see which words are most often “co-occuring” (i.e., words occuring near other words) together.

library(quanteda)
#Set up
lotr_tok <- tokens(lotr)
lotr_dfm <- dfm(lotr)
topfeatures(lotr_dfm, 5)
##  said frodo   now  will  long 
##  1481  1057   680   563   457
lotr_trim <- dfm_trim(lotr_dfm, min_termfreq = 20)  #trim dfm by frequency
topfeatures(lotr_trim)
##    said   frodo     now    will    long gandalf    came     one    like     sam 
##    1481    1057     680     563     457     454     436     429     411     399
nfeat(lotr_trim)
## [1] 873
lotr_fcm <- fcm(lotr_trim)
dim(lotr_fcm)
## [1] 873 873
lotr_top_names <- names(topfeatures(lotr_fcm, 50))
lotr_top50 <- fcm_select(lotr_fcm, pattern = lotr_top_names, selection = "keep")
dim(lotr_top50)
## [1] 50 50
size <- log(colSums(dfm_select(lotr_dfm, lotr_top_names, selection = "keep")))
set.seed(123)
textplot_network(lotr_top50, min_freq = 0.8, vertex_size = size/max(size) * 3)

Well, that oughta do it. Frodo is literally central. His name is uttered near or around almost every other top 50 frequency word in the novel.

6 4. Comparison to Sequel

The above methods are great for visualizing and conceptualizing text data. In order to demonstrate some statistical methods, we will contrast the first book (Fellowship of the Ring) with the second (The Two Towers) on emotionality. We will also compare lexical complexity.

The first 2000 words of The Two Towers

Same method used to import here as above

## [1] "book iii chapter departure boromir aragorn sped hill every now bent ground hobbits go light footprints easy even ranger read far top spring crossed path wet earth saw seeking read signs aright said frodo ran hill top wonder saw returned way went hill aragorn hesitated desired go high seat hoping see something guide perplexities time pressing suddenly leaped forward ran summit across great flag stones steps sitting high seat looked sun seemed darkened world dim remote turned north back north saw nothing save distant hills unless far away see great bird like eagle high air descending slowly wide circles towards earth even gazed quick ears caught sounds woodlands west side river stiffened cries among horror distinguish harsh voices orcs suddenly deep throated call great horn blew blasts smote hills echoed hollows rising mighty shout roaring falls horn boromir cried need sprang steps away leaping path alas ill fate day goes amiss sam ran cries came louder fainter now desperately horn blowing fierce shrill rose yells orcs suddenly horn calls ceased aragorn raced last slope reach hills foot sounds died away turned left ran towards retreated last hear drawing bright sword crying elendil elendil crashed trees mile maybe parth galen little glade far lake found boromir sitting back great tree resting aragorn saw pierced many black feathered arrows sword still hand broken near hilt horn cloven two side many orcs lay slain piled feet aragorn knelt beside boromir opened eyes strove speak last slow words came tried take ring frodo said sorry paid glance strayed fallen enemies twenty least lay gone halflings orcs taken think dead orcs bound paused eyes closed wearily moment spoke farewell aragorn go minas tirith save people failed said aragorn taking hand kissing brow conquered gained victory peace minas tirith shall fall boromir smiled way go frodo said aragorn boromir speak alas said aragorn thus passes heir denethor lord tower guard bitter end now company ruin failed vain ganda"

Sidebar: We will use the following code for lexical diversity analysis later

#Make two towers a list
tt2 <- str_split(tt, " ")  #space is the delimiter
class(tt2)  #should now be a list
## [1] "list"
tt2 <- unlist(tt2)
class(tt2) #should now be a character
## [1] "character"
tt2 
##     [1] "book"             "iii"              "chapter"         
##     [4] "departure"        "boromir"          "aragorn"         
##     [7] "sped"             "hill"             "every"           
##    [10] "now"              "bent"             "ground"          
##    [13] "hobbits"          "go"               "light"           
##    [16] "footprints"       "easy"             "even"            
##    [19] "ranger"           "read"             "far"             
##    [22] "top"              "spring"           "crossed"         
##    [25] "path"             "wet"              "earth"           
##    [28] "saw"              "seeking"          "read"            
##    [31] "signs"            "aright"           "said"            
##    [34] "frodo"            "ran"              "hill"            
##    [37] "top"              "wonder"           "saw"             
##    [40] "returned"         "way"              "went"            
##    [43] "hill"             "aragorn"          "hesitated"       
##    [46] "desired"          "go"               "high"            
##    [49] "seat"             "hoping"           "see"             
##    [52] "something"        "guide"            "perplexities"    
##    [55] "time"             "pressing"         "suddenly"        
##    [58] "leaped"           "forward"          "ran"             
##    [61] "summit"           "across"           "great"           
##    [64] "flag"             "stones"           "steps"           
##    [67] "sitting"          "high"             "seat"            
##    [70] "looked"           "sun"              "seemed"          
##    [73] "darkened"         "world"            "dim"             
##    [76] "remote"           "turned"           "north"           
##    [79] "back"             "north"            "saw"             
##    [82] "nothing"          "save"             "distant"         
##    [85] "hills"            "unless"           "far"             
##    [88] "away"             "see"              "great"           
##    [91] "bird"             "like"             "eagle"           
##    [94] "high"             "air"              "descending"      
##    [97] "slowly"           "wide"             "circles"         
##   [100] "towards"          "earth"            "even"            
##   [103] "gazed"            "quick"            "ears"            
##   [106] "caught"           "sounds"           "woodlands"       
##   [109] "west"             "side"             "river"           
##   [112] "stiffened"        "cries"            "among"           
##   [115] "horror"           "distinguish"      "harsh"           
##   [118] "voices"           "orcs"             "suddenly"        
##   [121] "deep"             "throated"         "call"            
##   [124] "great"            "horn"             "blew"            
##   [127] "blasts"           "smote"            "hills"           
##   [130] "echoed"           "hollows"          "rising"          
##   [133] "mighty"           "shout"            "roaring"         
##   [136] "falls"            "horn"             "boromir"         
##   [139] "cried"            "need"             "sprang"          
##   [142] "steps"            "away"             "leaping"         
##   [145] "path"             "alas"             "ill"             
##   [148] "fate"             "day"              "goes"            
##   [151] "amiss"            "sam"              "ran"             
##   [154] "cries"            "came"             "louder"          
##   [157] "fainter"          "now"              "desperately"     
##   [160] "horn"             "blowing"          "fierce"          
##   [163] "shrill"           "rose"             "yells"           
##   [166] "orcs"             "suddenly"         "horn"            
##   [169] "calls"            "ceased"           "aragorn"         
##   [172] "raced"            "last"             "slope"           
##   [175] "reach"            "hills"            "foot"            
##   [178] "sounds"           "died"             "away"            
##   [181] "turned"           "left"             "ran"             
##   [184] "towards"          "retreated"        "last"            
##   [187] "hear"             "drawing"          "bright"          
##   [190] "sword"            "crying"           "elendil"         
##   [193] "elendil"          "crashed"          "trees"           
##   [196] "mile"             "maybe"            "parth"           
##   [199] "galen"            "little"           "glade"           
##   [202] "far"              "lake"             "found"           
##   [205] "boromir"          "sitting"          "back"            
##   [208] "great"            "tree"             "resting"         
##   [211] "aragorn"          "saw"              "pierced"         
##   [214] "many"             "black"            "feathered"       
##   [217] "arrows"           "sword"            "still"           
##   [220] "hand"             "broken"           "near"            
##   [223] "hilt"             "horn"             "cloven"          
##   [226] "two"              "side"             "many"            
##   [229] "orcs"             "lay"              "slain"           
##   [232] "piled"            "feet"             "aragorn"         
##   [235] "knelt"            "beside"           "boromir"         
##   [238] "opened"           "eyes"             "strove"          
##   [241] "speak"            "last"             "slow"            
##   [244] "words"            "came"             "tried"           
##   [247] "take"             "ring"             "frodo"           
##   [250] "said"             "sorry"            "paid"            
##   [253] "glance"           "strayed"          "fallen"          
##   [256] "enemies"          "twenty"           "least"           
##   [259] "lay"              "gone"             "halflings"       
##   [262] "orcs"             "taken"            "think"           
##   [265] "dead"             "orcs"             "bound"           
##   [268] "paused"           "eyes"             "closed"          
##   [271] "wearily"          "moment"           "spoke"           
##   [274] "farewell"         "aragorn"          "go"              
##   [277] "minas"            "tirith"           "save"            
##   [280] "people"           "failed"           "said"            
##   [283] "aragorn"          "taking"           "hand"            
##   [286] "kissing"          "brow"             "conquered"       
##   [289] "gained"           "victory"          "peace"           
##   [292] "minas"            "tirith"           "shall"           
##   [295] "fall"             "boromir"          "smiled"          
##   [298] "way"              "go"               "frodo"           
##   [301] "said"             "aragorn"          "boromir"         
##   [304] "speak"            "alas"             "said"            
##   [307] "aragorn"          "thus"             "passes"          
##   [310] "heir"             "denethor"         "lord"            
##   [313] "tower"            "guard"            "bitter"          
##   [316] "end"              "now"              "company"         
##   [319] "ruin"             "failed"           "vain"            
##   [322] "gandalfs"         "trust"            "shall"           
##   [325] "now"              "boromir"          "laid"            
##   [328] "go"               "minas"            "tirith"          
##   [331] "heart"            "desires"          "ring"            
##   [334] "bearer"           "shall"            "find"            
##   [337] "save"             "quest"            "disaster"        
##   [340] "knelt"            "bent"             "weeping"         
##   [343] "still"            "clasping"         "boromirs"        
##   [346] "hand"             "legolas"          "gimli"           
##   [349] "found"            "came"             "western"         
##   [352] "slopes"           "hill"             "silently"        
##   [355] "creeping"         "trees"            "hunting"         
##   [358] "gimli"            "axe"              "hand"            
##   [361] "legolas"          "long"             "knife"           
##   [364] "arrows"           "spent"            "came"            
##   [367] "glade"            "halted"           "amazement"       
##   [370] "stood"            "moment"           "heads"           
##   [373] "bowed"            "grief"            "seemed"          
##   [376] "plain"            "happened"         "alas"            
##   [379] "said"             "legolas"          "coming"          
##   [382] "aragorns"         "side"             "hunted"          
##   [385] "slain"            "many"             "orcs"            
##   [388] "woods"            "use"              "came"            
##   [391] "heard"            "horn"             "late"            
##   [394] "seems"            "fear"             "taken"           
##   [397] "deadly"           "hurt"             "boromir"         
##   [400] "dead"             "said"             "aragorn"         
##   [403] "unscathed"        "fell"             "defending"       
##   [406] "hobbits"          "away"             "upon"            
##   [409] "hill"             "hobbits"          "cried"           
##   [412] "gimli"            "frodo"            "know"            
##   [415] "answered"         "aragorn"          "wearily"         
##   [418] "died"             "boromir"          "told"            
##   [421] "orcs"             "bound"            "think"           
##   [424] "dead"             "sent"             "follow"          
##   [427] "merry"            "pippin"           "ask"             
##   [430] "frodo"            "sam"              "late"            
##   [433] "done"             "today"            "gone"            
##   [436] "amiss"            "done"             "now"             
##   [439] "first"            "must"             "tend"            
##   [442] "fallen"           "said"             "legolas"         
##   [445] "leave"            "lying"            "like"            
##   [448] "carrion"          "among"            "foul"            
##   [451] "orcs"             "must"             "swift"           
##   [454] "said"             "gimli"            "wish"            
##   [457] "us"               "linger"           "must"            
##   [460] "follow"           "orcs"             "hope"            
##   [463] "company"          "living"           "prisoners"       
##   [466] "know"             "whether"          "ring"            
##   [469] "bearer"           "said"             "aragorn"         
##   [472] "abandon"          "must"             "seek"            
##   [475] "first"            "evil"             "choice"          
##   [478] "now"              "us"               "let"             
##   [481] "us"               "first"            "must"            
##   [484] "said"             "legolas"          "time"            
##   [487] "tools"            "bury"             "comrade"         
##   [490] "fitly"            "raise"            "mound"           
##   [493] "cairn"            "might"            "build"           
##   [496] "labour"           "hard"             "long"            
##   [499] "stones"           "use"              "nearer"          
##   [502] "water"            "side"             "said"            
##   [505] "gimli"            "let"              "us"              
##   [508] "lay"              "boat"             "weapons"         
##   [511] "weapons"          "vanquished"       "foes"            
##   [514] "said"             "aragorn"          "send"            
##   [517] "falls"            "rauros"           "give"            
##   [520] "anduin"           "river"            "gondor"          
##   [523] "take"             "care"             "least"           
##   [526] "evil"             "creature"         "dishonours"      
##   [529] "bones"            "quickly"          "searched"        
##   [532] "bodies"           "orcs"             "gathering"       
##   [535] "swords"           "cloven"           "helms"           
##   [538] "shields"          "heap"             "see"             
##   [541] "cried"            "aragorn"          "find"            
##   [544] "tokens"           "picked"           "pile"            
##   [547] "grim"             "weapons"          "two"             
##   [550] "knives"           "leaf"             "bladed"          
##   [553] "damasked"         "gold"             "red"             
##   [556] "searching"        "found"            "also"            
##   [559] "sheaths"          "black"            "set"             
##   [562] "small"            "red"              "gems"            
##   [565] "orc"              "tools"            "said"            
##   [568] "borne"            "hobbits"          "doubtless"       
##   [571] "orcs"             "despoiled"        "feared"          
##   [574] "keep"             "knives"           "knowing"         
##   [577] "work"             "westernesse"      "wound"           
##   [580] "spells"           "bane"             "mordor"          
##   [583] "well"             "now"              "still"           
##   [586] "live"             "friends"          "weaponless"      
##   [589] "take"             "things"           "hoping"          
##   [592] "hope"             "give"             "back"            
##   [595] "said"             "legolas"          "take"            
##   [598] "arrows"           "can"              "find"            
##   [601] "quiver"           "empty"            "searched"        
##   [604] "pile"             "ground"           "found"           
##   [607] "undamaged"        "longer"           "shaft"           
##   [610] "arrows"           "orcs"             "accustomed"      
##   [613] "use"              "looked"           "closely"         
##   [616] "aragorn"          "looked"           "slain"           
##   [619] "said"             "lie"              "many"            
##   [622] "folk"             "mordor"           "north"           
##   [625] "misty"            "mountains"        "know"            
##   [628] "anything"         "orcs"             "kinds"           
##   [631] "others"           "strange"          "gear"            
##   [634] "manner"           "orcs"             "four"            
##   [637] "goblin"           "soldiers"         "greater"         
##   [640] "stature"          "swart"            "slant"           
##   [643] "eyed"             "thick"            "legs"            
##   [646] "large"            "hands"            "armed"           
##   [649] "short"            "broad"            "bladed"          
##   [652] "swords"           "curved"           "scimitars"       
##   [655] "usual"            "orcs"             "bows"            
##   [658] "yew"              "length"           "shape"           
##   [661] "like"             "bows"             "men"             
##   [664] "upon"             "shields"          "bore"            
##   [667] "strange"          "device"           "small"           
##   [670] "white"            "hand"             "centre"          
##   [673] "black"            "field"            "front"           
##   [676] "iron"             "helms"            "set"             
##   [679] "rune"             "wrought"          "white"           
##   [682] "metal"            "seen"             "tokens"          
##   [685] "said"             "aragorn"          "mean"            
##   [688] "sauron"           "said"             "gimli"           
##   [691] "easy"             "read"             "nay"             
##   [694] "said"             "legolas"          "sauron"          
##   [697] "use"              "elf"              "runes"           
##   [700] "neither"          "use"              "right"           
##   [703] "name"             "permit"           "spelt"           
##   [706] "spoken"           "said"             "aragorn"         
##   [709] "use"              "white"            "orcs"            
##   [712] "service"          "barad"            "dûr"             
##   [715] "use"              "sign"             "red"             
##   [718] "eye"              "stood"            "moment"          
##   [721] "thought"          "saruman"          "guess"           
##   [724] "said"             "length"           "evil"            
##   [727] "afoot"            "isengard"         "west"            
##   [730] "longer"           "safe"             "gandalf"         
##   [733] "feared"           "means"            "traitor"         
##   [736] "saruman"          "news"             "journey"         
##   [739] "likely"           "knows"            "gandalfs"        
##   [742] "fall"             "pursuers"         "moria"           
##   [745] "may"              "escaped"          "vigilance"       
##   [748] "lórien"           "may"              "avoided"         
##   [751] "land"             "come"             "isengard"        
##   [754] "paths"            "orcs"             "travel"          
##   [757] "fast"             "saruman"          "many"            
##   [760] "ways"             "learning"         "news"            
##   [763] "remember"         "birds"            "well"            
##   [766] "time"             "ponder"           "riddles"         
##   [769] "said"             "gimli"            "let"             
##   [772] "us"               "bear"             "boromir"         
##   [775] "away"             "must"             "guess"           
##   [778] "riddles"          "choose"           "course"          
##   [781] "rightly"          "answered"         "aragorn"         
##   [784] "maybe"            "right"            "choice"          
##   [787] "said"             "gimli"            "taking"          
##   [790] "axe"              "dwarf"            "now"             
##   [793] "cut"              "several"          "branches"        
##   [796] "lashed"           "together"         "bowstrings"      
##   [799] "spread"           "cloaks"           "upon"            
##   [802] "frame"            "upon"             "rough"           
##   [805] "bier"             "carried"          "body"            
##   [808] "companion"        "shore"            "together"        
##   [811] "trophies"         "last"             "battle"          
##   [814] "chose"            "send"             "forth"           
##   [817] "short"            "way"              "yet"             
##   [820] "found"            "easy"             "task"            
##   [823] "boromir"          "man"              "tall"            
##   [826] "strong"           "water"            "side"            
##   [829] "aragorn"          "remained"         "watching"        
##   [832] "bier"             "legolas"          "gimli"           
##   [835] "hastened"         "back"             "foot"            
##   [838] "parth"            "galen"            "mile"            
##   [841] "time"             "came"             "back"            
##   [844] "paddling"         "two"              "boats"           
##   [847] "swiftly"          "along"            "shore"           
##   [850] "strange"          "tale"             "tell"            
##   [853] "said"             "legolas"          "two"             
##   [856] "boats"            "upon"             "bank"            
##   [859] "find"             "trace"            "orcs"            
##   [862] "asked"            "aragorn"          "saw"             
##   [865] "signs"            "answered"         "gimli"           
##   [868] "orcs"             "taken"            "destroyed"       
##   [871] "boats"            "baggage"          "well"            
##   [874] "look"             "ground"           "come"            
##   [877] "said"             "aragorn"          "now"             
##   [880] "laid"             "boromir"          "middle"          
##   [883] "boat"             "bear"             "away"            
##   [886] "grey"             "hood"             "elven"           
##   [889] "cloak"            "folded"           "placed"          
##   [892] "beneath"          "head"             "combed"          
##   [895] "long"             "dark"             "hair"            
##   [898] "arrayed"          "upon"             "shoulders"       
##   [901] "golden"           "belt"             "lórien"          
##   [904] "gleamed"          "waist"            "helm"            
##   [907] "set"              "beside"           "across"          
##   [910] "lap"              "laid"             "cloven"          
##   [913] "horn"             "hilts"            "shards"          
##   [916] "sword"            "beneath"          "feet"            
##   [919] "put"              "swords"           "enemies"         
##   [922] "fastening"        "prow"             "stern"           
##   [925] "boat"             "drew"             "water"           
##   [928] "rowed"            "sadly"            "along"           
##   [931] "shore"            "turning"          "swift"           
##   [934] "running"          "channel"          "passed"          
##   [937] "green"            "sward"            "parth"           
##   [940] "galen"            "steep"            "sides"           
##   [943] "tol"              "brandir"          "glowing"         
##   [946] "now"              "mid"              "afternoon"       
##   [949] "went"             "south"            "fume"            
##   [952] "rauros"           "rose"             "shimmered"       
##   [955] "haze"             "gold"             "rush"            
##   [958] "thunder"          "falls"            "shook"           
##   [961] "windless"         "air"              "sorrowfully"     
##   [964] "cast"             "loose"            "funeral"         
##   [967] "boat"             "boromir"          "lay"             
##   [970] "restful"          "peaceful"         "gliding"         
##   [973] "upon"             "bosom"            "flowing"         
##   [976] "water"            "stream"           "took"            
##   [979] "held"             "boat"             "back"            
##   [982] "paddles"          "floated"          "slowly"          
##   [985] "boat"             "departed"         "waning"          
##   [988] "dark"             "spot"             "golden"          
##   [991] "light"            "suddenly"         "vanished"        
##   [994] "rauros"           "roared"           "unchanging"      
##   [997] "river"            "taken"            "boromir"         
##  [1000] "son"              "denethor"         "seen"            
##  [1003] "minas"            "tirith"           "standing"        
##  [1006] "used"             "stand"            "upon"            
##  [1009] "white"            "tower"            "morning"         
##  [1012] "gondor"           "days"             "long"            
##  [1015] "said"             "elven"            "boat"            
##  [1018] "rode"             "falls"            "foaming"         
##  [1021] "pool"             "bore"             "osgiliath"       
##  [1024] "past"             "many"             "mouths"          
##  [1027] "anduin"           "great"            "sea"             
##  [1030] "night"            "stars"            "three"           
##  [1033] "companions"       "remained"         "silent"          
##  [1036] "gazing"           "aragorn"          "spoke"           
##  [1039] "look"             "white"            "tower"           
##  [1042] "said"             "return"           "mountain"        
##  [1045] "sea"              "slowly"           "began"           
##  [1048] "sing"             "rohan"            "fen"             
##  [1051] "field"            "long"             "grass"           
##  [1054] "grows"            "west"             "wind"            
##  [1057] "comes"            "walking"          "walls"           
##  [1060] "goes"             "news"             "west"            
##  [1063] "wandering"        "wind"             "bring"           
##  [1066] "tonight"          "seen"             "boromir"         
##  [1069] "tall"             "moon"             "starlight"       
##  [1072] "saw"              "ride"             "seven"           
##  [1075] "streams"          "waters"           "wide"            
##  [1078] "grey"             "saw"              "walk"            
##  [1081] "empty"            "lands"            "passed"          
##  [1084] "away"             "shadows"          "north"           
##  [1087] "saw"              "north"            "wind"            
##  [1090] "may"              "heard"            "horn"            
##  [1093] "son"              "denethor"         "boromir"         
##  [1096] "high"             "walls"            "westward"        
##  [1099] "looked"           "afar"             "came"            
##  [1102] "empty"            "lands"            "men"             
##  [1105] "legolas"          "sang"             "mouths"          
##  [1108] "sea"              "south"            "wind"            
##  [1111] "flies"            "sandhills"        "stones"          
##  [1114] "wailing"          "gulls"            "bears"           
##  [1117] "gate"             "moans"            "news"            
##  [1120] "south"            "sighing"          "wind"            
##  [1123] "bring"            "eve"              "now"             
##  [1126] "boromir"          "fair"             "tarries"         
##  [1129] "grieve"           "ask"              "doth"            
##  [1132] "dwell"            "many"             "bones"           
##  [1135] "lie"              "white"            "shores"          
##  [1138] "dark"             "shores"           "stormy"          
##  [1141] "sky"              "many"             "passed"          
##  [1144] "anduin"           "find"             "flowing"         
##  [1147] "sea"              "ask"              "north"           
##  [1150] "wind"             "news"             "north"           
##  [1153] "wind"             "sends"            "boromir"         
##  [1156] "beyond"           "gate"             "seaward"         
##  [1159] "road"             "runs"             "south"           
##  [1162] "came"             "wailing"          "gulls"           
##  [1165] "grey"             "seas"             "mouth"           
##  [1168] "aragorn"          "sang"             "gate"            
##  [1171] "kings"            "north"            "wind"            
##  [1174] "rides"            "past"             "roaring"         
##  [1177] "falls"            "clear"            "cold"            
##  [1180] "tower"            "loud"             "horn"            
##  [1183] "calls"            "news"             "north"           
##  [1186] "mighty"           "wind"             "bring"           
##  [1189] "today"            "news"             "boromir"         
##  [1192] "bold"             "long"             "away"            
##  [1195] "beneath"          "amon"             "hen"             
##  [1198] "heard"            "cry"              "many"            
##  [1201] "foes"             "fought"           "cloven"          
##  [1204] "shield"           "broken"           "sword"           
##  [1207] "water"            "brought"          "head"            
##  [1210] "proud"            "face"             "fair"            
##  [1213] "limbs"            "laid"             "rest"            
##  [1216] "rauros"           "golden"           "rauros"          
##  [1219] "falls"            "bore"             "upon"            
##  [1222] "breast"           "boromir"          "tower"           
##  [1225] "guard"            "shall"            "ever"            
##  [1228] "northward"        "gaze"             "rauros"          
##  [1231] "golden"           "rauros"           "falls"           
##  [1234] "end"              "days"             "ended"           
##  [1237] "turned"           "boat"             "drove"           
##  [1240] "speed"            "stream"           "back"            
##  [1243] "parth"            "galen"            "left"            
##  [1246] "east"             "wind"             "said"            
##  [1249] "gimli"            "say"              "naught"          
##  [1252] "said"             "aragorn"          "minas"           
##  [1255] "tirith"           "endure"           "east"            
##  [1258] "wind"             "ask"              "tidings"         
##  [1261] "now"              "boromir"          "taken"           
##  [1264] "road"             "must"             "make"            
##  [1267] "haste"            "choose"           "surveyed"        
##  [1270] "green"            "lawn"             "quickly"         
##  [1273] "thoroughly"       "stooping"         "often"           
##  [1276] "earth"            "orcs"             "ground"          
##  [1279] "said"             "otherwise"        "nothing"         
##  [1282] "can"              "made"             "certain"         
##  [1285] "footprints"       "crossing"         "re"              
##  [1288] "crossing"         "tell"             "whether"         
##  [1291] "hobbits"          "come"             "back"            
##  [1294] "since"            "search"           "frodo"           
##  [1297] "began"            "returned"         "bank"            
##  [1300] "close"            "rill"             "spring"          
##  [1303] "trickled"         "river"            "clear"           
##  [1306] "prints"           "said"             "hobbit"          
##  [1309] "waded"            "water"            "back"            
##  [1312] "say"              "long"             "ago"             
##  [1315] "read"             "riddle"           "asked"           
##  [1318] "gimli"            "aragorn"          "answer"          
##  [1321] "went"             "back"             "camping"         
##  [1324] "place"            "looked"           "baggage"         
##  [1327] "two"              "packs"            "missing"         
##  [1330] "said"             "one"              "certainly"       
##  [1333] "sams"             "rather"           "large"           
##  [1336] "heavy"            "answer"           "frodo"           
##  [1339] "gone"             "boat"             "servant"         
##  [1342] "gone"             "frodo"            "must"            
##  [1345] "returned"         "away"             "met"             
##  [1348] "sam"              "going"            "hill"            
##  [1351] "told"             "follow"           "plainly"         
##  [1354] "guessed"          "master"           "mind"            
##  [1357] "came"             "back"             "frodo"           
##  [1360] "gone"             "find"             "easy"            
##  [1363] "leave"            "sam"              "behind"          
##  [1366] "leave"            "us"               "behind"          
##  [1369] "without"          "word"             "said"            
##  [1372] "gimli"            "strange"          "deed"            
##  [1375] "brave"            "deed"             "said"            
##  [1378] "aragorn"          "sam"              "right"           
##  [1381] "think"            "frodo"            "wish"            
##  [1384] "lead"             "friend"           "death"           
##  [1387] "mordor"           "knew"             "must"            
##  [1390] "go"               "something"        "happened"        
##  [1393] "left"             "us"               "overcame"        
##  [1396] "fear"             "doubt"            "maybe"           
##  [1399] "hunting"          "orcs"             "came"            
##  [1402] "fled"             "said"             "legolas"         
##  [1405] "fled"             "certainly"        "said"            
##  [1408] "aragorn"          "think"            "orcs"            
##  [1411] "thought"          "cause"            "frodos"          
##  [1414] "sudden"           "resolve"          "flight"          
##  [1417] "aragorn"          "say"              "last"            
##  [1420] "words"            "boromir"          "long"            
##  [1423] "kept"             "secret"           "well"            
##  [1426] "much"             "least"            "now"             
##  [1429] "clear"            "said"             "legolas"         
##  [1432] "frodo"            "longer"           "side"            
##  [1435] "river"            "can"              "taken"           
##  [1438] "boat"             "sam"              "taken"           
##  [1441] "pack"             "choice"           "said"            
##  [1444] "gimli"            "either"           "take"            
##  [1447] "remaining"        "boat"             "follow"          
##  [1450] "frodo"            "else"             "follow"          
##  [1453] "orcs"             "foot"             "little"          
##  [1456] "hope"             "either"           "way"             
##  [1459] "already"          "lost"             "precious"        
##  [1462] "hours"            "let"              "think"           
##  [1465] "said"             "aragorn"          "now"             
##  [1468] "may"              "make"             "right"           
##  [1471] "choice"           "change"           "evil"            
##  [1474] "fate"             "unhappy"          "day"             
##  [1477] "stood"            "silent"           "moment"          
##  [1480] "follow"           "orcs"             "said"            
##  [1483] "last"             "guided"           "frodo"           
##  [1486] "mordor"           "gone"             "end"             
##  [1489] "seek"             "now"              "wilderness"      
##  [1492] "must"             "abandon"          "captives"        
##  [1495] "torment"          "death"            "heart"           
##  [1498] "speaks"           "clearly"          "last"            
##  [1501] "fate"             "bearer"           "hands"           
##  [1504] "longer"           "company"          "played"          
##  [1507] "part"             "yet"              "remain"          
##  [1510] "forsake"          "companions"       "strength"        
##  [1513] "left"             "come"             "go"              
##  [1516] "now"              "leave"            "can"             
##  [1519] "spared"           "behind"           "press"           
##  [1522] "day"              "dark"             "drew"            
##  [1525] "last"             "boat"             "carried"         
##  [1528] "trees"            "laid"             "beneath"         
##  [1531] "goods"            "need"             "carry"           
##  [1534] "away"             "left"             "parth"           
##  [1537] "galen"            "afternoon"        "fading"          
##  [1540] "came"             "back"             "glade"           
##  [1543] "boromir"          "fallen"           "picked"          
##  [1546] "trail"            "orcs"             "needed"          
##  [1549] "little"           "skill"            "find"            
##  [1552] "folk"             "make"             "trampling"       
##  [1555] "said"             "legolas"          "seems"           
##  [1558] "delight"          "slash"            "beat"            
##  [1561] "growing"          "things"           "even"            
##  [1564] "way"              "go"               "great"           
##  [1567] "speed"            "said"             "aragorn"         
##  [1570] "tire"             "later"            "may"             
##  [1573] "search"           "path"             "hard"            
##  [1576] "bare"             "lands"            "well"            
##  [1579] "said"             "gimli"            "dwarves"         
##  [1582] "can"              "go"               "swiftly"         
##  [1585] "tire"             "sooner"           "orcs"            
##  [1588] "long"             "chase"            "long"            
##  [1591] "start"            "yes"              "said"            
##  [1594] "aragorn"          "shall"            "need"            
##  [1597] "endurance"        "dwarves"          "come"            
##  [1600] "hope"             "without"          "hope"            
##  [1603] "follow"           "trail"            "enemies"         
##  [1606] "woe"              "prove"            "swifter"         
##  [1609] "make"             "chase"            "shall"           
##  [1612] "accounted"        "marvel"           "among"           
##  [1615] "three"            "kindreds"         "µ"               
##  [1618] "elves"            "dwarves"          "men"             
##  [1621] "forth"            "three"            "hunters"         
##  [1624] "like"             "deer"             "sprang"          
##  [1627] "away"             "trees"            "sped"            
##  [1630] "led"              "tireless"         "swift"           
##  [1633] "now"              "mind"             "last"            
##  [1636] "made"             "woods"            "lake"            
##  [1639] "left"             "behind"           "long"            
##  [1642] "slopes"           "climbed"          "dark"            
##  [1645] "hard"             "edged"            "sky"             
##  [1648] "already"          "red"              "sunset"          
##  [1651] "dusk"             "came"             "passed"          
##  [1654] "away"             "grey"             "shadows"         
##  [1657] "stony"            "land"             "chapter"         
##  [1660] "riders"           "rohan"            "dusk"            
##  [1663] "deepened"         "mist"             "lay"             
##  [1666] "behind"           "among"            "trees"           
##  [1669] "brooded"          "pale"             "margins"         
##  [1672] "anduin"           "sky"              "clear"           
##  [1675] "stars"            "came"             "waxing"          
##  [1678] "moon"             "riding"           "west"            
##  [1681] "shadows"          "rocks"            "black"           
##  [1684] "come"             "feet"             "stony"           
##  [1687] "hills"            "pace"             "slower"          
##  [1690] "trail"            "longer"           "easy"            
##  [1693] "follow"           "highlands"        "emyn"            
##  [1696] "muil"             "ran"              "north"           
##  [1699] "south"            "two"              "long"            
##  [1702] "tumbled"          "ridges"           "western"         
##  [1705] "side"             "ridge"            "steep"           
##  [1708] "difficult"        "eastward"         "slopes"          
##  [1711] "gentler"          "furrowed"         "many"            
##  [1714] "gullies"          "narrow"           "ravines"         
##  [1717] "night"            "three"            "companions"      
##  [1720] "scrambled"        "bony"             "land"            
##  [1723] "climbing"         "crest"            "first"           
##  [1726] "tallest"          "ridge"            "darkness"        
##  [1729] "deep"             "winding"          "valley"          
##  [1732] "side"             "still"            "cool"            
##  [1735] "hour"             "dawn"             "rested"          
##  [1738] "brief"            "space"            "moon"            
##  [1741] "long"             "gone"             "stars"           
##  [1744] "glittered"        "first"            "light"           
##  [1747] "day"              "yet"              "come"            
##  [1750] "dark"             "hills"            "behind"          
##  [1753] "moment"           "aragorn"          "loss"            
##  [1756] "orc"              "trail"            "descended"       
##  [1759] "valley"           "vanished"         "way"             
##  [1762] "turn"             "think"            "said"            
##  [1765] "legolas"          "northward"        "take"            
##  [1768] "straighter"       "road"             "isengard"        
##  [1771] "fangorn"          "aim"              "guess"           
##  [1774] "southward"        "strike"           "entwash"         
##  [1777] "make"             "river"            "whatever"        
##  [1780] "mark"             "aim"              "said"            
##  [1783] "aragorn"          "unless"           "much"            
##  [1786] "amiss"            "rohan"            "power"           
##  [1789] "saruman"          "greatly"          "increased"       
##  [1792] "take"             "shortest"         "way"             
##  [1795] "can"              "find"             "fields"          
##  [1798] "rohirrim"         "let"              "us"              
##  [1801] "search"           "northwards"       "dale"            
##  [1804] "ran"              "like"             "stony"           
##  [1807] "trough"           "ridged"           "hills"           
##  [1810] "trickling"        "stream"           "flowed"          
##  [1813] "among"            "boulders"         "bottom"          
##  [1816] "cliff"            "frowned"          "upon"            
##  [1819] "right"            "left"             "rose"            
##  [1822] "grey"             "slopes"           "dim"             
##  [1825] "shadowy"          "late"             "night"           
##  [1828] "went"             "mile"             "northwards"      
##  [1831] "aragorn"          "searching"        "bent"            
##  [1834] "towards"          "ground"           "among"           
##  [1837] "folds"            "gullies"          "leading"         
##  [1840] "western"          "ridge"            "legolas"         
##  [1843] "way"              "ahead"            "suddenly"        
##  [1846] "elf"              "gave"             "cry"             
##  [1849] "others"           "came"             "running"         
##  [1852] "towards"          "already"          "overtaken"       
##  [1855] "hunting"          "said"             "look"            
##  [1858] "pointed"          "saw"              "first"           
##  [1861] "taken"            "boulders"         "lying"           
##  [1864] "foot"             "slope"            "huddled"         
##  [1867] "bodies"           "five"             "dead"            
##  [1870] "orcs"             "lay"              "hewn"            
##  [1873] "many"             "cruel"            "strokes"         
##  [1876] "two"              "beheaded"         "ground"          
##  [1879] "wet"              "dark"             "blood"           
##  [1882] "another"          "riddle"           "said"            
##  [1885] "gimli"            "needs"            "light"           
##  [1888] "day"              "wait"             "yet"             
##  [1891] "however"          "read"             "seems"           
##  [1894] "unhopeful"        "said"             "legolas"         
##  [1897] "enemies"          "orcs"             "likely"          
##  [1900] "friends"          "folk"             "dwell"           
##  [1903] "hills"            "said"             "aragorn"         
##  [1906] "rohirrim"         "seldom"           "come"            
##  [1909] "far"              "minas"            "tirith"          
##  [1912] "might"            "company"          "men"             
##  [1915] "hunting"          "reasons"          "know"            
##  [1918] "yet"              "think"            "think"           
##  [1921] "said"             "gimli"            "think"           
##  [1924] "enemy"            "brought"          "enemy"           
##  [1927] "answered"         "aragorn"          "northern"        
##  [1930] "orcs"             "far"              "away"            
##  [1933] "among"            "slain"            "none"            
##  [1936] "great"            "orcs"             "strange"         
##  [1939] "badges"           "quarrel"          "guess"           
##  [1942] "uncommon"         "thing"            "foul"            
##  [1945] "folk"             "maybe"            "dispute"         
##  [1948] "road"             "captives"         "said"            
##  [1951] "gimli"            "let"              "us"              
##  [1954] "hope"             "meet"             "end"             
##  [1957] "aragorn"          "searched"         "ground"          
##  [1960] "wide"             "circle"           "traces"          
##  [1963] "fight"            "found"            "went"            
##  [1966] "already"          "eastward"         "sky"             
##  [1969] "turning"          "pale"             "stars"           
##  [1972] "fading"           "grey"             "light"           
##  [1975] "slowly"           "growing"          "little"          
##  [1978] "north"            "came"             "fold"            
##  [1981] "tiny"             "stream"           "falling"         
##  [1984] "winding"          "cut"              "stony"           
##  [1987] "path"             "valley"           "bushes"          
##  [1990] "grew"             "patches"          "grass"           
##  [1993] "upon"             "sides"            "last"            
##  [1996] "said"             "aragorn"          "tracks"          
##  [1999] "seek"             "water"            "channel"         
##  [2002] "way"              "orcs"             "went"            
##  [2005] "debate"           "swiftly"          "now"             
##  [2008] "pursuers"         "turned"           "followed"        
##  [2011] "new"              "path"             "fresh"           
##  [2014] "nights"           "rest"             "sprang"          
##  [2017] "stone"            "stone"            "last"            
##  [2020] "reached"          "crest"            "grey"            
##  [2023] "hill"             "sudden"           "breeze"          
##  [2026] "blew"             "hair"             "stirred"         
##  [2029] "cloaks"           "chill"            "wind"            
##  [2032] "dawn"             "turning"          "back"            
##  [2035] "saw"              "across"           "river"           
##  [2038] "far"              "hills"            "kindled"         
##  [2041] "day"              "leaped"           "sky"             
##  [2044] "red"              "rim"              "sun"             
##  [2047] "rose"             "shoulders"        "dark"            
##  [2050] "land"             "west"             "world"           
##  [2053] "lay"              "still"            "formless"        
##  [2056] "grey"             "even"             "looked"          
##  [2059] "shadows"          "night"            "melted"          
##  [2062] "colours"          "waking"           "earth"           
##  [2065] "returned"         "green"            "flowed"          
##  [2068] "wide"             "meads"            "rohan"           
##  [2071] "white"            "mists"            "shimmered"       
##  [2074] "watervales"       "far"              "left"            
##  [2077] "thirty"           "leagues"          "blue"            
##  [2080] "purple"           "stood"            "white"           
##  [2083] "mountains"        "rising"           "peaks"           
##  [2086] "jet"              "tipped"           "glimmering"      
##  [2089] "snows"            "flushed"          "rose"            
##  [2092] "morning"          "gondor"           "gondor"          
##  [2095] "cried"            "aragorn"          "looked"          
##  [2098] "happier"          "hour"             "yet"             
##  [2101] "road"             "lie"              "southward"       
##  [2104] "bright"           "streams"          "gondor"          
##  [2107] "gondor"           "mountains"        "sea"             
##  [2110] "west"             "wind"             "blew"            
##  [2113] "light"            "upon"             "silver"          
##  [2116] "tree"             "fell"             "like"            
##  [2119] "bright"           "rain"             "gardens"         
##  [2122] "kings"            "old"              "proud"           
##  [2125] "walls"            "white"            "towers"          
##  [2128] "winged"           "crown"            "throne"          
##  [2131] "gold"             "gondor"           "gondor"          
##  [2134] "shall"            "men"              "behold"          
##  [2137] "silver"           "tree"             "west"            
##  [2140] "wind"             "blow"             "mountains"       
##  [2143] "sea"              "now"              "let"             
##  [2146] "us"               "go"               "said"            
##  [2149] "drawing"          "eyes"             "away"            
##  [2152] "south"            "looking"          "west"            
##  [2155] "north"            "way"              "must"            
##  [2158] "tread"            "ridge"            "upon"            
##  [2161] "companions"       "stood"            "went"            
##  [2164] "steeply"          "feet"             "twenty"          
##  [2167] "fathoms"          "wide"             "rugged"          
##  [2170] "shelf"            "ended"            "suddenly"        
##  [2173] "brink"            "sheer"            "cliff"           
##  [2176] "east"             "wall"             "rohan"           
##  [2179] "ended"            "emyn"             "muil"            
##  [2182] "green"            "plains"           "rohirrim"        
##  [2185] "stretched"        "away"             "edge"            
##  [2188] "sight"            "look"             "cried"           
##  [2191] "legolas"          "pointing"         "pale"            
##  [2194] "sky"              "eagle"            "high"            
##  [2197] "seems"            "flying"           "now"             
##  [2200] "away"             "land"             "back"            
##  [2203] "north"            "going"            "great"           
##  [2206] "speed"            "look"             "even"            
##  [2209] "eyes"             "can"              "see"             
##  [2212] "good"             "legolas"          "said"            
##  [2215] "aragorn"          "must"             "far"             
##  [2218] "aloft"            "indeed"           "wonder"          
##  [2221] "errand"           "bird"             "seen"            
##  [2224] "look"             "can"              "see"             
##  [2227] "something"        "nearer"           "hand"            
##  [2230] "urgent"           "something"        "moving"          
##  [2233] "plain"            "many"             "things"          
##  [2236] "said"             "legolas"          "great"           
##  [2239] "company"          "foot"             "say"             
##  [2242] "see"              "kind"             "folk"            
##  [2245] "may"              "many"             "leagues"         
##  [2248] "away"             "twelve"           "guess"           
##  [2251] "flatness"         "plain"            "hard"            
##  [2254] "measure"          "think"            "nonetheless"     
##  [2257] "longer"           "need"             "trail"           
##  [2260] "tell"             "us"               "way"             
##  [2263] "go"               "said"             "gimli"           
##  [2266] "let"              "us"               "find"            
##  [2269] "path"             "fields"           "quick"           
##  [2272] "may"              "doubt"            "find"            
##  [2275] "path"             "quicker"          "one"             
##  [2278] "orcs"             "chose"            "said"            
##  [2281] "aragorn"          "followed"         "enemies"         
##  [2284] "now"              "clear"            "light"           
##  [2287] "day"              "seemed"           "orcs"            
##  [2290] "pressed"          "possible"         "speed"           
##  [2293] "every"            "now"              "pursuers"        
##  [2296] "found"            "things"           "dropped"         
##  [2299] "cast"             "away"             "food"            
##  [2302] "bags"             "rinds"            "crusts"          
##  [2305] "hard"             "grey"             "bread"           
##  [2308] "torn"             "black"            "cloak"           
##  [2311] "heavy"            "iron"             "nailed"          
##  [2314] "shoe"             "broken"           "stones"          
##  [2317] "trail"            "led"              "north"           
##  [2320] "along"            "top"              "escarpment"      
##  [2323] "length"           "came"             "deep"            
##  [2326] "cleft"            "carved"           "rock"            
##  [2329] "stream"           "splashed"         "noisily"         
##  [2332] "narrow"           "ravine"           "rough"           
##  [2335] "path"             "descended"        "like"            
##  [2338] "steep"            "stair"            "plain"           
##  [2341] "bottom"           "came"             "strange"         
##  [2344] "suddenness"       "grass"            "rohan"           
##  [2347] "swelled"          "like"             "green"           
##  [2350] "sea"              "foot"             "emyn"            
##  [2353] "muil"             "falling"          "stream"          
##  [2356] "vanished"         "deep"             "growth"          
##  [2359] "cresses"          "water"            "plants"          
##  [2362] "hear"             "tinkling"         "away"            
##  [2365] "green"            "tunnels"          "long"            
##  [2368] "gentle"           "slopes"           "towards"         
##  [2371] "fens"             "entwash"          "vale"            
##  [2374] "far"              "away"             "seemed"          
##  [2377] "left"             "winter"           "clinging"        
##  [2380] "hills"            "behind"           "air"             
##  [2383] "softer"           "warmer"           "faintly"         
##  [2386] "scented"          "spring"           "already"         
##  [2389] "stirring"         "sap"              "flowing"         
##  [2392] "herb"             "leaf"             "legolas"         
##  [2395] "took"             "deep"             "breath"          
##  [2398] "like"             "one"              "drinks"          
##  [2401] "great"            "draught"          "long"            
##  [2404] "thirst"           "barren"           "places"          
##  [2407] "ah"               "green"            "smell"           
##  [2410] "said"             "better"           "much"            
##  [2413] "sleep"            "let"              "us"              
##  [2416] "run"              "light"            "feet"            
##  [2419] "may"              "run"              "swiftly"         
##  [2422] "said"             "aragorn"          "swiftly"         
##  [2425] "maybe"            "iron"             "shod"            
##  [2428] "orcs"             "now"              "chance"          
##  [2431] "lessen"           "lead"             "went"            
##  [2434] "single"           "file"             "running"         
##  [2437] "like"             "hounds"           "strong"          
##  [2440] "scent"            "eager"            "light"           
##  [2443] "eyes"             "nearly"           "due"             
##  [2446] "west"             "broad"            "swath"           
##  [2449] "marching"         "orcs"             "tramped"         
##  [2452] "ugly"             "slot"             "sweet"           
##  [2455] "grass"            "rohan"            "bruised"         
##  [2458] "blackened"        "passed"           "presently"       
##  [2461] "aragorn"          "gave"             "cry"             
##  [2464] "turned"           "aside"            "stay"            
##  [2467] "shouted"          "follow"           "yet"             
##  [2470] "ran"              "quickly"          "right"           
##  [2473] "away"             "main"             "trail"           
##  [2476] "seen"             "footprints"       "went"            
##  [2479] "way"              "branching"        "others"          
##  [2482] "marks"            "small"            "unshod"          
##  [2485] "feet"             "however"          "go"              
##  [2488] "far"              "crossed"          "orc"             
##  [2491] "prints"           "also"             "coming"          
##  [2494] "main"             "trail"            "behind"          
##  [2497] "front"            "curved"           "sharply"         
##  [2500] "back"             "lost"             "trampling"       
##  [2503] "furthest"         "point"            "aragorn"         
##  [2506] "stooped"          "picked"           "something"       
##  [2509] "grass"            "ran"              "back"            
##  [2512] "yes"              "said"             "quite"           
##  [2515] "plain"            "hobbits"          "footprints"      
##  [2518] "pippins"          "think"            "smaller"         
##  [2521] "look"             "held"             "thing"           
##  [2524] "glittered"        "sunlight"         "looked"          
##  [2527] "like"             "new"              "opened"          
##  [2530] "leaf"             "beech"            "tree"            
##  [2533] "fair"             "strange"          "treeless"        
##  [2536] "plain"            "brooch"           "elven"           
##  [2539] "cloak"            "cried"            "legolas"         
##  [2542] "gimli"            "together"         "idly"            
##  [2545] "leaves"           "lórien"           "fall"            
##  [2548] "said"             "aragorn"          "drop"            
##  [2551] "chance"           "cast"             "away"            
##  [2554] "token"            "might"            "follow"          
##  [2557] "think"            "pippin"           "ran"             
##  [2560] "away"             "trail"            "purpose"         
##  [2563] "least"            "alive"            "said"            
##  [2566] "gimli"            "use"              "wits"            
##  [2569] "legs"             "heartening"       "pursue"          
##  [2572] "vain"             "let"              "us"              
##  [2575] "hope"             "pay"              "dearly"          
##  [2578] "boldness"         "said"             "legolas"         
##  [2581] "come"             "let"              "us"              
##  [2584] "go"               "thought"          "merry"           
##  [2587] "young"            "folk"             "driven"          
##  [2590] "like"             "cattle"           "burns"           
##  [2593] "heart"            "sun"              "climbed"         
##  [2596] "noon"             "rode"             "slowly"          
##  [2599] "sky"              "light"            "clouds"          
##  [2602] "came"             "sea"              "distant"         
##  [2605] "south"            "blown"            "away"            
##  [2608] "upon"             "breeze"           "sun"             
##  [2611] "sank"             "shadows"          "rose"            
##  [2614] "behind"           "reached"          "long"            
##  [2617] "arms"             "east"             "still"           
##  [2620] "hunters"          "held"             "one"             
##  [2623] "day"              "now"              "passed"          
##  [2626] "since"            "boromir"          "fell"            
##  [2629] "orcs"             "yet"              "far"             
##  [2632] "ahead"            "longer"           "sight"           
##  [2635] "seen"             "level"            "plains"          
##  [2638] "nightshade"       "closing"          "aragorn"         
##  [2641] "halted"           "twice"            "days"            
##  [2644] "march"            "rested"           "brief"           
##  [2647] "twelve"           "leagues"          "now"             
##  [2650] "lay"              "eastern"          "wall"            
##  [2653] "stood"            "dawn"             "come"            
##  [2656] "last"             "hard"             "choice"          
##  [2659] "said"             "shall"            "rest"            
##  [2662] "night"            "shall"            "go"              
##  [2665] "strength"         "hold"             "unless"          
##  [2668] "enemies"          "rest"             "also"            
##  [2671] "leave"            "us"               "far"             
##  [2674] "behind"           "stay"             "sleep"           
##  [2677] "said"             "legolas"          "surely"          
##  [2680] "even"             "orcs"             "must"            
##  [2683] "pause"            "march"            "said"            
##  [2686] "gimli"            "seldom"           "orcs"            
##  [2689] "journey"          "open"             "sun"             
##  [2692] "yet"              "done"             "said"            
##  [2695] "legolas"          "certainly"        "rest"            
##  [2698] "night"            "walk"             "night"           
##  [2701] "follow"           "trail"            "said"            
##  [2704] "gimli"            "trail"            "straight"        
##  [2707] "turns"            "neither"          "right"           
##  [2710] "left"             "far"              "eyes"            
##  [2713] "can"              "see"              "said"            
##  [2716] "legolas"          "maybe"            "lead"            
##  [2719] "guess"            "darkness"         "hold"            
##  [2722] "line"             "said"             "aragorn"         
##  [2725] "strayed"          "turned"           "aside"           
##  [2728] "light"            "came"             "might"           
##  [2731] "long"             "delay"            "trail"           
##  [2734] "found"            "also"             "said"            
##  [2737] "gimli"            "day"              "can"             
##  [2740] "see"              "tracks"           "lead"            
##  [2743] "away"             "prisoner"         "escape"          
##  [2746] "one"              "carried"          "eastward"        
##  [2749] "say"              "great"            "river"           
##  [2752] "towards"          "mordor"           "might"           
##  [2755] "pass"             "signs"            "never"           
##  [2758] "know"             "true"             "said"            
##  [2761] "aragorn"          "read"             "signs"           
##  [2764] "back"             "yonder"           "rightly"         
##  [2767] "orcs"             "white"            "hand"            
##  [2770] "prevailed"        "whole"            "company"         
##  [2773] "now"              "bound"            "isengard"        
##  [2776] "present"          "course"           "bears"           
##  [2779] "yet"              "rash"             "sure"            
##  [2782] "counsels"         "said"             "gimli"           
##  [2785] "escape"           "dark"             "passed"          
##  [2788] "signs"            "led"              "brooch"          
##  [2791] "orcs"             "doubly"           "guard"           
##  [2794] "since"            "prisoners"        "even"            
##  [2797] "wearier"          "said"             "legolas"         
##  [2800] "escape"           "contrive"         "done"            
##  [2803] "guessed"          "first"            "must"            
##  [2806] "overtake"         "yet"              "even"            
##  [2809] "dwarf"            "many"             "journeys"        
##  [2812] "least"            "hardy"            "folk"            
##  [2815] "run"              "way"              "isengard"        
##  [2818] "without"          "pause"            "said"            
##  [2821] "gimli"            "heart"            "burns"           
##  [2824] "started"          "sooner"           "now"             
##  [2827] "must"             "rest"             "little"          
##  [2830] "run"              "better"           "rest"            
##  [2833] "blind"            "night"            "time"            
##  [2836] "said"             "hard"             "choice"          
##  [2839] "said"             "aragorn"          "shall"           
##  [2842] "end"              "debate"           "guide"           
##  [2845] "said"             "gimli"            "skilled"         
##  [2848] "chase"            "shall"            "choose"          
##  [2851] "heart"            "bids"             "go"              
##  [2854] "said"             "legolas"          "must"            
##  [2857] "hold"             "together"         "follow"          
##  [2860] "counsel"          "give"             "choice"          
##  [2863] "ill"              "chooser"          "said"            
##  [2866] "aragorn"          "since"            "passed"          
##  [2869] "argonath"         "choices"          "gone"            
##  [2872] "amiss"            "fell"             "silent"          
##  [2875] "gazing"           "north"            "west"            
##  [2878] "gathering"        "night"            "long"            
##  [2881] "walk"             "dark"             "said"            
##  [2884] "length"           "peril"            "missing"         
##  [2887] "trail"            "signs"            "coming"          
##  [2890] "going"            "seems"            "greater"         
##  [2893] "moon"             "gave"             "enough"          
##  [2896] "light"            "use"              "alas"            
##  [2899] "sets"             "early"            "yet"             
##  [2902] "young"            "pale"             "tonight"         
##  [2905] "shrouded"         "anyway"           "gimli"           
##  [2908] "murmured"         "lady"             "given"           
##  [2911] "us"               "light"            "gift"            
##  [2914] "gave"             "frodo"            "needed"          
##  [2917] "bestowed"         "said"             "aragorn"         
##  [2920] "lies"             "true"             "quest"           
##  [2923] "small"            "matter"           "great"           
##  [2926] "deeds"            "time"             "vain"            
##  [2929] "pursuit"          "beginning"        "maybe"           
##  [2932] "choice"           "mine"             "can"             
##  [2935] "mar"              "mend"             "well"            
##  [2938] "chosen"           "let"              "us"              
##  [2941] "use"              "time"             "best"            
##  [2944] "may"              "cast"             "ground"          
##  [2947] "fell"             "sleep"            "slept"           
##  [2950] "since"            "night"            "shadow"          
##  [2953] "tol"              "brandir"          "dawn"            
##  [2956] "sky"              "woke"             "rose"            
##  [2959] "gimli"            "still"            "deep"            
##  [2962] "slumber"          "legolas"          "standing"        
##  [2965] "gazing"           "northwards"       "darkness"        
##  [2968] "thoughtful"       "silent"           "young"           
##  [2971] "tree"             "windless"         "night"           
##  [2974] "far"              "far"              "away"            
##  [2977] "said"             "sadly"            "turning"         
##  [2980] "aragorn"          "know"             "heart"           
##  [2983] "rested"           "night"            "eagle"           
##  [2986] "overtake"         "now"              "nonetheless"     
##  [2989] "still"            "follow"           "may"             
##  [2992] "said"             "aragorn"          "stooping"        
##  [2995] "roused"           "dwarf"            "come"            
##  [2998] "must"             "go"               "said"            
##  [3001] "scent"            "growing"          "cold"            
##  [3004] "still"            "dark"             "said"            
##  [3007] "gimli"            "even"             "legolas"         
##  [3010] "hill"             "top"              "see"             
##  [3013] "till"             "sun"              "fear"            
##  [3016] "passed"           "beyond"           "sight"           
##  [3019] "hill"             "plain"            "moon"            
##  [3022] "sun"              "said"             "legolas"         
##  [3025] "sight"            "fails"            "earth"           
##  [3028] "may"              "bring"            "us"              
##  [3031] "rumour"           "said"             "aragorn"         
##  [3034] "land"             "must"             "groan"           
##  [3037] "hated"            "feet"             "stretched"       
##  [3040] "upon"             "ground"           "ear"             
##  [3043] "pressed"          "turf"             "lay"             
##  [3046] "motionless"       "long"             "time"            
##  [3049] "gimli"            "wondered"         "swooned"         
##  [3052] "fallen"           "asleep"           "dawn"            
##  [3055] "came"             "glimmering"       "slowly"          
##  [3058] "grey"             "light"            "grew"            
##  [3061] "last"             "rose"             "now"             
##  [3064] "friends"          "see"              "face"            
##  [3067] "pale"             "drawn"            "look"            
##  [3070] "troubled"         "rumour"           "earth"           
##  [3073] "dim"              "confused"         "said"            
##  [3076] "nothing"          "walks"            "upon"            
##  [3079] "many"             "miles"            "us"              
##  [3082] "faint"            "far"              "feet"            
##  [3085] "enemies"          "loud"             "hoofs"           
##  [3088] "horses"           "comes"            "mind"            
##  [3091] "heard"            "even"             "lay"             
##  [3094] "ground"           "sleep"            "troubled"        
##  [3097] "dreams"           "horses"           "galloping"       
##  [3100] "passing"          "west"             "now"             
##  [3103] "drawing"          "ever"             "us"              
##  [3106] "riding"           "northward"        "wonder"          
##  [3109] "happening"        "land"             "let"             
##  [3112] "us"               "go"               "said"            
##  [3115] "legolas"          "third"            "day"             
##  [3118] "pursuit"          "began"            "long"            
##  [3121] "hours"            "cloud"            "fitful"          
##  [3124] "sun"              "hardly"           "paused"          
##  [3127] "now"              "striding"         "now"             
##  [3130] "running"          "weariness"        "quench"          
##  [3133] "fire"             "burned"           "seldom"          
##  [3136] "spoke"            "wide"             "solitude"        
##  [3139] "passed"           "elven"            "cloaks"          
##  [3142] "faded"            "background"       "grey"            
##  [3145] "green"            "fields"           "even"            
##  [3148] "cool"             "sunlight"         "mid"             
##  [3151] "day"              "elvish"           "eyes"            
##  [3154] "marked"           "close"            "hand"            
##  [3157] "often"            "hearts"           "thanked"         
##  [3160] "lady"             "lórien"           "gift"            
##  [3163] "lembas"           "eat"              "find"            
##  [3166] "new"              "strength"         "even"            
##  [3169] "ran"              "day"              "track"           
##  [3172] "enemies"          "led"              "straight"        
##  [3175] "going"            "north"            "west"            
##  [3178] "without"          "break"            "turn"            
##  [3181] "day"              "wore"             "end"             
##  [3184] "came"             "long"             "treeless"        
##  [3187] "slopes"           "land"             "rose"            
##  [3190] "swelling"         "towards"          "line"            
##  [3193] "low"              "humpbacked"       "downs"           
##  [3196] "ahead"            "orc"              "trail"           
##  [3199] "grew"             "fainter"          "bent"            
##  [3202] "north"            "towards"          "ground"          
##  [3205] "became"           "harder"           "grass"           
##  [3208] "shorter"          "far"              "away"            
##  [3211] "left"             "river"            "entwash"         
##  [3214] "wound"            "silver"           "thread"          
##  [3217] "green"            "floor"            "moving"          
##  [3220] "thing"            "seen"             "often"           
##  [3223] "aragorn"          "wondered"         "saw"             
##  [3226] "sign"             "beast"            "man"             
##  [3229] "dwellings"        "rohirrim"         "part"            
##  [3232] "many"             "leagues"          "away"            
##  [3235] "south"            "wooded"           "eaves"           
##  [3238] "white"            "mountains"        "now"             
##  [3241] "hidden"           "mist"             "cloud"           
##  [3244] "yet"              "horse"            "lords"           
##  [3247] "formerly"         "kept"             "many"            
##  [3250] "herds"            "studs"            "eastemnet"       
##  [3253] "easterly"         "region"           "realm"           
##  [3256] "herdsmen"         "wandered"         "much"            
##  [3259] "living"           "camp"             "tent"            
##  [3262] "even"             "winter"           "time"            
##  [3265] "now"              "land"             "empty"           
##  [3268] "silence"          "seem"             "quiet"           
##  [3271] "peace"            "dusk"             "halted"          
##  [3274] "now"              "twice"            "twelve"          
##  [3277] "leagues"          "passed"           "plains"          
##  [3280] "rohan"            "wall"             "emyn"            
##  [3283] "muil"             "lost"             "shadows"         
##  [3286] "east"             "young"            "moon"            
##  [3289] "glimmering"       "misty"            "sky"             
##  [3292] "gave"             "small"            "light"           
##  [3295] "stars"            "veiled"           "now"             
##  [3298] "grudge"           "time"             "rest"            
##  [3301] "halt"             "chase"            "said"            
##  [3304] "legolas"          "orcs"             "run"             
##  [3307] "us"               "whips"            "sauron"          
##  [3310] "behind"           "fear"             "already"         
##  [3313] "reached"          "forest"           "dark"            
##  [3316] "hills"            "even"             "now"             
##  [3319] "passing"          "shadows"          "trees"           
##  [3322] "gimli"            "ground"           "teeth"           
##  [3325] "bitter"           "end"              "hope"            
##  [3328] "toil"             "said"             "hope"            
##  [3331] "maybe"            "toil"             "said"            
##  [3334] "aragorn"          "shall"            "turn"            
##  [3337] "back"             "yet"              "weary"           
##  [3340] "gazed"            "back"             "along"           
##  [3343] "way"              "come"             "towards"         
##  [3346] "night"            "gathering"        "east"            
##  [3349] "something"        "strange"          "work"            
##  [3352] "land"             "distrust"         "silence"         
##  [3355] "distrust"         "even"             "pale"            
##  [3358] "moon"             "stars"            "faint"           
##  [3361] "weary"            "seldom"           "weary"           
##  [3364] "ranger"           "clear"            "trail"           
##  [3367] "follow"           "lends"            "speed"           
##  [3370] "foes"             "sets"             "unseen"          
##  [3373] "barrier"          "us"               "weariness"       
##  [3376] "heart"            "limb"             "truly"           
##  [3379] "said"             "legolas"          "known"           
##  [3382] "since"            "first"            "came"            
##  [3385] "emyn"             "muil"             "behind"          
##  [3388] "us"               "us"               "pointed"         
##  [3391] "away"             "land"             "rohan"           
##  [3394] "darkling"         "west"             "sickle"          
##  [3397] "moon"             "saruman"          "muttered"        
##  [3400] "aragorn"          "shall"            "turn"            
##  [3403] "us"               "back"             "halt"            
##  [3406] "must"             "see"              "even"            
##  [3409] "moon"             "falling"          "gathering"       
##  [3412] "cloud"            "north"            "lies"            
##  [3415] "road"             "fen"              "day"             
##  [3418] "returns"          "legolas"          "first"           
##  [3421] "afoot"            "indeed"           "ever"            
##  [3424] "slept"            "awake"            "awake"           
##  [3427] "cried"            "red"              "dawn"            
##  [3430] "strange"          "things"           "await"           
##  [3433] "us"               "eaves"            "forest"          
##  [3436] "good"             "evil"             "know"            
##  [3439] "called"           "awake"            "others"          
##  [3442] "sprang"           "almost"           "set"             
##  [3445] "slowly"           "downs"            "drew"            
##  [3448] "near"             "still"            "hour"            
##  [3451] "noon"             "reached"          "green"           
##  [3454] "slopes"           "rising"           "bare"            
##  [3457] "ridges"           "ran"              "line"            
##  [3460] "straight"         "towards"          "north"           
##  [3463] "feet"             "ground"           "dry"             
##  [3466] "turf"             "short"            "long"            
##  [3469] "strip"            "sunken"           "land"            
##  [3472] "ten"              "miles"            "wide"            
##  [3475] "lay"              "river"            "wandering"       
##  [3478] "deep"             "dim"              "thickets"        
##  [3481] "reed"             "rush"             "just"            
##  [3484] "west"             "southernmost"     "slope"           
##  [3487] "great"            "ring"             "turf"            
##  [3490] "torn"             "beaten"           "many"            
##  [3493] "trampling"        "feet"             "orc"             
##  [3496] "trail"            "ran"              "turning"         
##  [3499] "north"            "along"            "dry"             
##  [3502] "skirts"           "hills"            "aragorn"         
##  [3505] "halted"           "examined"         "tracks"          
##  [3508] "closely"          "rested"           "said"            
##  [3511] "even"             "outward"          "trail"           
##  [3514] "already"          "old"              "fear"            
##  [3517] "heart"            "spoke"            "truly"           
##  [3520] "legolas"          "thrice"           "twelve"          
##  [3523] "hours"            "guess"            "since"           
##  [3526] "orcs"             "stood"            "now"             
##  [3529] "stand"            "held"             "pace"            
##  [3532] "sundown"          "yesterday"        "reach"           
##  [3535] "borders"          "fangorn"          "can"             
##  [3538] "see"              "nothing"          "away"            
##  [3541] "north"            "west"             "grass"           
##  [3544] "dwindling"        "mist"             "said"            
##  [3547] "gimli"            "see"              "forest"          
##  [3550] "climbed"          "hills"            "still"           
##  [3553] "far"              "away"             "said"            
##  [3556] "aragorn"          "remember"         "rightly"         
##  [3559] "downs"            "run"              "eight"           
##  [3562] "leagues"          "north"            "north"           
##  [3565] "west"             "issuing"          "entwash"         
##  [3568] "lies"             "still"            "wide"            
##  [3571] "land"             "another"          "fifteen"         
##  [3574] "leagues"          "may"              "well"            
##  [3577] "let"              "us"               "go"              
##  [3580] "said"             "gimli"            "legs"            
##  [3583] "must"             "forget"           "miles"           
##  [3586] "willing"          "heart"            "less"            
##  [3589] "heavy"            "sun"              "sinking"         
##  [3592] "last"             "drew"             "near"            
##  [3595] "end"              "line"             "downs"           
##  [3598] "many"             "hours"            "marched"         
##  [3601] "without"          "rest"             "going"           
##  [3604] "slowly"           "now"              "gimlis"          
##  [3607] "back"             "bent"             "stone"           
##  [3610] "hard"             "dwarves"          "labour"          
##  [3613] "journey"          "endless"          "chase"           
##  [3616] "began"            "tell"             "hope"            
##  [3619] "failed"           "heart"            "aragorn"         
##  [3622] "walked"           "behind"           "grim"            
##  [3625] "silent"           "stooping"         "now"             
##  [3628] "scan"             "print"            "mark"            
##  [3631] "upon"             "ground"           "legolas"         
##  [3634] "still"            "stepped"          "lightly"         
##  [3637] "ever"             "feet"             "hardly"          
##  [3640] "seeming"          "press"            "grass"           
##  [3643] "leaving"          "footprints"       "passed"          
##  [3646] "waybread"         "elves"            "found"           
##  [3649] "sustenance"       "needed"           "sleep"           
##  [3652] "sleep"            "called"           "men"             
##  [3655] "resting"          "mind"             "strange"         
##  [3658] "paths"            "elvish"           "dreams"          
##  [3661] "even"             "walked"           "open"            
##  [3664] "eyed"             "light"            "world"           
##  [3667] "let"              "us"               "go"              
##  [3670] "green"            "hill"             "said"            
##  [3673] "wearily"          "followed"         "climbing"        
##  [3676] "long"             "slope"            "came"            
##  [3679] "upon"             "top"              "round"           
##  [3682] "hill"             "smooth"           "bare"            
##  [3685] "standing"         "northerly"        "downs"           
##  [3688] "sun"              "sank"             "shadows"         
##  [3691] "evening"          "fell"             "like"            
##  [3694] "curtain"          "alone"            "grey"            
##  [3697] "formless"         "world"            "without"         
##  [3700] "mark"             "measure"          "far"             
##  [3703] "away"             "north"            "west"            
##  [3706] "deeper"           "darkness"         "dying"           
##  [3709] "light"            "mountains"        "mist"            
##  [3712] "forest"           "feet"             "nothing"         
##  [3715] "can"              "see"              "guide"           
##  [3718] "us"               "said"             "gimli"           
##  [3721] "well"             "now"              "must"            
##  [3724] "halt"             "wear"             "night"           
##  [3727] "away"             "growing"          "cold"            
##  [3730] "wind"             "north"            "snows"           
##  [3733] "said"             "aragorn"          "ere"             
##  [3736] "morning"          "east"             "said"            
##  [3739] "legolas"          "rest"             "must"            
##  [3742] "yet"              "cast"             "hope"            
##  [3745] "away"             "tomorrow"         "unknown"         
##  [3748] "rede"             "oft"              "found"           
##  [3751] "rising"           "sun"              "three"           
##  [3754] "suns"             "already"          "risen"           
##  [3757] "chase"            "brought"          "counsel"         
##  [3760] "said"             "gimli"            "night"           
##  [3763] "grew"             "ever"             "colder"          
##  [3766] "aragorn"          "gimli"            "slept"           
##  [3769] "fitfully"         "whenever"         "awoke"           
##  [3772] "saw"              "legolas"          "standing"        
##  [3775] "beside"           "walking"          "fro"             
##  [3778] "singing"          "softly"           "tongue"          
##  [3781] "sang"             "white"            "stars"           
##  [3784] "opened"           "hard"             "black"           
##  [3787] "vault"            "night"            "passed"          
##  [3790] "together"         "watched"          "dawn"            
##  [3793] "grow"             "slowly"           "sky"             
##  [3796] "now"              "bare"             "cloudless"       
##  [3799] "last"             "sunrise"          "came"            
##  [3802] "pale"             "clear"            "wind"            
##  [3805] "east"             "mists"            "rolled"          
##  [3808] "away"             "wide"             "lands"           
##  [3811] "lay"              "bleak"            "bitter"          
##  [3814] "light"            "ahead"            "eastward"        
##  [3817] "saw"              "windy"            "uplands"         
##  [3820] "wold"             "rohan"            "already"         
##  [3823] "glimpsed"         "many"             "days"            
##  [3826] "ago"              "great"            "river"           
##  [3829] "north"            "westward"         "stalked"         
##  [3832] "dark"             "forest"           "fangorn"         
##  [3835] "still"            "ten"              "leagues"         
##  [3838] "away"             "stood"            "shadowy"         
##  [3841] "eaves"            "slopes"           "faded"           
##  [3844] "distant"          "blue"             "beyond"          
##  [3847] "glimmered"        "far"              "away"            
##  [3850] "floating"         "grey"             "cloud"           
##  [3853] "white"            "head"             "tall"            
##  [3856] "methedras"        "last"             "peak"            
##  [3859] "misty"            "mountains"        "forest"          
##  [3862] "entwash"          "flowed"           "meet"            
##  [3865] "stream"           "now"              "swift"           
##  [3868] "narrow"           "banks"            "deep"            
##  [3871] "cloven"           "orc"              "trail"           
##  [3874] "turned"           "downs"            "towards"         
##  [3877] "following"        "keen"             "eyes"            
##  [3880] "trail"            "river"            "river"           
##  [3883] "back"             "towards"          "forest"          
##  [3886] "aragorn"          "saw"              "shadow"          
##  [3889] "distant"          "green"            "dark"            
##  [3892] "swift"            "moving"           "blur"            
##  [3895] "cast"             "upon"             "ground"          
##  [3898] "listened"         "intently"         "legolas"         
##  [3901] "stood"            "beside"           "shading"         
##  [3904] "bright"           "elven"            "eyes"            
##  [3907] "long"             "slender"          "hand"            
##  [3910] "saw"              "shadow"           "blur"            
##  [3913] "small"            "figures"          "horsemen"        
##  [3916] "many"             "horsemen"         "glint"           
##  [3919] "morning"          "tips"             "spears"          
##  [3922] "like"             "twinkle"          "minute"          
##  [3925] "stars"            "beyond"           "edge"            
##  [3928] "mortal"           "sight"            "far"             
##  [3931] "behind"           "dark"             "smoke"           
##  [3934] "rose"             "thin"             "curling"         
##  [3937] "threads"          "silence"          "empty"           
##  [3940] "fields"           "arid"             "gimli"           
##  [3943] "hear"             "air"              "moving"          
##  [3946] "grass"            "riders"           "cried"           
##  [3949] "aragorn"          "springing"        "feet"            
##  [3952] "many"             "riders"           "swift"           
##  [3955] "steeds"           "coming"           "towards"         
##  [3958] "us"               "yes"              "said"            
##  [3961] "legolas"          "one"              "hundred"         
##  [3964] "five"             "yellow"           "hair"            
##  [3967] "bright"           "spears"           "leader"          
##  [3970] "tall"             "aragorn"          "smiled"          
##  [3973] "keen"             "eyes"             "elves"           
##  [3976] "said"             "nay"              "riders"          
##  [3979] "little"           "five"             "leagues"         
##  [3982] "distant"          "said"             "legolas"         
##  [3985] "five"             "leagues"          "one"             
##  [3988] "said"             "gimli"            "escape"          
##  [3991] "bare"             "land"             "shall"           
##  [3994] "wait"             "go"               "way"             
##  [3997] "wait"             "said"             "aragorn"         
##  [4000] "weary"            "hunt"             "failed"          
##  [4003] "least"            "others"           "us"              
##  [4006] "horsemen"         "riding"           "back"            
##  [4009] "orc"              "trail"            "may"             
##  [4012] "get"              "new"              "spears"          
##  [4015] "said"             "gimli"            "three"           
##  [4018] "empty"            "saddles"          "see"             
##  [4021] "hobbits"          "said"             "legolas"         
##  [4024] "say"              "hear"             "good"            
##  [4027] "news"             "said"             "aragorn"         
##  [4030] "evil"             "good"             "await"           
##  [4033] "three"            "companions"       "now"             
##  [4036] "left"             "hill"             "top"             
##  [4039] "might"            "easy"             "mark"            
##  [4042] "pale"             "sky"              "walked"          
##  [4045] "slowly"           "northward"        "slope"           
##  [4048] "little"           "hills"            "foot"            
##  [4051] "halted"           "wrapping"         "cloaks"          
##  [4054] "sat"              "huddled"          "together"        
##  [4057] "upon"             "faded"            "grass"           
##  [4060] "time"             "passed"           "slowly"          
##  [4063] "heavily"          "wind"             "thin"            
##  [4066] "searching"        "gimli"            "uneasy"          
##  [4069] "know"             "horsemen"         "aragorn"         
##  [4072] "said"             "sit"              "waiting"         
##  [4075] "sudden"           "death"            "among"           
##  [4078] "answered"         "aragorn"          "proud"           
##  [4081] "wilful"           "true"             "hearted"         
##  [4084] "generous"         "thought"          "deed"            
##  [4087] "bold"             "cruel"            "wise"            
##  [4090] "unlearned"        "writing"          "books"           
##  [4093] "singing"          "many"             "songs"           
##  [4096] "manner"           "children"         "men"             
##  [4099] "dark"             "years"            "know"            
##  [4102] "happened"         "late"             "mind"            
##  [4105] "rohirrim"         "may"              "now"             
##  [4108] "traitor"          "saruman"          "threat"          
##  [4111] "sauron"           "long"             "friends"         
##  [4114] "people"           "gondor"           "though"          
##  [4117] "akin"             "forgotten"        "years"           
##  [4120] "long"             "ago"              "eorl"            
##  [4123] "young"            "brought"          "north"           
##  [4126] "kinship"          "rather"           "bardings"        
##  [4129] "dale"             "beornings"        "wood"            
##  [4132] "among"            "may"              "still"           
##  [4135] "seen"             "many"             "men"             
##  [4138] "tall"             "fair"             "riders"          
##  [4141] "rohan"            "least"            "love"            
##  [4144] "orcs"             "gandalf"          "spoke"           
##  [4147] "rumour"           "pay"              "tribute"         
##  [4150] "mordor"           "said"             "gimli"           
##  [4153] "believe"          "boromir"          "answered"        
##  [4156] "aragorn"          "soon"             "learn"           
##  [4159] "truth"            "said"             "legolas"         
##  [4162] "already"          "approach"         "length"          
##  [4165] "even"             "gimli"            "hear"            
##  [4168] "distant"          "beat"             "galloping"       
##  [4171] "hoofs"            "horsemen"         "following"       
##  [4174] "trail"            "turned"           "river"           
##  [4177] "drawing"          "near"             "downs"           
##  [4180] "riding"           "like"             "wind"            
##  [4183] "now"              "cries"            "clear"           
##  [4186] "strong"           "voices"           "came"            
##  [4189] "ringing"          "fields"           "suddenly"        
##  [4192] "swept"            "noise"            "like"            
##  [4195] "thunder"          "foremost"         "horseman"        
##  [4198] "swerved"          "passing"          "foot"            
##  [4201] "hill"             "leading"          "host"            
##  [4204] "back"             "southward"        "along"           
##  [4207] "western"          "skirts"           "downs"           
##  [4210] "rode"             "long"             "line"            
##  [4213] "mail"             "clad"             "men"             
##  [4216] "swift"            "shining"          "fell"            
##  [4219] "fair"             "look"             "upon"            
##  [4222] "horses"           "great"            "stature"         
##  [4225] "strong"           "clean"            "limbed"          
##  [4228] "grey"             "coats"            "glistened"       
##  [4231] "long"             "tails"            "flowed"          
##  [4234] "wind"             "manes"            "braided"         
##  [4237] "proud"            "necks"            "men"             
##  [4240] "rode"             "matched"          "well"            
##  [4243] "tall"             "long"             "limbed"          
##  [4246] "hair"             "flaxen"           "pale"            
##  [4249] "flowed"           "light"            "helms"           
##  [4252] "streamed"         "long"             "braids"          
##  [4255] "behind"           "faces"            "stern"           
##  [4258] "keen"             "hands"            "tall"            
##  [4261] "spears"           "ash"              "painted"         
##  [4264] "shields"          "slung"            "backs"           
##  [4267] "long"             "swords"           "belts"           
##  [4270] "burnished"        "skirts"           "mail"            
##  [4273] "hung"             "upon"             "knees"           
##  [4276] "pairs"            "galloped"         "though"          
##  [4279] "every"            "now"              "one"             
##  [4282] "rose"             "stirrups"         "gazed"           
##  [4285] "ahead"            "either"           "side"            
##  [4288] "appeared"         "perceive"         "three"           
##  [4291] "strangers"        "sitting"          "silently"        
##  [4294] "watching"         "host"             "almost"          
##  [4297] "passed"           "suddenly"         "aragorn"         
##  [4300] "stood"            "called"           "loud"            
##  [4303] "voice"            "news"             "north"           
##  [4306] "riders"           "rohan"            "astonishing"     
##  [4309] "speed"            "skill"            "checked"         
##  [4312] "steeds"           "wheeled"          "came"            
##  [4315] "charging"         "round"            "soon"            
##  [4318] "three"            "companions"       "found"           
##  [4321] "ring"             "horsemen"         "moving"          
##  [4324] "running"          "circle"           "hill"            
##  [4327] "slope"            "behind"           "round"           
##  [4330] "round"            "drawing"          "ever"            
##  [4333] "inwards"          "aragorn"          "stood"           
##  [4336] "silent"           "two"              "sat"             
##  [4339] "without"          "moving"           "wondering"       
##  [4342] "way"              "things"           "turn"            
##  [4345] "without"          "word"             "cry"             
##  [4348] "suddenly"         "riders"           "halted"          
##  [4351] "thicket"          "spears"           "pointed"         
##  [4354] "towards"          "strangers"        "horsemen"        
##  [4357] "bows"             "hand"             "arrows"          
##  [4360] "already"          "fitted"           "string"          
##  [4363] "one"              "rode"             "forward"         
##  [4366] "tall"             "man"              "taller"          
##  [4369] "rest"             "helm"             "crest"           
##  [4372] "white"            "horsetail"        "flowed"          
##  [4375] "advanced"         "point"            "spear"           
##  [4378] "within"           "foot"             "aragorns"        
##  [4381] "breast"           "aragorn"          "stir"            
##  [4384] "land"             "said"             "rider"           
##  [4387] "using"            "common"           "speech"          
##  [4390] "west"             "manner"           "tone"            
##  [4393] "like"             "speech"           "boromir"         
##  [4396] "man"              "gondor"           "called"          
##  [4399] "strider"          "answered"         "aragorn"         
##  [4402] "came"             "north"            "hunting"         
##  [4405] "orcs"             "rider"            "leaped"          
##  [4408] "horse"            "giving"           "spear"           
##  [4411] "another"          "rode"             "dismounted"      
##  [4414] "side"             "drew"             "sword"           
##  [4417] "stood"            "face"             "face"            
##  [4420] "aragorn"          "surveying"        "keenly"          
##  [4423] "without"          "wonder"           "length"          
##  [4426] "spoke"            "first"            "thought"         
##  [4429] "orcs"             "said"             "now"             
##  [4432] "see"              "indeed"           "know"            
##  [4435] "little"           "orcs"             "go"              
##  [4438] "hunting"          "fashion"          "swift"           
##  [4441] "well"             "armed"            "many"            
##  [4444] "changed"          "hunters"          "prey"            
##  [4447] "ever"             "overtaken"        "something"       
##  [4450] "strange"          "strider"          "bent"            
##  [4453] "clear"            "bright"           "eyes"            
##  [4456] "upon"             "ranger"           "name"            
##  [4459] "man"              "give"             "strange"         
##  [4462] "raiment"          "sprung"           "grass"           
##  [4465] "escape"           "sight"            "elvish"          
##  [4468] "folk"             "said"             "aragorn"         
##  [4471] "one"              "us"               "elf"             
##  [4474] "legolas"          "woodland"         "realm"           
##  [4477] "distant"          "mirkwood"         "passed"          
##  [4480] "lothlórien"       "gifts"            "favour"          
##  [4483] "lady"             "go"               "us"              
##  [4486] "rider"            "looked"           "renewed"         
##  [4489] "wonder"           "eyes"             "hardened"        
##  [4492] "lady"             "golden"           "wood"            
##  [4495] "old"              "tales"            "tell"            
##  [4498] "said"             "escape"           "nets"            
##  [4501] "say"              "strange"          "days"            
##  [4504] "favour"           "also"             "net"             
##  [4507] "weavers"          "sorcerers"        "maybe"           
##  [4510] "turned"           "cold"             "glance"          
##  [4513] "suddenly"         "upon"             "legolas"         
##  [4516] "gimli"            "speak"            "silent"          
##  [4519] "ones"             "demanded"         "gimli"           
##  [4522] "rose"             "planted"          "feet"            
##  [4525] "firmly"           "apart"            "hand"            
##  [4528] "gripped"          "handle"           "axe"             
##  [4531] "dark"             "eyes"             "flashed"         
##  [4534] "give"             "name"             "horse"           
##  [4537] "master"           "give"             "mine"            
##  [4540] "besides"          "said"             "said"            
##  [4543] "rider"            "staring"          "dwarf"           
##  [4546] "stranger"         "declare"          "first"           
##  [4549] "yet"              "named"            "éomer"           
##  [4552] "son"              "éomund"           "called"          
##  [4555] "third"            "marshal"          "riddermark"      
##  [4558] "éomer"            "son"              "éomund"          
##  [4561] "third"            "marshal"          "riddermark"      
##  [4564] "let"              "gimli"            "dwarf"           
##  [4567] "glóins"           "son"              "warn"            
##  [4570] "foolish"          "words"            "speak"           
##  [4573] "evil"             "fair"             "beyond"          
##  [4576] "reach"            "thought"          "little"          
##  [4579] "wit"              "can"              "excuse"          
##  [4582] "éomers"           "eyes"             "blazed"          
##  [4585] "men"              "rohan"            "murmured"        
##  [4588] "angrily"          "closed"           "advancing"       
##  [4591] "spears"           "cut"              "head"            
##  [4594] "beard"            "master"           "dwarf"           
##  [4597] "stood"            "little"           "higher"          
##  [4600] "ground"           "said"             "éomer"           
##  [4603] "stands"           "alone"            "said"            
##  [4606] "legolas"          "bending"          "bow"             
##  [4609] "fitting"          "arrow"            "hands"           
##  [4612] "moved"            "quicker"          "sight"           
##  [4615] "die"              "stroke"           "fell"            
##  [4618] "éomer"            "raised"           "sword"           
##  [4621] "things"           "might"            "gone"            
##  [4624] "ill"              "aragorn"          "sprang"          
##  [4627] "raised"           "hand"             "pardon"          
##  [4630] "éomer"            "cried"            "know"            
##  [4633] "understand"       "angered"          "companions"      
##  [4636] "intend"           "evil"             "rohan"           
##  [4639] "folk"             "neither"          "man"             
##  [4642] "horse"            "hear"             "tale"            
##  [4645] "strike"           "said"             "éomer"           
##  [4648] "lowering"         "blade"            "wanderers"       
##  [4651] "riddermark"       "wise"             "less"            
##  [4654] "haughty"          "days"             "doubt"           
##  [4657] "first"            "tell"             "right"           
##  [4660] "name"             "first"            "tell"            
##  [4663] "serve"            "said"             "aragorn"         
##  [4666] "friend"           "foe"              "sauron"          
##  [4669] "dark"             "lord"             "mordor"          
##  [4672] "serve"            "lord"             "mark"            
##  [4675] "théoden"          "king"             "son"             
##  [4678] "thengel"          "answered"         "éomer"           
##  [4681] "serve"            "power"            "black"           
##  [4684] "land"             "far"              "away"            
##  [4687] "neither"          "yet"              "open"            
##  [4690] "war"              "fleeing"          "best"            
##  [4693] "leave"            "land"             "trouble"         
##  [4696] "now"              "borders"          "threatened"      
##  [4699] "desire"           "free"             "live"            
##  [4702] "lived"            "keeping"          "serving"         
##  [4705] "foreign"          "lord"             "good"            
##  [4708] "evil"             "welcomed"         "guests"          
##  [4711] "kindly"           "better"           "days"            
##  [4714] "times"            "unbidden"         "stranger"        
##  [4717] "finds"            "us"               "swift"           
##  [4720] "hard"             "come"             "serve"           
##  [4723] "whose"            "command"          "hunt"            
##  [4726] "orcs"             "land"             "serve"           
##  [4729] "man"              "said"             "aragorn"         
##  [4732] "servants"         "sauron"           "pursue"          
##  [4735] "whatever"         "land"             "may"             
##  [4738] "go"               "among"            "mortal"          
##  [4741] "men"              "know"             "orcs"            
##  [4744] "hunt"             "fashion"          "choice"          
##  [4747] "orcs"             "pursued"          "took"            
##  [4750] "captive"          "two"              "friends"         
##  [4753] "need"             "man"              "horse"           
##  [4756] "go"               "foot"             "ask"             
##  [4759] "leave"            "follow"           "trail"           
##  [4762] "count"            "heads"            "enemy"           
##  [4765] "save"             "sword"            "weaponless"      
##  [4768] "aragorn"          "threw"            "back"            
##  [4771] "cloak"            "elven"            "sheath"          
##  [4774] "glittered"        "grasped"          "bright"          
##  [4777] "blade"            "andúril"          "shone"           
##  [4780] "like"             "sudden"           "flame"           
##  [4783] "swept"            "elendil"          "cried"           
##  [4786] "aragorn"          "son"              "arathorn"        
##  [4789] "called"           "elessar"          "elfstone"        
##  [4792] "dúnadan"          "heir"             "isildur"         
##  [4795] "elendils"         "son"              "gondor"          
##  [4798] "sword"            "broken"           "forged"          
##  [4801] "aid"              "thwart"           "choose"          
##  [4804] "swiftly"          "gimli"            "legolas"         
##  [4807] "looked"           "companion"        "amazement"       
##  [4810] "seen"             "mood"             "seemed"          
##  [4813] "grown"            "stature"          "éomer"           
##  [4816] "shrunk"           "living"           "face"            
##  [4819] "caught"           "brief"            "vision"          
##  [4822] "power"            "majesty"          "kings"           
##  [4825] "stone"            "moment"           "seemed"          
##  [4828] "eyes"             "legolas"          "white"           
##  [4831] "flame"            "flickered"        "brows"           
##  [4834] "aragorn"          "like"             "shining"         
##  [4837] "crown"            "éomer"            "stepped"         
##  [4840] "back"             "look"             "awe"             
##  [4843] "face"             "cast"             "proud"           
##  [4846] "eyes"             "indeed"           "strange"         
##  [4849] "days"             "muttered"         "dreams"          
##  [4852] "legends"          "spring"           "life"            
##  [4855] "grass"            "tell"             "lord"            
##  [4858] "said"             "brings"           "meaning"         
##  [4861] "dark"             "words"            "long"            
##  [4864] "boromir"          "son"              "denethor"        
##  [4867] "gone"             "seeking"          "answer"          
##  [4870] "horse"            "lent"             "came"            
##  [4873] "back"             "riderless"        "doom"            
##  [4876] "bring"            "north"            "doom"            
##  [4879] "choice"           "said"             "aragorn"         
##  [4882] "may"              "say"              "théoden"         
##  [4885] "son"              "thengel"          "open"            
##  [4888] "war"              "lies"             "sauron"          
##  [4891] "none"             "may"              "live"            
##  [4894] "now"              "lived"            "shall"           
##  [4897] "keep"             "call"             "great"           
##  [4900] "matters"          "speak"            "later"           
##  [4903] "chance"           "allows"           "come"            
##  [4906] "king"             "now"              "great"           
##  [4909] "need"             "ask"              "help"            
##  [4912] "least"            "tidings"          "heard"           
##  [4915] "pursuing"         "orc"              "host"            
##  [4918] "carried"          "friends"          "can"             
##  [4921] "tell"             "us"               "need"            
##  [4924] "pursue"           "said"             "éomer"           
##  [4927] "orcs"             "destroyed"        "friends"         
##  [4930] "found"            "none"             "orcs"            
##  [4933] "strange"          "indeed"           "said"            
##  [4936] "aragorn"          "search"           "slain"           
##  [4939] "bodies"           "orc"              "kind"            
##  [4942] "small"            "children"         "eyes"            
##  [4945] "unshod"           "clad"             "grey"            
##  [4948] "dwarves"          "children"         "said"            
##  [4951] "éomer"            "counted"          "slain"           
##  [4954] "despoiled"        "piled"            "carcases"        
##  [4957] "burned"           "custom"           "ashes"           
##  [4960] "smoking"          "still"            "speak"           
##  [4963] "dwarves"          "children"         "said"            
##  [4966] "gimli"            "friends"          "hobbits"         
##  [4969] "hobbits"          "said"             "éomer"           
##  [4972] "may"              "strange"          "name"            
##  [4975] "strange"          "name"             "strange"         
##  [4978] "folk"             "said"             "gimli"           
##  [4981] "dear"             "us"               "seems"           
##  [4984] "heard"            "rohan"            "words"           
##  [4987] "troubled"         "minas"            "tirith"          
##  [4990] "spoke"            "halfling"         "hobbits"         
##  [4993] "halflings"        "halflings"        "laughed"         
##  [4996] "rider"            "stood"            "beside"          
##  [4999] "éomer"            "halflings"        "little"          
##  [5002] "people"           "old"              "songs"           
##  [5005] "childrens"        "tales"            "north"           
##  [5008] "walk"             "legends"          "green"           
##  [5011] "earth"            "daylight"         "man"             
##  [5014] "may"              "said"             "aragorn"         
##  [5017] "come"             "make"             "legends"         
##  [5020] "time"             "green"            "earth"           
##  [5023] "say"              "mighty"           "matter"          
##  [5026] "legend"           "though"           "tread"           
##  [5029] "light"            "day"              "time"            
##  [5032] "pressing"         "said"             "rider"           
##  [5035] "heeding"          "aragorn"          "must"            
##  [5038] "hasten"           "south"            "lord"            
##  [5041] "let"              "us"               "leave"           
##  [5044] "wild"             "folk"             "fancies"         
##  [5047] "let"              "us"               "bind"            
##  [5050] "take"             "king"             "peace"           
##  [5053] "éothain"          "said"             "éomer"           
##  [5056] "tongue"           "leave"            "tell"            
##  [5059] "éored"            "assemble"         "path"            
##  [5062] "make"             "ready"            "ride"            
##  [5065] "entwade"          "muttering"        "éothain"         
##  [5068] "retired"          "spoke"            "others"          
##  [5071] "soon"             "drew"             "left"            
##  [5074] "éomer"            "alone"            "three"           
##  [5077] "companions"       "say"              "strange"         
##  [5080] "aragorn"          "said"             "yet"             
##  [5083] "speak"            "truth"            "plain"           
##  [5086] "men"              "mark"             "lie"             
##  [5089] "therefore"        "easily"           "deceived"        
##  [5092] "told"             "now"              "speak"           
##  [5095] "fully"            "errand"           "may"             
##  [5098] "judge"            "set"              "imladris"        
##  [5101] "named"            "rhyme"            "many"            
##  [5104] "weeks"            "ago"              "answered"        
##  [5107] "aragorn"          "went"             "boromir"         
##  [5110] "minas"            "tirith"           "errand"          
##  [5113] "go"               "city"             "son"             
##  [5116] "denethor"         "aid"              "folk"            
##  [5119] "war"              "sauron"           "company"         
##  [5122] "journeyed"        "business"         "speak"           
##  [5125] "now"              "gandalf"          "grey"            
##  [5128] "leader"           "gandalf"          "éomer"           
##  [5131] "exclaimed"        "gandalf"          "greyhame"        
##  [5134] "known"            "mark"             "name"            
##  [5137] "warn"             "longer"           "password"        
##  [5140] "kings"            "favour"           "guest"           
##  [5143] "land"             "many"             "times"           
##  [5146] "memory"           "men"              "coming"          
##  [5149] "season"           "many"             "years"           
##  [5152] "ever"             "herald"           "strange"         
##  [5155] "events"           "bringer"          "evil"            
##  [5158] "now"              "say"              "indeed"          
##  [5161] "since"            "last"             "coming"          
##  [5164] "summer"           "things"           "gone"            
##  [5167] "amiss"            "time"             "trouble"         
##  [5170] "saruman"          "began"            "counted"         
##  [5173] "saruman"          "friend"           "hut"             
##  [5176] "gandalf"          "came"             "warned"          
##  [5179] "us"               "sudden"           "war"             
##  [5182] "preparing"        "isengard"         "said"            
##  [5185] "prisoner"         "orthanc"          "hardly"          
##  [5188] "escaped"          "begged"           "help"            
##  [5191] "théoden"          "listen"           "went"            
##  [5194] "away"             "speak"            "name"            
##  [5197] "gandalf"          "loudly"           "théodens"        
##  [5200] "ears"             "wroth"            "gandalf"         
##  [5203] "took"             "horse"            "called"          
##  [5206] "shadowfax"        "precious"         "kings"           
##  [5209] "steeds"           "chief"            "mearas"          
##  [5212] "lord"             "mark"             "may"             
##  [5215] "ride"             "sire"             "race"            
##  [5218] "great"            "horse"            "eorl"            
##  [5221] "knew"             "speech"           "men"             
##  [5224] "seven"            "nights"           "ago"             
##  [5227] "shadowfax"        "returned"         "kings"           
##  [5230] "anger"            "less"             "now"             
##  [5233] "horse"            "wild"             "let"             
##  [5236] "man"              "handle"           "shadowfax"       
##  [5239] "found"            "way"              "alone"           
##  [5242] "far"              "north"            "said"            
##  [5245] "aragorn"          "gandalf"          "parted"          
##  [5248] "alas"             "gandalf"          "ride"            
##  [5251] "longer"           "fell"             "darkness"        
##  [5254] "mines"            "moria"            "comes"           
##  [5257] "heavy"            "tidings"          "said"            
##  [5260] "éomer"            "least"            "many"            
##  [5263] "though"           "may"              "find"            
##  [5266] "come"             "king"             "tidings"         
##  [5269] "grievous"         "land"             "can"             
##  [5272] "understand"       "though"           "may"             
##  [5275] "touch"            "sorely"           "ere"             
##  [5278] "year"             "much"             "older"           
##  [5281] "said"             "aragorn"          "great"           
##  [5284] "fall"             "less"             "must"            
##  [5287] "lead"             "part"             "guide"           
##  [5290] "company"          "long"             "road"            
##  [5293] "moria"            "lórien"           "came"            
##  [5296] "well"             "learn"            "truth"           
##  [5299] "ere"              "speak"            "thence"          
##  [5302] "leagues"          "great"            "river"           
##  [5305] "falls"            "rauros"           "boromir"         
##  [5308] "slain"            "orcs"             "destroyed"       
##  [5311] "news"             "woe"              "cried"           
##  [5314] "éomer"            "dismay"           "great"           
##  [5317] "harm"             "death"            "minas"           
##  [5320] "tirith"           "us"               "worthy"          
##  [5323] "man"              "spoke"            "praise"          
##  [5326] "came"             "seldom"           "mark"            
##  [5329] "ever"             "wars"             "east"            
##  [5332] "borders"          "seen"             "like"            
##  [5335] "swift"            "sons"             "eorl"            
##  [5338] "grave"            "men"              "gondor"          
##  [5341] "seemed"           "likely"           "prove"           
##  [5344] "great"            "captain"          "people"          
##  [5347] "time"             "came"             "word"            
##  [5350] "grief"            "gondor"           "fall"            
##  [5353] "now"              "fourth"           "day"             
##  [5356] "since"            "slain"            "answered"        
##  [5359] "aragorn"          "since"            "evening"         
##  [5362] "day"              "journeyed"        "shadow"          
##  [5365] "tol"              "brandir"          "foot"            
##  [5368] "cried"            "éomer"            "yes"             
##  [5371] "even"             "see"              "us"              
##  [5374] "wide"             "wonder"           "came"            
##  [5377] "éomers"           "eyes"             "strider"         
##  [5380] "poor"             "name"             "son"             
##  [5383] "arathorn"         "said"             "wingfoot"        
##  [5386] "name"             "deed"             "three"           
##  [5389] "friends"          "sung"             "many"            
##  [5392] "hall"             "forty"            "leagues"         
##  [5395] "five"             "measured"         "ere"             
##  [5398] "fourth"           "day"              "ended"           
##  [5401] "hardy"            "race"             "elendil"         
##  [5404] "now"              "lord"             "must"            
##  [5407] "return"           "haste"            "théoden"         
##  [5410] "spoke"            "warily"           "men"             
##  [5413] "true"             "yet"              "open"            
##  [5416] "war"              "black"            "land"            
##  [5419] "close"            "kings"            "ear"             
##  [5422] "speak"            "craven"           "counsels"        
##  [5425] "war"              "coming"           "shall"           
##  [5428] "forsake"          "old"              "alliance"        
##  [5431] "gondor"           "fight"            "shall"           
##  [5434] "aid"              "say"              "hold"            
##  [5437] "east"             "mark"             "charge"          
##  [5440] "ward"             "third"            "marshal"         
##  [5443] "removed"          "herds"            "herdfolk"        
##  [5446] "withdrawing"      "beyond"           "entwash"         
##  [5449] "leaving"          "none"             "guards"          
##  [5452] "swift"            "scouts"           "pay"             
##  [5455] "tribute"          "sauron"           "said"            
##  [5458] "gimli"            "never"            "said"            
##  [5461] "éomer"            "flash"            "eyes"            
##  [5464] "though"           "comes"            "ears"            
##  [5467] "lie"              "told"             "years"           
##  [5470] "ago"              "lord"             "black"           
##  [5473] "land"             "wished"           "purchase"        
##  [5476] "horses"           "us"               "great"           
##  [5479] "price"            "refused"          "puts"            
##  [5482] "beasts"           "evil"             "use"             
##  [5485] "sent"             "plundering"       "orcs"            
##  [5488] "carry"            "can"              "choosing"        
##  [5491] "always"           "black"            "horses"          
##  [5494] "now"              "left"             "reason"          
##  [5497] "feud"             "orcs"             "bitter"          
##  [5500] "time"             "chief"            "concern"         
##  [5503] "saruman"          "claimed"          "lordship"        
##  [5506] "land"             "war"              "us"              
##  [5509] "many"             "months"           "taken"           
##  [5512] "orcs"             "service"          "wolf"            
##  [5515] "riders"           "evil"             "men"             
##  [5518] "closed"           "gap"              "us"              
##  [5521] "likely"           "beset"            "east"            
##  [5524] "west"             "ill"              "dealing"         
##  [5527] "foe"              "wizard"           "cunning"         
##  [5530] "dwimmer"          "crafty"           "many"            
##  [5533] "guises"           "walks"            "say"             
##  [5536] "old"              "man"              "hooded"          
##  [5539] "cloaked"          "like"             "gandalf"         
##  [5542] "many"             "now"              "recall"          
##  [5545] "spies"            "slip"             "every"           
##  [5548] "net"              "birds"            "ill"             
##  [5551] "omen"             "abroad"           "sky"             
##  [5554] "know"             "end"              "heart"           
##  [5557] "misgives"         "seems"            "friends"         
##  [5560] "dwell"            "isengard"         "come"            
##  [5563] "kings"            "house"            "shall"           
##  [5566] "see"              "come"             "hope"            
##  [5569] "vain"             "sent"             "help"            
##  [5572] "doubt"            "need"             "come"            
##  [5575] "may"              "said"             "aragorn"         
##  [5578] "come"             "now"              "said"            
##  [5581] "éomer"            "heir"             "elendil"         
##  [5584] "strength"         "indeed"           "sons"            
##  [5587] "eorl"             "evil"             "tide"            
##  [5590] "battle"           "even"             "now"             
##  [5593] "upon"             "westemnet"        "fear"            
##  [5596] "may"              "go"               "ill"             
##  [5599] "us"               "indeed"           "riding"          
##  [5602] "north"            "went"             "without"         
##  [5605] "kings"            "leave"            "absence"         
##  [5608] "house"            "left"             "little"          
##  [5611] "guard"            "scouts"           "warned"          
##  [5614] "orc"              "host"             "coming"          
##  [5617] "east"             "wall"             "three"           
##  [5620] "nights"           "ago"              "among"           
##  [5623] "reported"         "bore"             "white"           
##  [5626] "badges"           "saruman"          "suspecting"      
##  [5629] "fear"             "league"           "orthanc"         
##  [5632] "dark"             "tower"            "led"             
##  [5635] "forth"            "éored"            "men"             
##  [5638] "household"        "overtook"         "orcs"            
##  [5641] "nightfall"        "two"              "days"            
##  [5644] "ago"              "near"             "borders"         
##  [5647] "entwood"          "surrounded"       "gave"            
##  [5650] "battle"           "yesterday"        "dawn"            
##  [5653] "fifteen"          "men"              "lost"            
##  [5656] "twelve"           "horses"           "alas"            
##  [5659] "orcs"             "greater"          "number"          
##  [5662] "counted"          "others"           "joined"          
##  [5665] "coming"           "east"             "across"          
##  [5668] "great"            "river"            "trail"           
##  [5671] "plain"            "see"              "little"          
##  [5674] "north"            "spot"             "others"          
##  [5677] "came"             "forest"           "great"           
##  [5680] "orcs"             "also"             "bore"            
##  [5683] "white"            "hand"             "isengard"        
##  [5686] "kind"             "stronger"         "fell"            
##  [5689] "others"           "nonetheless"      "put"             
##  [5692] "end"              "long"             "away"            
##  [5695] "needed"           "south"            "west"            
##  [5698] "come"             "spare"            "horses"          
##  [5701] "see"              "work"             "sword"           
##  [5704] "yes"              "find"             "use"             
##  [5707] "gimlis"           "axe"              "bow"             
##  [5710] "legolas"          "pardon"           "rash"            
##  [5713] "words"            "concerning"       "lady"            
##  [5716] "wood"             "spoke"            "men"             
##  [5719] "land"             "gladly"           "learn"           
##  [5722] "better"           "thank"            "fair"            
##  [5725] "words"            "said"             "aragorn"         
##  [5728] "heart"            "desires"          "come"            
##  [5731] "desert"           "friends"          "hope"            
##  [5734] "remains"          "hope"             "remain"          
##  [5737] "said"             "éomer"            "find"            
##  [5740] "friends"          "north"            "borders"         
##  [5743] "yet"              "friends"          "behind"          
##  [5746] "found"            "clear"            "token"           
##  [5749] "far"              "east"             "wall"            
##  [5752] "one"              "least"            "still"           
##  [5755] "alive"            "wall"             "downs"           
##  [5758] "found"            "trace"            "trail"           
##  [5761] "turned"           "aside"            "way"             
##  [5764] "unless"           "skill"            "wholly"          
##  [5767] "left"             "think"            "become"          
##  [5770] "know"             "may"              "slain"           
##  [5773] "burned"           "among"            "orcs"            
##  [5776] "say"              "fear"             "can"             
##  [5779] "think"            "carried"          "forest"          
##  [5782] "battle"           "even"             "encircled"       
##  [5785] "foes"             "maybe"            "can"             
##  [5788] "swear"            "none"             "escaped"         
##  [5791] "net"              "way"              "swear"           
##  [5794] "orc"              "escaped"          "sighted"         
##  [5797] "said"             "éomer"            "reached"         
##  [5800] "forest"           "eaves"            "living"          
##  [5803] "thing"            "broke"            "ring"            
##  [5806] "orc"              "elvish"           "power"           
##  [5809] "friends"          "attired"          "even"            
##  [5812] "said"             "aragorn"          "passed"          
##  [5815] "us"               "full"             "light"           
##  [5818] "day"              "forgotten"        "said"            
##  [5821] "éomer"            "hard"             "sure"            
##  [5824] "anything"         "among"            "many"            
##  [5827] "marvels"          "world"            "grown"           
##  [5830] "strange"          "elf"              "dwarf"           
##  [5833] "company"          "walk"             "daily"           
##  [5836] "fields"           "folk"             "speak"           
##  [5839] "lady"             "wood"             "yet"             
##  [5842] "live"             "sword"            "comes"           
##  [5845] "back"             "war"              "broken"          
##  [5848] "long"             "ages"             "ere"             
##  [5851] "fathers"          "fathers"          "rode"            
##  [5854] "mark"             "shall"            "man"             
##  [5857] "judge"            "times"            "ever"            
##  [5860] "judged"           "said"             "aragorn"         
##  [5863] "good"             "ill"              "changed"         
##  [5866] "since"            "yesteryear"       "one"             
##  [5869] "thing"            "among"            "elves"           
##  [5872] "dwarves"          "µ"                "another"         
##  [5875] "among"            "men"              "mans"            
##  [5878] "part"             "discern"          "much"            
##  [5881] "golden"           "wood"             "house"           
##  [5884] "true"             "indeed"           "said"            
##  [5887] "éomer"            "doubt"            "deed"            
##  [5890] "heart"            "yet"              "free"            
##  [5893] "law"              "let"              "strangers"       
##  [5896] "wander"           "land"             "king"            
##  [5899] "shall"            "give"             "leave"           
##  [5902] "strict"           "command"          "days"            
##  [5905] "peril"            "begged"           "come"            
##  [5908] "back"             "willingly"        "loth"            
##  [5911] "begin"            "battle"           "one"             
##  [5914] "hundred"          "three"            "think"           
##  [5917] "law"              "made"             "chance"          
##  [5920] "said"             "aragorn"          "indeed"          
##  [5923] "stranger"         "land"             "ridden"          
##  [5926] "host"             "rohirrim"         "though"          
##  [5929] "name"             "guise"            "seen"            
##  [5932] "young"            "spoken"           "éomund"          
##  [5935] "father"           "théoden"          "son"             
##  [5938] "thengel"          "never"            "former"          
##  [5941] "days"             "high"             "lord"            
##  [5944] "land"             "constrained"      "man"             
##  [5947] "abandon"          "quest"            "mine"            
##  [5950] "duty"             "least"            "clear"           
##  [5953] "go"               "come"             "now"             
##  [5956] "son"              "éomund"           "choice"          
##  [5959] "must"             "made"             "last"            
##  [5962] "aid"              "us"               "worst"           
##  [5965] "let"              "us"               "go"              
##  [5968] "free"             "seek"             "carry"           
##  [5971] "law"              "fewer"            "return"          
##  [5974] "war"              "king"             "éomer"           
##  [5977] "silent"           "moment"           "spoke"           
##  [5980] "need"             "haste"            "said"            
##  [5983] "company"          "chafes"           "away"            
##  [5986] "every"            "hour"             "lessens"         
##  [5989] "hope"             "choice"           "may"             
##  [5992] "go"               "lend"             "horses"          
##  [5995] "ask"              "quest"            "achieved"        
##  [5998] "proved"           "vain"             "return"          
##  [6001] "horses"           "entwade"          "meduseld"        
##  [6004] "high"             "house"            "edoras"          
##  [6007] "théoden"          "now"              "sits"            
##  [6010] "thus"             "shall"            "prove"           
##  [6013] "misjudged"        "place"            "maybe"           
##  [6016] "life"             "keeping"          "good"            
##  [6019] "faith"            "fail"             "said"            
##  [6022] "aragorn"          "great"            "wonder"          
##  [6025] "many"             "dark"             "doubtful"        
##  [6028] "glances"          "among"            "men"             
##  [6031] "éomer"            "gave"             "orders"          
##  [6034] "spare"            "horses"           "lent"            
##  [6037] "strangers"        "éothain"          "dared"           
##  [6040] "speak"            "openly"           "may"             
##  [6043] "well"             "enough"           "lord"            
##  [6046] "race"             "gondor"           "claims"          
##  [6049] "said"             "heard"            "horse"           
##  [6052] "mark"             "given"            "dwarf"           
##  [6055] "one"              "said"             "gimli"           
##  [6058] "trouble"          "one"              "ever"            
##  [6061] "hear"             "sooner"           "walk"            
##  [6064] "sit"              "back"             "beast"           
##  [6067] "great"            "free"             "begrudged"       
##  [6070] "must"             "ride"             "now"             
##  [6073] "hinder"           "us"               "said"            
##  [6076] "aragorn"          "come"             "shall"           
##  [6079] "sit"              "behind"           "friend"          
##  [6082] "gimli"            "said"             "legolas"         
##  [6085] "well"             "need"             "neither"         
##  [6088] "borrow"           "horse"            "troubled"        
##  [6091] "one"              "great"            "dark"            
##  [6094] "grey"             "horse"            "brought"         
##  [6097] "aragorn"          "mounted"          "hasufel"         
##  [6100] "name"             "said"             "éomer"           
##  [6103] "may"              "bear"             "well"            
##  [6106] "better"           "fortune"          "gárulf"          
##  [6109] "late"             "master"           "smaller"         
##  [6112] "lighter"          "horse"            "restive"         
##  [6115] "fiery"            "brought"          "legolas"         
##  [6118] "arod"             "name"             "legolas"         
##  [6121] "asked"            "take"             "saddle"          
##  [6124] "rein"             "need"             "said"            
##  [6127] "leaped"           "lightly"          "wonder"          
##  [6130] "arod"             "tame"             "willing"         
##  [6133] "beneath"          "moving"           "spoken"          
##  [6136] "word"             "elvish"           "way"             
##  [6139] "good"             "beasts"           "gimli"           
##  [6142] "lifted"           "behind"           "friend"          
##  [6145] "clung"            "much"             "ease"            
##  [6148] "sam"              "gamgee"           "boat"            
##  [6151] "farewell"         "may"              "find"            
##  [6154] "seek"             "cried"            "éomer"           
##  [6157] "return"           "speed"            "may"             
##  [6160] "let"              "swords"           "hereafter"       
##  [6163] "shine"            "together"         "come"            
##  [6166] "said"             "aragorn"          "come"            
##  [6169] "said"             "gimli"            "matter"          
##  [6172] "lady"             "galadriel"        "lies"            
##  [6175] "still"            "us"               "yet"             
##  [6178] "teach"            "gentle"           "speech"          
##  [6181] "shall"            "see"              "said"            
##  [6184] "éomer"            "many"             "strange"         
##  [6187] "things"           "chanced"          "learn"           
##  [6190] "praise"           "fair"             "lady"            
##  [6193] "loving"           "strokes"          "dwarfs"          
##  [6196] "axe"              "seem"             "great"           
##  [6199] "wonder"           "farewell"         "parted"          
##  [6202] "swift"            "horses"           "rohan"           
##  [6205] "little"           "gimli"            "looked"          
##  [6208] "back"             "company"          "éomer"           
##  [6211] "already"          "small"            "far"             
##  [6214] "away"             "aragorn"          "look"            
##  [6217] "back"             "watching"         "trail"           
##  [6220] "sped"             "way"              "bending"         
##  [6223] "low"              "head"             "beside"          
##  [6226] "neck"             "hasufel"          "long"            
##  [6229] "came"             "borders"          "entwash"         
##  [6232] "met"              "trail"            "éomer"           
##  [6235] "spoken"           "coming"           "east"            
##  [6238] "wold"             "aragorn"          "dismounted"      
##  [6241] "surveyed"         "ground"           "leaping"         
##  [6244] "back"             "saddle"           "rode"            
##  [6247] "away"             "distance"         "eastward"        
##  [6250] "keeping"          "one"              "side"            
##  [6253] "taking"           "care"             "override"        
##  [6256] "footprints"       "dismounted"       "examined"        
##  [6259] "ground"           "going"            "backwards"       
##  [6262] "forwards"         "foot"             "little"          
##  [6265] "discover"         "said"             "returned"        
##  [6268] "main"             "trail"            "confused"        
##  [6271] "passage"          "horsemen"         "came"            
##  [6274] "back"             "outward"          "course"          
##  [6277] "must"             "lain"             "nearer"          
##  [6280] "river"            "eastward"         "trail"           
##  [6283] "fresh"            "clear"            "sign"            
##  [6286] "feet"             "going"            "way"             
##  [6289] "back"             "towards"          "anduin"          
##  [6292] "now"              "must"             "ride"            
##  [6295] "slower"           "make"             "sure"            
##  [6298] "trace"            "footstep"         "branches"        
##  [6301] "either"           "side"             "orcs"            
##  [6304] "must"             "aware"            "point"           
##  [6307] "pursued"          "may"              "made"            
##  [6310] "attempt"          "get"              "captives"        
##  [6313] "away"             "overtaken"        "rode"            
##  [6316] "forward"          "day"              "overcast"        
##  [6319] "low"              "grey"             "clouds"          
##  [6322] "came"             "wold"             "mist"            
##  [6325] "shrouded"         "sun"              "ever"            
##  [6328] "nearer"           "tree"             "clad"            
##  [6331] "slopes"           "fangorn"          "loomed"          
##  [6334] "slowly"           "darkling"         "sun"             
##  [6337] "went"             "west"             "saw"             
##  [6340] "sign"             "trail"            "right"           
##  [6343] "left"             "passed"           "single"          
##  [6346] "orcs"             "fallen"           "tracks"          
##  [6349] "ran"              "grey"             "feathered"       
##  [6352] "arrows"           "sticking"         "back"            
##  [6355] "throat"           "last"             "afternoon"       
##  [6358] "waning"           "came"             "eaves"           
##  [6361] "forest"           "open"             "glade"           
##  [6364] "among"            "first"            "trees"           
##  [6367] "found"            "place"            "great"           
##  [6370] "burning"          "ashes"            "still"           
##  [6373] "hot"              "smoking"          "beside"          
##  [6376] "great"            "pile"             "helms"           
##  [6379] "mail"             "cloven"           "shields"         
##  [6382] "broken"           "swords"           "bows"            
##  [6385] "darts"            "gear"             "war"             
##  [6388] "upon"             "stake"            "middle"          
##  [6391] "set"              "great"            "goblin"          
##  [6394] "head"             "upon"             "shattered"       
##  [6397] "helm"             "white"            "badge"           
##  [6400] "still"            "seen"             "away"            
##  [6403] "far"              "river"            "came"            
##  [6406] "streaming"        "edge"             "wood"            
##  [6409] "mound"            "newly"            "raised"          
##  [6412] "raw"              "earth"            "covered"         
##  [6415] "fresh"            "cut"              "turves"          
##  [6418] "planted"          "fifteen"          "spears"          
##  [6421] "aragorn"          "companions"       "searched"        
##  [6424] "far"              "wide"             "field"           
##  [6427] "battle"           "light"            "faded"           
##  [6430] "evening"          "soon"             "drew"            
##  [6433] "dim"              "misty"            "nightfall"       
##  [6436] "discovered"       "trace"            "merry"           
##  [6439] "pippin"           "can"              "said"            
##  [6442] "gimli"            "sadly"            "set"             
##  [6445] "many"             "riddles"          "since"           
##  [6448] "came"             "tol"              "brandir"         
##  [6451] "hardest"          "unravel"          "guess"           
##  [6454] "burned"           "bones"            "hobbits"         
##  [6457] "now"              "mingled"          "orcs"            
##  [6460] "hard"             "news"             "frodo"           
##  [6463] "lives"            "hear"             "hard"            
##  [6466] "old"              "hobbit"           "waits"           
##  [6469] "rivendell"        "elrond"           "coming"          
##  [6472] "gandalf"          "said"             "legolas"         
##  [6475] "gandalf"          "chose"            "come"            
##  [6478] "first"            "lost"             "answered"        
##  [6481] "gimli"            "foresight"        "failed"          
##  [6484] "counsel"          "gandalf"          "founded"         
##  [6487] "foreknowledge"    "safety"           "others"          
##  [6490] "said"             "aragorn"          "things"          
##  [6493] "better"           "begin"            "refuse"          
##  [6496] "even"             "though"           "end"             
##  [6499] "may"              "dark"             "shall"           
##  [6502] "depart"           "place"            "yet"             
##  [6505] "case"             "must"             "await"           
##  [6508] "morning"          "light"            "little"          
##  [6511] "way"              "beyond"           "battle"          
##  [6514] "field"            "made"             "camp"            
##  [6517] "spreading"        "tree"             "looked"          
##  [6520] "like"             "chestnut"         "yet"             
##  [6523] "still"            "bore"             "many"            
##  [6526] "broad"            "brown"            "leaves"          
##  [6529] "former"           "year"             "like"            
##  [6532] "dry"              "hands"            "long"            
##  [6535] "splayed"          "fingers"          "rattled"         
##  [6538] "mournfully"       "night"            "breeze"          
##  [6541] "gimli"            "shivered"         "brought"         
##  [6544] "one"              "blanket"          "apiece"          
##  [6547] "let"              "us"               "light"           
##  [6550] "fire"             "said"             "care"            
##  [6553] "longer"           "danger"           "let"             
##  [6556] "orcs"             "come"             "thick"           
##  [6559] "summer"           "moths"            "round"           
##  [6562] "candle"           "unhappy"          "hobbits"         
##  [6565] "astray"           "woods"            "might"           
##  [6568] "draw"             "hither"           "said"            
##  [6571] "legolas"          "might"            "draw"            
##  [6574] "things"           "neither"          "orc"             
##  [6577] "hobbit"           "said"             "aragorn"         
##  [6580] "near"             "mountain"         "marches"         
##  [6583] "traitor"          "saruman"          "also"            
##  [6586] "edge"             "fangorn"          "perilous"        
##  [6589] "touch"            "trees"            "wood"            
##  [6592] "said"             "rohirrim"         "made"            
##  [6595] "great"            "burning"          "yesterday"       
##  [6598] "said"             "gimli"            "felled"          
##  [6601] "trees"            "fire"             "can"             
##  [6604] "seen"             "yet"              "passed"          
##  [6607] "night"            "safely"           "labour"          
##  [6610] "ended"            "many"             "said"            
##  [6613] "aragorn"          "heed"             "wrath"           
##  [6616] "fangorn"          "come"             "seldom"          
##  [6619] "go"               "trees"            "paths"           
##  [6622] "likely"           "lead"             "us"              
##  [6625] "forest"           "care"             "cut"             
##  [6628] "living"           "wood"             "need"            
##  [6631] "said"             "gimli"            "riders"          
##  [6634] "left"             "chip"             "bough"           
##  [6637] "enough"           "dead"             "wood"            
##  [6640] "lying"            "plenty"           "went"            
##  [6643] "gather"           "fuel"             "busied"          
##  [6646] "building"         "kindling"         "fire"            
##  [6649] "aragorn"          "sat"              "silent"          
##  [6652] "back"             "great"            "tree"            
##  [6655] "deep"             "thought"          "legolas"         
##  [6658] "stood"            "alone"            "open"            
##  [6661] "looking"          "towards"          "profound"        
##  [6664] "shadow"           "wood"             "leaning"         
##  [6667] "forward"          "one"              "listens"         
##  [6670] "voices"           "calling"          "distance"        
##  [6673] "dwarf"            "small"            "bright"          
##  [6676] "blaze"            "going"            "three"           
##  [6679] "companions"       "drew"             "close"           
##  [6682] "sat"              "together"         "shrouding"       
##  [6685] "light"            "hooded"           "forms"           
##  [6688] "legolas"          "looked"           "boughs"          
##  [6691] "tree"             "reaching"         "look"            
##  [6694] "said"             "tree"             "glad"            
##  [6697] "fire"             "may"              "dancing"         
##  [6700] "shadows"          "tricked"          "eyes"            
##  [6703] "certainly"        "companions"       "boughs"          
##  [6706] "appeared"         "bending"          "way"             
##  [6709] "come"             "flames"           "upper"           
##  [6712] "branches"         "stooping"         "brown"           
##  [6715] "leaves"           "now"              "stood"           
##  [6718] "stiff"            "rubbed"           "together"        
##  [6721] "like"             "many"             "cold"            
##  [6724] "cracked"          "hands"            "taking"          
##  [6727] "comfort"          "warmth"           "silence"         
##  [6730] "suddenly"         "dark"             "unknown"         
##  [6733] "forest"           "near"             "hand"            
##  [6736] "made"             "felt"             "great"           
##  [6739] "brooding"         "presence"         "full"            
##  [6742] "secret"           "purpose"          "legolas"         
##  [6745] "spoke"            "celeborn"         "warned"          
##  [6748] "us"               "go"               "far"             
##  [6751] "fangorn"          "said"             "know"            
##  [6754] "aragorn"          "fables"           "forest"          
##  [6757] "boromir"          "heard"            "heard"           
##  [6760] "many"             "tales"            "gondor"          
##  [6763] "elsewhere"        "said"             "aragorn"         
##  [6766] "words"            "celeborn"         "deem"            
##  [6769] "fables"           "men"              "made"            
##  [6772] "true"             "knowledge"        "fades"           
##  [6775] "thought"          "asking"           "truth"           
##  [6778] "matter"           "elf"              "wood"            
##  [6781] "know"             "shall"            "man"             
##  [6784] "answer"           "journeyed"        "said"            
##  [6787] "legolas"          "heard"            "nothing"         
##  [6790] "land"             "save"             "songs"           
##  [6793] "tell"             "onodrim"          "men"             
##  [6796] "call"             "ents"             "dwelt"           
##  [6799] "long"             "ago"              "fangorn"         
##  [6802] "old"              "old"              "even"            
##  [6805] "elves"            "reckon"           "yes"             
##  [6808] "old"              "said"             "aragorn"         
##  [6811] "old"              "forest"           "barrow"          
##  [6814] "downs"            "far"              "greater"         
##  [6817] "elrond"           "says"             "two"             
##  [6820] "akin"             "last"             "strongholds"     
##  [6823] "mighty"           "woods"            "elder"           
##  [6826] "days"             "firstborn"        "roamed"          
##  [6829] "men"              "still"            "slept"           
##  [6832] "yet"              "fangorn"          "holds"           
##  [6835] "secret"           "know"             "wish"            
##  [6838] "know"             "said"             "gimli"           
##  [6841] "let"              "nothing"          "dwells"          
##  [6844] "fangorn"          "troubled"         "account"         
##  [6847] "now"              "drew"             "lots"            
##  [6850] "watches"          "lot"              "first"           
##  [6853] "watch"            "fell"             "gimli"           
##  [6856] "others"           "lay"              "almost"          
##  [6859] "sleep"            "laid"             "hold"            
##  [6862] "gimli"            "said"             "aragorn"         
##  [6865] "drowsily"         "remember"         "perilous"        
##  [6868] "cut"              "bough"            "twig"            
##  [6871] "living"           "tree"             "fangorn"         
##  [6874] "stray"            "far"              "search"          
##  [6877] "dead"             "wood"             "let"             
##  [6880] "fire"             "die"              "rather"          
##  [6883] "call"             "need"             "fell"            
##  [6886] "asleep"           "legolas"          "already"         
##  [6889] "lay"              "motionless"       "fair"            
##  [6892] "hands"            "folded"           "upon"            
##  [6895] "breast"           "eyes"             "unclosed"        
##  [6898] "blending"         "living"           "night"           
##  [6901] "deep"             "dream"            "way"             
##  [6904] "elves"            "gimli"            "sat"             
##  [6907] "hunched"          "fire"             "running"         
##  [6910] "thumb"            "thoughtfully"     "along"           
##  [6913] "edge"             "axe"              "tree"            
##  [6916] "rustled"          "sound"            "suddenly"        
##  [6919] "gimli"            "looked"           "just"            
##  [6922] "edge"             "fire"             "light"           
##  [6925] "stood"            "old"              "bent"            
##  [6928] "man"              "leaning"          "staff"           
##  [6931] "wrapped"          "great"            "cloak"           
##  [6934] "wide"             "brimmed"          "hat"             
##  [6937] "pulled"           "eyes"             "gimli"           
##  [6940] "sprang"           "amazed"           "moment"          
##  [6943] "cry"              "though"           "thought"         
##  [6946] "flashed"          "mind"             "saruman"         
##  [6949] "caught"           "aragorn"          "legolas"         
##  [6952] "roused"           "sudden"           "movement"        
##  [6955] "sat"              "stared"           "old"             
##  [6958] "man"              "speak"            "make"            
##  [6961] "sign"             "well"             "father"          
##  [6964] "can"              "said"             "aragorn"         
##  [6967] "leaping"          "feet"             "come"            
##  [6970] "warm"             "cold"             "strode"          
##  [6973] "forward"          "old"              "man"             
##  [6976] "gone"             "trace"            "found"           
##  [6979] "near"             "hand"             "dare"            
##  [6982] "wander"           "far"              "moon"            
##  [6985] "set"              "night"            "dark"            
##  [6988] "suddenly"         "legolas"          "gave"            
##  [6991] "cry"              "horses"           "horses"          
##  [6994] "horses"           "gone"             "dragged"         
##  [6997] "pickets"          "disappeared"      "time"            
##  [7000] "three"            "companions"       "stood"           
##  [7003] "still"            "silent"           "troubled"        
##  [7006] "new"              "stroke"           "ill"             
##  [7009] "fortune"          "eaves"            "fangorn"         
##  [7012] "endless"          "leagues"          "lay"             
##  [7015] "men"              "rohan"            "friends"         
##  [7018] "wide"             "dangerous"        "land"            
##  [7021] "stood"            "seemed"           "heard"           
##  [7024] "far"              "night"            "sound"           
##  [7027] "horses"           "whinnying"        "neighing"        
##  [7030] "quiet"            "except"           "cold"            
##  [7033] "rustle"           "wind"             "well"            
##  [7036] "gone"             "said"             "aragorn"         
##  [7039] "last"             "find"             "catch"           
##  [7042] "return"           "must"             "without"         
##  [7045] "started"          "feet"             "still"           
##  [7048] "feet"             "said"             "gimli"           
##  [7051] "eat"              "well"             "walk"            
##  [7054] "threw"            "fuel"             "fire"            
##  [7057] "slumped"          "beside"           "hours"           
##  [7060] "ago"              "unwilling"        "sit"             
##  [7063] "horse"            "rohan"            "laughed"         
##  [7066] "legolas"          "make"             "rider"           
##  [7069] "yet"              "seems"            "unlikely"        
##  [7072] "shall"            "chance"           "said"            
##  [7075] "gimli"            "wish"             "know"            
##  [7078] "think"            "began"            "think"           
##  [7081] "saruman"          "else"             "remember"        
##  [7084] "words"            "éomer"            "walks"           
##  [7087] "like"             "old"              "man"             
##  [7090] "hooded"           "cloaked"          "words"           
##  [7093] "gone"             "horses"           "scared"          
##  [7096] "away"             "trouble"          "coming"          
##  [7099] "us"               "mark"             "words"           
##  [7102] "mark"             "said"             "aragorn"         
##  [7105] "marked"           "also"             "old"             
##  [7108] "man"              "hat"              "hood"            
##  [7111] "still"            "doubt"            "guess"           
##  [7114] "right"            "peril"            "night"           
##  [7117] "day"              "yet"              "meantime"        
##  [7120] "nothing"          "can"              "rest"            
##  [7123] "may"              "watch"            "now"             
##  [7126] "gimli"            "need"             "thought"         
##  [7129] "sleep"            "night"            "passed"          
##  [7132] "slowly"           "legolas"          "followed"        
##  [7135] "aragorn"          "gimli"            "followed"        
##  [7138] "legolas"          "watches"          "wore"            
##  [7141] "away"             "nothing"          "happened"        
##  [7144] "old"              "man"              "appear"          
##  [7147] "horses"           "return"           "chapter"         
##  [7150] "uruk"             "hai"              "pippin"          
##  [7153] "lay"              "dark"             "troubled"        
##  [7156] "dream"            "seemed"           "hear"            
##  [7159] "small"            "voice"            "echoing"         
##  [7162] "black"            "tunnels"          "calling"         
##  [7165] "frodo"            "frodo"            "instead"         
##  [7168] "frodo"            "hundreds"         "hideous"         
##  [7171] "orc"              "faces"            "grinned"         
##  [7174] "shadows"          "hundreds"         "hideous"         
##  [7177] "arms"             "grasped"          "every"           
##  [7180] "side"             "merry"            "woke"            
##  [7183] "cold"             "air"              "blew"            
##  [7186] "face"             "lying"            "back"            
##  [7189] "evening"          "coming"           "sky"             
##  [7192] "growing"          "dim"              "turned"          
##  [7195] "found"            "dream"            "little"          
##  [7198] "worse"            "waking"           "wrists"          
##  [7201] "legs"             "ankles"           "tied"            
##  [7204] "cords"            "beside"           "merry"           
##  [7207] "lay"              "white"            "faced"           
##  [7210] "dirty"            "rag"              "bound"           
##  [7213] "across"           "brows"            "sat"             
##  [7216] "stood"            "great"            "company"         
##  [7219] "orcs"             "slowly"           "pippins"         
##  [7222] "aching"           "head"             "memory"          
##  [7225] "pieced"           "together"         "became"          
##  [7228] "separated"        "dream"            "shadows"         
##  [7231] "course"           "merry"            "run"             
##  [7234] "woods"            "come"             "dashed"          
##  [7237] "like"             "taking"           "notice"          
##  [7240] "old"              "strider"          "run"             
##  [7243] "long"             "way"              "shouting"        
##  [7246] "remember"         "far"              "long"            
##  [7249] "suddenly"         "crashed"          "right"           
##  [7252] "group"            "orcs"             "standing"        
##  [7255] "listening"        "appear"           "see"             
##  [7258] "merry"            "pippin"           "almost"          
##  [7261] "arms"             "yelled"           "dozens"          
##  [7264] "goblins"          "sprung"           "trees"           
##  [7267] "merry"            "drawn"            "swords"          
##  [7270] "orcs"             "wish"             "fight"           
##  [7273] "tried"            "lay"              "hold"            
##  [7276] "even"             "merry"            "cut"             
##  [7279] "several"          "arms"             "hands"           
##  [7282] "good"             "old"              "merry"           
##  [7285] "boromir"          "come"             "leaping"         
##  [7288] "trees"            "made"             "fight"           
##  [7291] "slew"             "many"             "rest"            
##  [7294] "fled"             "gone"             "far"             
##  [7297] "way"              "back"             "attacked"        
##  [7300] "hundred"          "orcs"             "least"           
##  [7303] "large"            "shot"             "rain"            
##  [7306] "arrows"           "always"           "boromir"         
##  [7309] "boromir"          "blown"            "great"           
##  [7312] "horn"             "till"             "woods"           
##  [7315] "rang"             "first"            "orcs"            
##  [7318] "dismayed"         "drawn"            "back"            
##  [7321] "answer"           "echoes"           "came"            
##  [7324] "attacked"         "fierce"           "ever"            
##  [7327] "pippin"           "remember"         "much"            
##  [7330] "last"             "memo"             "boromir"         
##  [7333] "leaning"          "tree"             "plucking"        
##  [7336] "arrow"            "darkness"         "fell"            
##  [7339] "suddenly"         "suppose"          "knocked"         
##  [7342] "head"             "said"             "wonder"          
##  [7345] "poor"             "merry"            "much"            
##  [7348] "hurt"             "happened"         "boromir"         
##  [7351] "didnt"            "orcs"             "kill"            
##  [7354] "us"               "going"            "answer"          
##  [7357] "questions"        "felt"             "cold"            
##  [7360] "sick"             "wish"             "gandalf"         
##  [7363] "never"            "persuaded"        "elrond"          
##  [7366] "let"              "us"               "come"            
##  [7369] "thought"          "good"             "just"            
##  [7372] "nuisance"         "passenger"        "piece"           
##  [7375] "luggage"          "now"              "stolen"          
##  [7378] "just"             "piece"            "luggage"         
##  [7381] "orcs"             "hope"             "strider"         
##  [7384] "someone"          "come"             "claim"           
##  [7387] "us"               "hope"             "wont"            
##  [7390] "throw"            "plans"            "wish"            
##  [7393] "get"              "free"             "struggled"       
##  [7396] "little"           "quite"            "uselessly"       
##  [7399] "one"              "orcs"             "sitting"         
##  [7402] "near"             "laughed"          "said"            
##  [7405] "something"        "companion"        "abominable"      
##  [7408] "tongue"           "rest"             "can"             
##  [7411] "little"           "fool"             "said"            
##  [7414] "pippin"           "common"           "speech"          
##  [7417] "made"             "almost"           "hideous"         
##  [7420] "language"         "rest"             "can"             
##  [7423] "well"             "find"             "use"             
##  [7426] "legs"             "long"             "youll"           
##  [7429] "wish"             "got"              "none"            
##  [7432] "get"              "home"             "way"             
##  [7435] "youd"             "wish"             "dead"            
##  [7438] "now"              "said"             "id"              
##  [7441] "make"             "squeak"           "miserable"       
##  [7444] "rat"              "stooped"          "pippin"          
##  [7447] "bringing"         "yellow"           "fangs"           
##  [7450] "close"            "face"             "black"           
##  [7453] "knife"            "long"             "jagged"          
##  [7456] "blade"            "hand"             "lie"             
##  [7459] "quiet"            "ill"              "tickle"          
##  [7462] "hissed"           "dont"             "draw"            
##  [7465] "attention"        "may"              "forget"          
##  [7468] "orders"           "curse"            "isengarders"     
##  [7471] "uglúk"            "bagronk"          "sha"             
##  [7474] "pushdug"          "saruman"          "glob"            
##  [7477] "búbhosh"          "skai"             "passed"          
##  [7480] "long"             "angry"            "speech"          
##  [7483] "tongue"           "slowly"           "died"            
##  [7486] "away"             "muttering"        "snarling"        
##  [7489] "terrified"        "pippin"           "lay"             
##  [7492] "still"            "though"           "pain"            
##  [7495] "wrists"           "ankles"           "growing"         
##  [7498] "stones"           "beneath"          "boring"          
##  [7501] "back"             "take"             "mind"            
##  [7504] "listened"         "intently"         "hear"            
##  [7507] "many"             "voices"           "round"           
##  [7510] "though"           "orc"              "speech"          
##  [7513] "sounded"          "times"            "full"            
##  [7516] "hate"             "anger"            "seemed"          
##  [7519] "plain"            "something"        "like"            
##  [7522] "quarrel"          "begun"            "getting"         
##  [7525] "hotter"           "pippins"          "surprise"        
##  [7528] "found"            "much"             "talk"            
##  [7531] "intelligible"     "many"             "orcs"            
##  [7534] "using"            "ordinary"         "language"        
##  [7537] "apparently"       "members"          "two"             
##  [7540] "three"            "quite"            "different"       
##  [7543] "tribes"           "present"          "understand"      
##  [7546] "one"              "anothers"         "orc"             
##  [7549] "speech"           "angry"            "debate"          
##  [7552] "concerning"       "now"              "way"             
##  [7555] "take"             "done"             "prisoners"       
##  [7558] "theres"           "time"             "kill"            
##  [7561] "properly"         "said"             "one"             
##  [7564] "time"             "play"             "trip"            
##  [7567] "cant"             "helped"           "said"            
##  [7570] "another"          "kill"             "quick"           
##  [7573] "kill"             "now"              "theyre"          
##  [7576] "cursed"           "nuisance"         "hurry"           
##  [7579] "evenings"         "coming"           "get"             
##  [7582] "move"             "orders"           "said"            
##  [7585] "third"            "voice"            "deep"            
##  [7588] "growl"            "kill"             "halfings"        
##  [7591] "brought"          "back"             "alive"           
##  [7594] "quickly"          "possible"         "thats"           
##  [7597] "orders"           "wanted"           "asked"           
##  [7600] "several"          "voices"           "alive"           
##  [7603] "give"             "good"             "sport"           
##  [7606] "heard"            "one"              "got"             
##  [7609] "something"        "something"        "thats"           
##  [7612] "wanted"           "war"              "elvish"          
##  [7615] "plot"             "anyway"           "theyll"          
##  [7618] "questioned"       "know"             "dont"            
##  [7621] "search"           "find"             "might"           
##  [7624] "find"             "something"        "use"             
##  [7627] "interesting"      "remark"           "sneered"         
##  [7630] "voice"            "softer"           "others"          
##  [7633] "evil"             "may"              "report"          
##  [7636] "prisoners"        "searched"         "plundered"       
##  [7639] "orders"           "mine"             "said"            
##  [7642] "deep"             "voice"            "alive"           
##  [7645] "captured"         "spoiling"         "thats"           
##  [7648] "orders"           "orders"           "said"            
##  [7651] "one"              "earlier"          "voices"          
##  [7654] "come"             "way"              "mines"           
##  [7657] "kill"             "avenge"           "folk"            
##  [7660] "wish"             "kill"             "go"              
##  [7663] "back"             "north"            "can"             
##  [7666] "wish"             "said"             "growling"        
##  [7669] "voice"            "uglúk"            "command"         
##  [7672] "return"           "isengard"         "shortest"        
##  [7675] "road"             "saruman"          "master"          
##  [7678] "great"            "eye"              "said"            
##  [7681] "evil"             "voice"            "go"              
##  [7684] "back"             "lugbúrz"          "cross"           
##  [7687] "great"            "river"            "might"           
##  [7690] "said"             "another"          "voice"           
##  [7693] "enough"           "us"               "venture"         
##  [7696] "bridges"          "came"             "across"          
##  [7699] "said"             "evil"             "voice"           
##  [7702] "winged"           "nazgûl"           "awaits"          
##  [7705] "us"               "northward"        "east"            
##  [7708] "bank"             "maybe"            "maybe"           
##  [7711] "youll"            "fly"              "prisoners"       
##  [7714] "get"              "pay"              "praise"          
##  [7717] "lugbúrz"          "leave"            "us"              
##  [7720] "foot"             "best"             "can"             
##  [7723] "horse"            "country"          "must"            
##  [7726] "stick"            "together"         "lands"           
##  [7729] "dangerous"        "full"             "foul"            
##  [7732] "rebels"           "brigands"         "aye"             
##  [7735] "must"             "stick"            "together"        
##  [7738] "growled"          "uglúk"            "dont"            
##  [7741] "trust"            "little"           "swine"           
##  [7744] "youve"            "guts"             "outside"         
##  [7747] "sties"            "us"               "youd"            
##  [7750] "run"              "away"             "fighting"        
##  [7753] "uruk"             "hai"              "slew"            
##  [7756] "great"            "warrior"          "took"            
##  [7759] "prisoners"        "servants"         "saruman"         
##  [7762] "wise"             "white"            "hand"            
##  [7765] "hand"             "gives"            "us"              
##  [7768] "mans"             "flesh"            "eat"             
##  [7771] "came"             "isengard"         "led"             
##  [7774] "shall"            "lead"             "back"            
##  [7777] "way"              "choose"           "uglúk"           
##  [7780] "spoken"           "spoken"           "enough"          
##  [7783] "uglúk"            "sneered"          "evil"            
##  [7786] "voice"            "wonder"           "like"            
##  [7789] "lugbúrz"          "might"            "think"           
##  [7792] "uglúks"           "shoulders"        "needed"          
##  [7795] "relieving"        "swollen"          "head"            
##  [7798] "might"            "ask"              "strange"         
##  [7801] "ideas"            "came"             "come"            
##  [7804] "saruman"          "perhaps"          "think"           
##  [7807] "setting"          "filthy"           "white"           
##  [7810] "badges"           "might"            "agree"           
##  [7813] "grishnákh"        "trusted"          "messenger"       
##  [7816] "grishnákh"        "say"              "saruman"         
##  [7819] "fool"             "dirty"            "treacherous"     
##  [7822] "fool"             "great"            "eye"             
##  [7825] "swine"            "folk"             "like"            
##  [7828] "called"           "swine"            "muck"            
##  [7831] "rakers"           "dirty"            "little"          
##  [7834] "wizard"           "orc"              "flesh"           
##  [7837] "eat"              "ill"              "warrant"         
##  [7840] "many"             "loud"             "yells"           
##  [7843] "orc"              "speech"           "answered"        
##  [7846] "ringing"          "clash"            "weapons"         
##  [7849] "drawn"            "cautiously"       "pippin"          
##  [7852] "rolled"           "hoping"           "see"             
##  [7855] "happen"           "guards"           "gone"            
##  [7858] "join"             "fray"             "twilight"        
##  [7861] "saw"              "large"            "black"           
##  [7864] "orc"              "probably"         "uglúk"           
##  [7867] "standing"         "facing"           "grishnákh"       
##  [7870] "short"            "crook"            "legged"          
##  [7873] "creature"         "broad"            "long"            
##  [7876] "arms"             "hung"             "almost"          
##  [7879] "ground"           "round"            "many"            
##  [7882] "smaller"          "goblins"          "pippin"          
##  [7885] "supposed"         "ones"             "north"           
##  [7888] "drawn"            "knives"           "swords"          
##  [7891] "hesitated"        "attack"           "uglúk"           
##  [7894] "uglúk"            "shouted"          "number"          
##  [7897] "orcs"             "nearly"           "size"            
##  [7900] "ran"              "suddenly"         "without"         
##  [7903] "warning"          "uglúk"            "sprang"          
##  [7906] "forwards"         "two"              "swift"           
##  [7909] "strokes"          "swept"            "heads"           
##  [7912] "two"              "opponents"        "grishnákh"       
##  [7915] "stepped"          "aside"            "vanished"        
##  [7918] "shadows"          "others"           "gave"            
##  [7921] "way"              "one"              "stepped"         
##  [7924] "backwards"        "fell"             "merrys"          
##  [7927] "prostrate"        "form"             "curse"           
##  [7930] "yet"              "probably"         "saved"           
##  [7933] "life"             "uglúks"           "followers"       
##  [7936] "leaped"           "cut"              "another"         
##  [7939] "broad"            "bladed"           "swords"          
##  [7942] "yellow"           "fanged"           "guard"           
##  [7945] "body"             "fell"             "right"           
##  [7948] "top"              "pippin"           "still"           
##  [7951] "clutching"        "long"             "saw"             
##  [7954] "edged"            "knife"            "put"             
##  [7957] "weapons"          "shouted"          "uglúk"           
##  [7960] "lets"             "nonsense"         "go"              
##  [7963] "straight"         "west"             "stair"           
##  [7966] "straight"         "downs"            "along"           
##  [7969] "river"            "forest"           "march"           
##  [7972] "day"              "night"            "clear"           
##  [7975] "now"              "thought"          "pippin"          
##  [7978] "takes"            "ugly"             "fellow"          
##  [7981] "little"           "get"              "troop"           
##  [7984] "control"          "ive"              "got"             
##  [7987] "chance"           "gleam"            "hope"            
##  [7990] "come"             "edge"             "black"           
##  [7993] "knife"            "snicked"          "arm"             
##  [7996] "slid"             "wrist"            "felt"            
##  [7999] "blood"            "trickling"        "hand"            
##  [8002] "also"             "felt"             "cold"            
##  [8005] "touch"            "steel"            "skin"            
##  [8008] "orcs"             "getting"          "ready"           
##  [8011] "march"            "northerners"      "still"           
##  [8014] "unwilling"        "isengarders"      "slew"            
##  [8017] "two"              "rest"             "cowed"           
##  [8020] "much"             "cursing"          "confusion"       
##  [8023] "moment"           "pippin"           "unwatched"       
##  [8026] "legs"             "securely"         "bound"           
##  [8029] "arms"             "tied"             "wrists"          
##  [8032] "hands"            "front"            "move"            
##  [8035] "together"         "though"           "bonds"           
##  [8038] "cruelly"          "tight"            "pushed"          
##  [8041] "dead"             "orc"              "one"             
##  [8044] "side"             "hardly"           "daring"          
##  [8047] "breathe"          "drew"             "knot"            
##  [8050] "wrist"            "cord"             "blade"           
##  [8053] "knife"            "sharp"            "dead"            
##  [8056] "hand"             "held"             "fast"            
##  [8059] "cord"             "cut"              "quickly"         
##  [8062] "pippin"           "took"             "fingers"         
##  [8065] "knotted"          "loose"            "bracelet"        
##  [8068] "two"              "loops"            "slipped"         
##  [8071] "hands"            "lay"              "still"           
##  [8074] "pick"             "prisoners"        "shouted"         
##  [8077] "uglúk"            "dont"             "play"            
##  [8080] "tricks"           "alive"            "get"             
##  [8083] "back"             "someone"          "else"            
##  [8086] "die"              "orc"              "seized"          
##  [8089] "pippin"           "like"             "sack"            
##  [8092] "put"              "head"             "tied"            
##  [8095] "hands"            "grabbed"          "arms"            
##  [8098] "dragged"          "pippins"          "face"            
##  [8101] "crushed"          "neck"             "jolted"          
##  [8104] "another"          "treated"          "merry"           
##  [8107] "way"              "orcs"             "clawlike"        
##  [8110] "hand"             "gripped"          "pippins"         
##  [8113] "arms"             "like"             "iron"            
##  [8116] "nails"            "bit"              "shut"            
##  [8119] "eyes"             "slipped"          "back"            
##  [8122] "evil"             "dreams"           "suddenly"        
##  [8125] "thrown"           "stony"            "floor"           
##  [8128] "early"            "night"            "slim"            
##  [8131] "moon"             "already"          "falling"         
##  [8134] "westward"         "edge"             "cliff"           
##  [8137] "seemed"           "look"             "sea"             
##  [8140] "pale"             "mist"             "sound"           
##  [8143] "water"            "falling"          "nearby"          
##  [8146] "scouts"           "come"             "back"            
##  [8149] "last"             "said"             "orc"             
##  [8152] "close"            "hand"             "well"            
##  [8155] "discover"         "growled"          "voice"           
##  [8158] "uglúk"            "single"           "horseman"        
##  [8161] "made"             "westwards"        "alls"            
##  [8164] "clear"            "now"              "now"             
##  [8167] "daresay"          "long"             "fools"           
##  [8170] "shot"             "hell"             "raise"           
##  [8173] "alarm"            "cursed"           "horsebreeders"   
##  [8176] "hear"             "us"               "morning"         
##  [8179] "now"              "well"             "leg"             
##  [8182] "double"           "quick"            "shadow"          
##  [8185] "bent"             "pippin"           "uglúk"           
##  [8188] "sit"              "said"             "orc"             
##  [8191] "lads"             "tired"            "lugging"         
##  [8194] "got"              "climb"            "must"            
##  [8197] "use"              "legs"             "helpful"         
##  [8200] "now"              "crying"           "trying"          
##  [8203] "escape"           "ways"             "paying"          
##  [8206] "tricks"           "wont"             "like"            
##  [8209] "though"           "wont"             "spoil"           
##  [8212] "usefulness"       "master"           "cut"             
##  [8215] "thongs"           "round"            "pippins"         
##  [8218] "legs"             "ankles"           "picked"          
##  [8221] "hair"             "stood"            "feet"            
##  [8224] "pippin"           "fell"             "uglúk"           
##  [8227] "dragged"          "hair"             "several"         
##  [8230] "orcs"             "laughed"          "uglúk"           
##  [8233] "thrust"           "flask"            "teeth"           
##  [8236] "poured"           "burning"          "liquid"          
##  [8239] "throat"           "felt"             "hot"             
##  [8242] "fierce"           "glow"             "flow"            
##  [8245] "pain"             "legs"             "ankles"          
##  [8248] "vanished"         "stand"            "now"             
##  [8251] "said"             "uglúk"            "pippin"          
##  [8254] "saw"              "go"               "merry"           
##  [8257] "lying"            "close"            "kick"            
##  [8260] "merry"            "groaned"          "seizing"         
##  [8263] "roughly"          "uglúk"            "pulled"          
##  [8266] "sitting"          "position"         "tore"            
##  [8269] "bandage"          "head"             "smeared"         
##  [8272] "wound"            "dark"             "stuff"           
##  [8275] "small"            "wooden"           "box"             
##  [8278] "merry"            "cried"            "struggled"       
##  [8281] "wildly"           "orcs"             "clapped"         
##  [8284] "hooted"           "cant"             "take"            
##  [8287] "medicine"         "jeered"           "doesnt"          
##  [8290] "know"             "whats"            "good"            
##  [8293] "ai"               "shall"            "fun"             
##  [8296] "later"            "moment"           "uglúk"           
##  [8299] "engaged"          "sport"            "needed"          
##  [8302] "speed"            "humour"           "unwilling"       
##  [8305] "followers"        "healing"          "merry"           
##  [8308] "orc"              "fashion"          "treatment"       
##  [8311] "worked"           "swiftly"          "forced"          
##  [8314] "drink"            "flask"            "hobbits"         
##  [8317] "throat"           "cut"              "leg"             
##  [8320] "bonds"            "dragged"          "feet"            
##  [8323] "merry"            "stood"            "looking"         
##  [8326] "pale"             "grim"             "defiant"         
##  [8329] "much"             "alive"            "gash"            
##  [8332] "forehead"         "gave"             "trouble"         
##  [8335] "bore"             "brown"            "scar"            
##  [8338] "end"              "days"             "hullo"           
##  [8341] "pippin"           "said"             "youve"           
##  [8344] "come"             "little"           "expedition"      
##  [8347] "get"              "bed"              "breakfast"       
##  [8350] "now"              "said"             "uglúk"           
##  [8353] "none"             "hold"             "tongues"         
##  [8356] "talk"             "one"              "another"         
##  [8359] "trouble"          "reported"         "end"             
##  [8362] "hell"             "know"             "pay"             
##  [8365] "youll"            "get"              "bed"             
##  [8368] "breakfast"        "right"            "can"             
##  [8371] "stomach"          "orc"              "band"            
##  [8374] "began"            "descend"          "narrow"          
##  [8377] "ravine"           "leading"          "misty"           
##  [8380] "plain"            "merry"            "pippin"          
##  [8383] "separated"        "dozen"            "orcs"            
##  [8386] "climbed"          "bottom"           "stepped"         
##  [8389] "grass"            "hearts"           "hobbits"         
##  [8392] "rose"             "now"              "straight"        
##  [8395] "shouted"          "uglúk"            "west"            
##  [8398] "little"           "north"            "follow"          
##  [8401] "lugdush"          "going"            "sunrise"         
##  [8404] "said"             "northerners"      "go"              
##  [8407] "running"          "said"             "uglúk"           
##  [8410] "think"            "sit"              "grass"           
##  [8413] "wait"             "whiteskins"       "join"            
##  [8416] "picnic"           "cant"             "run"             
##  [8419] "sunlight"         "youll"            "run"             
##  [8422] "behind"           "said"             "uglúk"           
##  [8425] "run"              "youll"            "never"           
##  [8428] "see"              "beloved"          "holes"           
##  [8431] "white"            "hand"             "whats"           
##  [8434] "use"              "sending"          "mountain"        
##  [8437] "maggots"          "trip"             "half"            
##  [8440] "trained"          "run"              "curse"           
##  [8443] "run"              "night"            "lasts"           
##  [8446] "whole"            "company"          "began"           
##  [8449] "run"              "long"             "loping"          
##  [8452] "strides"          "orcs"             "kept"            
##  [8455] "order"            "thrusting"        "jostling"        
##  [8458] "cursing"          "yet"              "speed"           
##  [8461] "great"            "hobbit"           "guard"           
##  [8464] "three"            "pippin"           "far"             
##  [8467] "back"             "line"             "wondered"        
##  [8470] "long"             "able"             "go"              
##  [8473] "pace"             "food"             "since"           
##  [8476] "morning"          "one"              "guards"          
##  [8479] "whip"             "present"          "orc"             
##  [8482] "liquor"           "still"            "hot"             
##  [8485] "wits"             "wide"             "awake"           
##  [8488] "every"            "now"              "came"            
##  [8491] "mind"             "unbidden"         "vision"          
##  [8494] "keen"             "face"             "strider"         
##  [8497] "bending"          "dark"             "trail"           
##  [8500] "running"          "running"          "behind"          
##  [8503] "even"             "ranger"           "see"             
##  [8506] "except"           "confused"         "trail"           
##  [8509] "orc"              "feet"             "little"          
##  [8512] "prints"           "merrys"           "overwhelmed"     
##  [8515] "trampling"        "iron"             "shod"            
##  [8518] "shoes"            "behind"           "gone"            
##  [8521] "mile"             "cliff"            "land"            
##  [8524] "sloped"           "wide"             "shallow"         
##  [8527] "depression"       "ground"           "soft"            
##  [8530] "wet"              "mist"             "lay"             
##  [8533] "pale"             "glimmering"       "last"            
##  [8536] "rays"             "sickle"           "moon"            
##  [8539] "dark"             "shapes"           "orcs"            
##  [8542] "front"            "grew"             "dim"             
##  [8545] "swallowed"        "ai"               "steady"          
##  [8548] "now"              "shouted"          "uglúk"           
##  [8551] "rear"             "sudden"           "thought"         
##  [8554] "leaped"           "pippins"          "mind"            
##  [8557] "acted"            "swerved"          "aside"           
##  [8560] "right"            "dived"            "reach"           
##  [8563] "clutching"        "guard"            "headfirst"       
##  [8566] "mist"             "landed"           "sprawling"       
##  [8569] "grass"            "halt"             "yelled"          
##  [8572] "uglúk"            "moment"           "turmoil"         
##  [8575] "confusion"        "pippin"           "sprang"          
##  [8578] "ran"              "orcs"             "suddenly"        
##  [8581] "loomed"           "right"            "front"           
##  [8584] "hope"             "escape"           "thought"         
##  [8587] "pippin"           "hope"             "left"            
##  [8590] "marks"            "unspoilt"         "wet"             
##  [8593] "ground"           "groped"           "two"             
##  [8596] "tied"             "hands"            "throat"          
##  [8599] "unclasped"        "brooch"           "cloak"           
##  [8602] "just"             "long"             "arms"            
##  [8605] "hard"             "claws"            "seized"          
##  [8608] "let"              "fall"             "suppose"         
##  [8611] "lie"              "end"              "time"            
##  [8614] "thought"          "dont"             "know"            
##  [8617] "others"           "escaped"          "theyve"          
##  [8620] "probably"         "gone"             "frodo"           
##  [8623] "whip"             "thong"            "curled"          
##  [8626] "round"            "legs"             "stifled"         
##  [8629] "cry"              "enough"           "shouted"         
##  [8632] "uglúk"            "running"          "hes"             
##  [8635] "still"            "got"              "run"             
##  [8638] "long"             "way"              "yet"             
##  [8641] "make"             "em"               "run"             
##  [8644] "just"             "use"              "whip"            
##  [8647] "reminder"         "thats"            "snarled"         
##  [8650] "turning"          "pippin"           "shant"           
##  [8653] "forget"           "payment"          "put"             
##  [8656] "leg"              "neither"          "pippin"          
##  [8659] "merry"            "remembered"       "much"            
##  [8662] "later"            "part"             "journey"         
##  [8665] "evil"             "dreams"           "evil"            
##  [8668] "waking"           "blended"          "long"            
##  [8671] "tunnel"           "misery"           "hope"            
##  [8674] "growing"          "ever"             "fainter"         
##  [8677] "behind"           "ran"              "ran"             
##  [8680] "striving"         "keep"             "pace"            
##  [8683] "set"              "orcs"             "licked"          
##  [8686] "every"            "now"              "cruel"           
##  [8689] "thong"            "cunningly"        "handled"         
##  [8692] "halted"           "stumbled"         "seized"          
##  [8695] "dragged"          "distance"         "warmth"          
##  [8698] "orc"              "draught"          "gone"            
##  [8701] "pippin"           "felt"             "cold"            
##  [8704] "sick"             "suddenly"         "fell"            
##  [8707] "face"             "downward"         "turf"            
##  [8710] "hard"             "hands"            "rending"         
##  [8713] "nails"            "gripped"          "lifted"          
##  [8716] "carried"          "like"             "sack"            
##  [8719] "darkness"         "grew"             "whether"         
##  [8722] "darkness"         "another"          "night"           
##  [8725] "blindness"        "eyes"             "tell"            
##  [8728] "dimly"            "became"           "aware"           
##  [8731] "voices"           "clamouring"       "seemed"          
##  [8734] "many"             "orcs"             "demanding"       
##  [8737] "halt"             "uglúk"            "shouting"        
##  [8740] "felt"             "flung"            "ground"          
##  [8743] "lay"              "fell"             "till"            
##  [8746] "black"            "dreams"           "took"            
##  [8749] "long"             "escape"           "pain"            
##  [8752] "soon"             "iron"             "grip"            
##  [8755] "merciless"        "hands"            "long"            
##  [8758] "time"             "tossed"           "shaken"          
##  [8761] "slowly"           "darkness"         "gave"            
##  [8764] "way"              "came"             "back"            
##  [8767] "waking"           "world"            "found"           
##  [8770] "morning"          "orders"           "shouted"         
##  [8773] "thrown"           "roughly"          "grass"           
##  [8776] "lay"              "fighting"         "despair"         
##  [8779] "head"             "swam"             "heat"            
##  [8782] "body"             "guessed"          "given"           
##  [8785] "another"          "draught"          "orc"             
##  [8788] "stooped"          "flung"            "bread"           
##  [8791] "strip"            "raw"              "dried"           
##  [8794] "flesh"            "ate"              "stale"           
##  [8797] "grey"             "bread"            "hungrily"        
##  [8800] "meat"             "famished"         "yet"             
##  [8803] "famished"         "eat"              "flesh"           
##  [8806] "flung"            "orc"              "flesh"           
##  [8809] "dared"            "guess"            "creature"        
##  [8812] "sat"              "looked"           "merry"           
##  [8815] "far"              "away"             "banks"           
##  [8818] "swift"            "narrow"           "river"           
##  [8821] "ahead"            "mountains"        "loomed"          
##  [8824] "tall"             "peak"             "catching"        
##  [8827] "first"            "rays"             "sun"             
##  [8830] "dark"             "smudge"           "forest"          
##  [8833] "lay"              "lower"            "slopes"          
##  [8836] "much"             "shouting"         "debating"        
##  [8839] "among"            "orcs"             "quarrel"         
##  [8842] "seemed"           "point"            "breaking"        
##  [8845] "northerners"      "isengarders"      "pointing"        
##  [8848] "back"             "away"             "south"           
##  [8851] "pointing"         "eastward"         "well"            
##  [8854] "said"             "uglúk"            "leave"           
##  [8857] "killing"          "ive"              "told"            
##  [8860] "want"             "throw"            "away"            
##  [8863] "weve"             "come"             "way"             
##  [8866] "get"              "throw"            "away"            
##  [8869] "ill"              "look"             "let"             
##  [8872] "fighting"         "uruk"             "hai"             
##  [8875] "work"             "usual"            "youre"           
##  [8878] "afraid"           "whiteskins"       "run"             
##  [8881] "run"              "theres"           "forest"          
##  [8884] "shouted"          "pointing"         "ahead"           
##  [8887] "get"              "best"             "hope"            
##  [8890] "go"               "quick"            "knock"           
##  [8893] "heads"            "put"              "sense"           
##  [8896] "others"           "cursing"          "scuffling"       
##  [8899] "northerners"      "broke"            "away"            
##  [8902] "dashed"           "hundred"          "running"         
##  [8905] "wildly"           "along"            "river"           
##  [8908] "towards"          "mountains"        "hobbits"         
##  [8911] "left"             "isengarders"      "grim"            
##  [8914] "dark"             "band"             "four"            
##  [8917] "score"            "least"            "large"           
##  [8920] "swart"            "slant"            "eyed"            
##  [8923] "orcs"             "great"            "bows"            
##  [8926] "short"            "broad"            "bladed"          
##  [8929] "swords"           "larger"           "bolder"          
##  [8932] "northerners"      "remained"         "now"             
##  [8935] "well"             "deal"             "grishnákh"       
##  [8938] "said"             "uglúk"            "even"            
##  [8941] "followers"        "looking"          "uneasily"        
##  [8944] "southwards"       "know"             "growled"         
##  [8947] "uglúk"            "cursed"           "horse"           
##  [8950] "boys"             "got"              "wind"            
##  [8953] "us"               "thats"            "fault"           
##  [8956] "snaga"            "scouts"           "ears"            
##  [8959] "cut"              "fighters"         "well"            
##  [8962] "feast"            "horseflesh"       "yet"             
##  [8965] "something"        "better"           "moment"          
##  [8968] "pippin"           "saw"              "troop"           
##  [8971] "pointing"         "eastward"         "direction"       
##  [8974] "now"              "came"             "hoarse"          
##  [8977] "cries"            "grishnákh"        "back"            
##  [8980] "couple"           "score"            "others"          
##  [8983] "like"             "long"             "armed"           
##  [8986] "crook"            "legged"           "orcs"            
##  [8989] "red"              "eye"              "painted"         
##  [8992] "shields"          "uglúk"            "stepped"         
##  [8995] "forward"          "meet"             "youve"           
##  [8998] "come"             "back"             "said"            
##  [9001] "thought"          "better"           "eh"              
##  [9004] "ive"              "returned"         "see"             
##  [9007] "orders"           "carried"          "prisoners"       
##  [9010] "safe"             "answered"         "grishnákh"       
##  [9013] "indeed"           "said"             "uglúk"           
##  [9016] "waste"            "effort"           "ill"             
##  [9019] "see"              "orders"           "carried"         
##  [9022] "command"          "else"             "come"            
##  [9025] "back"             "went"             "hurry"           
##  [9028] "leave"            "anything"         "behind"          
##  [9031] "left"             "fool"             "snarled"         
##  [9034] "grishnákh"        "stout"            "fellows"         
##  [9037] "good"             "lose"             "knew"            
##  [9040] "youd"             "lead"             "mess"            
##  [9043] "ive"              "come"             "help"            
##  [9046] "splendid"         "laughed"          "uglúk"           
##  [9049] "unless"           "youve"            "got"             
##  [9052] "guts"             "fighting"         "youve"           
##  [9055] "taken"            "wrong"            "way"             
##  [9058] "lugbúrz"          "road"             "whiteskins"      
##  [9061] "coming"           "whats"            "happened"        
##  [9064] "precious"         "nazgûl"           "another"         
##  [9067] "mount"            "shot"             "now"             
##  [9070] "youd"             "brought"          "along"           
##  [9073] "might"            "useful"           "nazgûl"          
##  [9076] "make"             "nazgûl"           "nazgûl"          
##  [9079] "said"             "grishnákh"        "shivering"       
##  [9082] "licking"          "lips"             "word"            
##  [9085] "foul"             "taste"            "savoured"        
##  [9088] "painfully"        "speak"            "deep"            
##  [9091] "beyond"           "reach"            "muddy"           
##  [9094] "dreams"           "uglúk"            "said"            
##  [9097] "nazgûl"           "ah"               "make"            
##  [9100] "one"              "day"              "youll"           
##  [9103] "wish"             "said"             "ape"             
##  [9106] "snarled"          "fiercely"         "know"            
##  [9109] "theyre"           "apple"            "great"           
##  [9112] "eye"              "winged"           "nazgûl"          
##  [9115] "yet"              "yet"              "wont"            
##  [9118] "let"              "show"             "across"          
##  [9121] "great"            "river"            "yet"             
##  [9124] "soon"             "theyre"           "war"             
##  [9127] "purposes"         "seem"             "know"            
##  [9130] "lot"              "said"             "uglúk"           
##  [9133] "good"             "guess"            "perhaps"         
##  [9136] "lugbúrz"          "might"            "wonder"          
##  [9139] "meantime"         "uruk"             "hai"             
##  [9142] "isengard"         "can"              "dirty"           
##  [9145] "work"             "usual"            "dont"            
##  [9148] "stand"            "slavering"        "get"             
##  [9151] "rabble"           "together"         "swine"           
##  [9154] "legging"          "forest"           "youd"            
##  [9157] "better"           "follow"           "wouldnt"         
##  [9160] "get"              "back"             "great"           
##  [9163] "river"            "alive"            "right"           
##  [9166] "mark"             "now"              "ill"             
##  [9169] "heels"            "isengarders"      "seized"          
##  [9172] "merry"            "pippin"           "slung"           
##  [9175] "backs"            "troop"            "started"         
##  [9178] "hour"             "hour"             "ran"             
##  [9181] "pausing"          "now"              "sling"           
##  [9184] "hobbits"          "fresh"            "carriers"        
##  [9187] "either"           "quicker"          "hardier"         
##  [9190] "plan"             "grishnákhs"       "isengarders"     
##  [9193] "gradually"        "passed"           "orcs"            
##  [9196] "mordor"           "grishnákhs"       "folk"            
##  [9199] "closed"           "behind"           "soon"            
##  [9202] "gaining"          "also"             "northerners"     
##  [9205] "ahead"            "forest"           "began"           
##  [9208] "draw"             "nearer"           "pippin"          
##  [9211] "bruised"          "torn"             "aching"          
##  [9214] "head"             "grated"           "filthy"          
##  [9217] "jowl"             "hairy"            "ear"             
##  [9220] "orc"              "held"             "immediately"     
##  [9223] "front"            "bowed"            "backs"           
##  [9226] "tough"            "thick"            "legs"            
##  [9229] "going"            "unresting"        "made"            
##  [9232] "wire"             "horn"             "beating"         
##  [9235] "nightmare"        "seconds"          "endless"         
##  [9238] "time"             "afternoon"        "uglúks"          
##  [9241] "troop"            "overtook"         "northerners"     
##  [9244] "flagging"         "rays"             "bright"          
##  [9247] "sun"              "winter"           "sun"             
##  [9250] "shining"          "pale"             "cool"            
##  [9253] "sky"              "though"           "heads"           
##  [9256] "tongues"          "lolling"          "maggots"         
##  [9259] "jeered"           "isengarders"      "youre"           
##  [9262] "cooked"           "whiteskins"       "catch"           
##  [9265] "eat"              "theyre"           "coming"          
##  [9268] "cry"              "grishnákh"        "showed"          
##  [9271] "mere"             "jest"             "horsemen"        
##  [9274] "riding"           "swiftly"          "indeed"          
##  [9277] "sighted"          "still"            "far"             
##  [9280] "behind"           "gaining"          "orcs"            
##  [9283] "gaining"          "like"             "tide"            
##  [9286] "flats"            "folk"             "straying"        
##  [9289] "quicksand"        "isengarders"      "began"           
##  [9292] "run"              "redoubled"        "pace"            
##  [9295] "astonished"       "pippin"           "terrific"        
##  [9298] "spurt"            "seemed"           "end"             
##  [9301] "race"             "saw"              "sun"             
##  [9304] "sinking"          "falling"          "behind"          
##  [9307] "misty"            "mountains"        "shadows"         
##  [9310] "reached"          "land"             "soldiers"        
##  [9313] "mordor"           "lifted"           "heads"           
##  [9316] "also"             "began"            "put"             
##  [9319] "speed"            "forest"           "dark"            
##  [9322] "close"            "already"          "passed"          
##  [9325] "outlying"         "trees"            "land"            
##  [9328] "beginning"        "slope"            "upwards"         
##  [9331] "ever"             "steeply"          "orcs"            
##  [9334] "halt"             "uglúk"            "grishnákh"       
##  [9337] "shouted"          "spurring"         "last"            
##  [9340] "effort"           "make"             "yet"             
##  [9343] "escape"           "thought"          "pippin"          
##  [9346] "managed"          "twist"            "neck"            
##  [9349] "glance"           "back"             "one"             
##  [9352] "eye"              "shoulder"         "saw"             
##  [9355] "riders"           "away"             "eastward"        
##  [9358] "already"          "level"            "orcs"            
##  [9361] "galloping"        "plain"            "sunset"          
##  [9364] "gilded"           "spears"           "helmets"         
##  [9367] "glinted"          "pale"             "flowing"         
##  [9370] "hair"             "hemming"          "orcs"            
##  [9373] "preventing"       "scattering"       "driving"         
##  [9376] "along"            "line"             "river"           
##  [9379] "wondered"         "much"             "kind"            
##  [9382] "folk"             "wished"           "now"             
##  [9385] "learned"          "rivendell"        "looked"          
##  [9388] "maps"             "things"           "days"            
##  [9391] "plans"            "journey"          "seemed"          
##  [9394] "competent"        "hands"            "never"           
##  [9397] "reckoned"         "cut"              "gandalf"         
##  [9400] "strider"          "even"             "frodo"           
##  [9403] "remember"         "rohan"            "gandalfs"        
##  [9406] "horse"            "shadowfax"        "come"            
##  [9409] "land"             "sounded"          "hopeful"         
##  [9412] "far"              "went"             "know"            
##  [9415] "orcs"             "thought"          "dont"            
##  [9418] "suppose"          "theyve"           "ever"            
##  [9421] "heard"            "hobbits"          "suppose"         
##  [9424] "glad"             "beastly"          "orcs"            
##  [9427] "look"             "like"             "destroyed"       
##  [9430] "rather"           "saved"            "chances"         
##  [9433] "merry"            "killed"           "together"        
##  [9436] "captors"          "ever"             "men"             
##  [9439] "rohan"            "aware"            "riders"          
##  [9442] "appeared"         "bowmen"           "skilled"         
##  [9445] "shooting"         "running"          "horse"           
##  [9448] "riding"           "swiftly"          "range"           
##  [9451] "shot"             "arrows"           "orcs"            
##  [9454] "straggled"        "behind"           "several"         
##  [9457] "fell"             "riders"           "wheeled"         
##  [9460] "away"             "range"            "answering"       
##  [9463] "bows"             "enemies"          "shot"            
##  [9466] "wildly"           "daring"           "halt"            
##  [9469] "happened"         "many"             "times"           
##  [9472] "one"              "occasion"         "arrows"          
##  [9475] "fell"             "among"            "isengarders"     
##  [9478] "one"              "just"             "front"           
##  [9481] "pippin"           "stumbled"         "get"             
##  [9484] "night"            "came"             "without"         
##  [9487] "riders"           "closing"          "battle"          
##  [9490] "many"             "orcs"             "fallen"          
##  [9493] "fully"            "two"              "hundred"         
##  [9496] "remained"         "early"            "darkness"        
##  [9499] "orcs"             "came"             "hillock"         
##  [9502] "eaves"            "forest"           "near"            
##  [9505] "probably"         "three"            "furlongs"        
##  [9508] "away"             "go"               "horsemen"        
##  [9511] "encircled"        "small"            "band"            
##  [9514] "disobeyed"        "uglúks"           "command"         
##  [9517] "ran"              "towards"          "forest"          
##  [9520] "three"            "returned"         "well"            
##  [9523] "sneered"          "grishnákh"        "fine"            
##  [9526] "leadership"       "hope"             "great"           
##  [9529] "uglúk"            "lead"             "us"              
##  [9532] "put"              "halflings"        "ordered"         
##  [9535] "uglúk"            "taking"           "notice"          
##  [9538] "grishnákh"        "lugdush"          "get"             
##  [9541] "two"              "others"           "stand"           
##  [9544] "guard"            "theyre"           "killed"          
##  [9547] "unless"           "filthy"           "whiteskins"      
##  [9550] "break"            "understand"       "long"            
##  [9553] "im"               "alive"            "want"            
##  [9556] "em"               "theyre"           "cry"             
##  [9559] "theyre"           "rescued"          "bind"            
##  [9562] "legs"             "last"             "part"            
##  [9565] "order"            "carried"          "mercilessly"     
##  [9568] "pippin"           "found"            "first"           
##  [9571] "time"             "close"            "merry"           
##  [9574] "orcs"             "making"           "great"           
##  [9577] "deal"             "noise"            "shouting"        
##  [9580] "clashing"         "weapons"          "hobbits"         
##  [9583] "managed"          "whisper"          "together"        
##  [9586] "dont"             "think"            "much"            
##  [9589] "said"             "merry"            "feel"            
##  [9592] "nearly"           "done"             "dont"            
##  [9595] "think"            "crawl"            "away"            
##  [9598] "far"              "even"             "free"            
##  [9601] "lembas"           "whispered"        "pippin"          
##  [9604] "lembas"           "ive"              "got"             
##  [9607] "dont"             "think"            "theyve"          
##  [9610] "taken"            "anything"         "swords"          
##  [9613] "yes"              "packet"           "pocket"          
##  [9616] "answered"         "merry"            "must"            
##  [9619] "battered"         "crumbs"           "anyway"          
##  [9622] "cant"             "put"              "mouth"           
##  [9625] "pocket"           "wont"             "ive"             
##  [9628] "just"             "savage"           "kick"            
##  [9631] "warned"           "pippin"           "noise"           
##  [9634] "died"             "guards"           "watchful"        
##  [9637] "night"            "cold"             "still"           
##  [9640] "round"            "knoll"            "orcs"            
##  [9643] "gathered"         "little"           "watch"           
##  [9646] "fires"            "sprang"           "golden"          
##  [9649] "red"              "darkness"         "complete"        
##  [9652] "ring"             "within"           "long"            
##  [9655] "bowshot"          "riders"           "show"            
##  [9658] "light"            "orcs"             "wasted"          
##  [9661] "many"             "arrows"           "shooting"        
##  [9664] "fires"            "uglúk"            "stopped"         
##  [9667] "riders"           "made"             "sound"           
##  [9670] "later"            "night"            "moon"            
##  [9673] "came"             "mist"             "occasionally"    
##  [9676] "seen"             "shadowy"          "shapes"          
##  [9679] "glinted"          "now"              "white"           
##  [9682] "light"            "moved"            "ceaseless"       
##  [9685] "patrol"           "theyll"           "wait"            
##  [9688] "sun"              "curse"            "growled"         
##  [9691] "one"              "guards"           "dont"            
##  [9694] "get"              "together"         "charge"          
##  [9697] "whats"            "old"              "uglúk"           
##  [9700] "think"            "hes"              "like"            
##  [9703] "know"             "daresay"          "snarled"         
##  [9706] "uglúk"            "stepping"         "behind"          
##  [9709] "meaning"          "dont"             "think"           
##  [9712] "eh"               "curse"            "youre"           
##  [9715] "bad"              "rabble"           "maggots"         
##  [9718] "apes"             "lugbúrz"          "good"            
##  [9721] "trying"           "charge"           "theyd"           
##  [9724] "just"             "squeal"           "bolt"            
##  [9727] "enough"           "filthy"           "horse"           
##  [9730] "boys"             "mop"              "lot"             
##  [9733] "flat"             "theres"           "one"             
##  [9736] "thing"            "maggots"          "can"             
##  [9739] "can"              "see"              "like"            
##  [9742] "gimlets"          "dark"             "whiteskins"      
##  [9745] "better"           "night"            "eyes"            
##  [9748] "men"              "ive"              "heard"           
##  [9751] "dont"             "forget"           "horses"          
##  [9754] "can"              "see"              "night"           
##  [9757] "breeze"           "said"             "still"           
##  [9760] "theres"           "one"              "thing"           
##  [9763] "fine"             "fellows"          "dont"            
##  [9766] "know"             "mauhúr"           "lads"            
##  [9769] "forest"           "turn"             "time"            
##  [9772] "now"              "uglúks"           "words"           
##  [9775] "enough"           "apparently"       "satisfy"         
##  [9778] "isengarders"      "orcs"             "dispirited"      
##  [9781] "rebellious"       "posted"           "watchers"        
##  [9784] "lay"              "ground"           "resting"         
##  [9787] "pleasant"         "darkness"         "indeed"          
##  [9790] "become"           "dark"             "moon"            
##  [9793] "passed"           "westward"         "thick"           
##  [9796] "cloud"            "pippin"           "see"             
##  [9799] "anything"         "feet"             "away"            
##  [9802] "fires"            "brought"          "light"           
##  [9805] "hillock"          "riders"           "however"         
##  [9808] "content"          "merely"           "wait"            
##  [9811] "dawn"             "let"              "enemies"         
##  [9814] "rest"             "sudden"           "outcry"          
##  [9817] "east"             "side"             "knoll"           
##  [9820] "showed"           "something"        "wrong"           
##  [9823] "seemed"           "men"              "ridden"          
##  [9826] "close"            "slipped"          "horses"          
##  [9829] "crawled"          "edge"             "camp"            
##  [9832] "killed"           "several"          "orcs"            
##  [9835] "faded"            "away"             "uglúk"           
##  [9838] "dashed"           "stop"             "stampede"        
##  [9841] "pippin"           "merry"            "sat"             
##  [9844] "guards"           "isengarders"      "gone"            
##  [9847] "uglúk"            "hobbits"          "thought"         
##  [9850] "escape"           "soon"             "dashed"          
##  [9853] "long"             "hairy"            "arm"             
##  [9856] "took"             "neck"             "drew"            
##  [9859] "close"            "together"         "dimly"           
##  [9862] "aware"            "grishnákhs"       "great"           
##  [9865] "head"             "hideous"          "face"            
##  [9868] "foul"             "breath"           "cheeks"          
##  [9871] "began"            "paw"              "feel"            
##  [9874] "pippin"           "shuddered"        "hard"            
##  [9877] "cold"             "fingers"          "groped"          
##  [9880] "back"             "well"             "little"          
##  [9883] "ones"             "said"             "grishnákh"       
##  [9886] "soft"             "whisper"          "enjoying"        
##  [9889] "nice"             "rest"             "little"          
##  [9892] "awkwardly"        "placed"           "perhaps"         
##  [9895] "swords"           "whips"            "one"             
##  [9898] "side"             "nasty"            "spears"          
##  [9901] "little"           "people"           "meddle"          
##  [9904] "affairs"          "big"              "fingers"         
##  [9907] "continued"        "grope"            "light"           
##  [9910] "like"             "pale"             "hot"             
##  [9913] "fire"             "behind"           "eyes"            
##  [9916] "thought"          "came"             "suddenly"        
##  [9919] "pippins"          "mind"             "caught"          
##  [9922] "direct"           "urgent"           "thought"         
##  [9925] "enemy"            "grishnákh"        "knows"           
##  [9928] "ring"             "hes"              "looking"         
##  [9931] "uglúk"            "busy"             "probably"        
##  [9934] "wants"            "cold"             "fear"            
##  [9937] "pippins"          "heart"            "yet"             
##  [9940] "time"             "wondering"        "use"             
##  [9943] "make"             "grishnákhs"       "desire"          
##  [9946] "dont"             "think"            "find"            
##  [9949] "way"              "whispered"        "isnt"            
##  [9952] "easy"             "find"             "find"            
##  [9955] "said"             "grishnákh"        "fingers"         
##  [9958] "stopped"          "crawling"         "gripped"         
##  [9961] "pippins"          "shoulder"         "find"            
##  [9964] "talking"          "little"           "one"             
##  [9967] "moment"           "pippin"           "silent"          
##  [9970] "suddenly"         "darkness"         "made"            
##  [9973] "noise"            "throat"           "gollum"          
##  [9976] "gollum"           "nothing"          "precious"        
##  [9979] "added"            "hobbits"          "felt"            
##  [9982] "grishnákhs"       "fingers"          "twitch"          
##  [9985] "ho"               "hissed"           "goblin"          
##  [9988] "softly"           "thats"            "means"           
##  [9991] "ho"               "ve"               "ry"              
##  [9994] "dangerous"        "little"           "ones"            
##  [9997] "perhaps"          "said"             "merry"           
## [10000] "now"              "alert"            "aware"           
## [10003] "pippins"          "guess"            "perhaps"         
## [10006] "us"               "still"            "know"            
## [10009] "business"         "best"             "want"            
## [10012] "give"             "want"             "want"            
## [10015] "said"             "grishnákh"        "puzzled"         
## [10018] "arms"             "trembling"        "give"            
## [10021] "mean"             "mean"             "said"            
## [10024] "pippin"           "choosing"         "words"           
## [10027] "carefully"        "good"             "groping"         
## [10030] "dark"             "save"             "time"            
## [10033] "trouble"          "must"             "untie"           
## [10036] "legs"             "first"            "well"            
## [10039] "nothing"          "say"              "nothing"         
## [10042] "dear"             "tender"           "little"          
## [10045] "fools"            "hissed"           "grishnákh"       
## [10048] "everything"       "everything"       "know"            
## [10051] "got"              "due"              "time"            
## [10054] "everything"       "youll"            "wish"            
## [10057] "tell"             "satisfy"          "questioner"      
## [10060] "indeed"           "quite"            "soon"            
## [10063] "shant"            "hurry"            "enquiry"         
## [10066] "oh"               "dear"             "think"           
## [10069] "youve"            "kept"             "alive"           
## [10072] "dear"             "little"           "fellows"         
## [10075] "please"           "believe"          "say"             
## [10078] "kindness"         "thats"            "even"            
## [10081] "one"              "uglúks"           "faults"          
## [10084] "find"             "quite"            "easy"            
## [10087] "believe"          "said"             "merry"           
## [10090] "havent"           "got"              "prey"            
## [10093] "home"             "yet"              "doesnt"          
## [10096] "seem"             "going"            "way"             
## [10099] "whatever"         "happens"          "come"            
## [10102] "isengard"         "wont"             "great"           
## [10105] "grishnákh"        "benefits"         "saruman"         
## [10108] "take"             "can"              "find"            
## [10111] "want"             "anything"         "nows"            
## [10114] "time"             "deal"             "grishnákh"       
## [10117] "began"            "lose"             "temper"          
## [10120] "name"             "saruman"          "seemed"          
## [10123] "specially"        "enrage"           "time"            
## [10126] "passing"          "disturbance"      "dying"           
## [10129] "uglúk"            "isengarders"      "might"           
## [10132] "return"           "minute"           "got"             
## [10135] "either"           "snarled"          "gollum"          
## [10138] "gollum"           "said"             "pippin"          
## [10141] "untie"            "legs"             "said"            
## [10144] "merry"            "felt"             "orcs"            
## [10147] "arms"             "trembling"        "violently"       
## [10150] "curse"            "filthy"           "little"          
## [10153] "vermin"           "hissed"           "untie"           
## [10156] "legs"             "ill"              "untie"           
## [10159] "every"            "string"           "bodies"          
## [10162] "think"            "cant"             "search"          
## [10165] "bones"            "search"           "ill"             
## [10168] "cut"              "quivering"        "shreds"          
## [10171] "dont"             "need"             "help"            
## [10174] "legs"             "get"              "away"            
## [10177] "suddenly"         "seized"           "strength"        
## [10180] "long"             "arms"             "shoulders"       
## [10183] "terrifying"       "tucked"           "one"             
## [10186] "armpit"           "crushed"          "fiercely"        
## [10189] "sides"            "great"            "stifling"        
## [10192] "hand"             "clapped"          "mouths"          
## [10195] "sprang"           "forward"          "stooping"        
## [10198] "low"              "quickly"          "silently"        
## [10201] "went"             "came"             "edge"            
## [10204] "knoll"            "choosing"         "gap"             
## [10207] "watchers"         "passed"           "like"            
## [10210] "evil"             "shadow"           "night"           
## [10213] "slope"            "away"             "westward"        
## [10216] "towards"          "river"            "flowed"          
## [10219] "forest"           "direction"        "wide"            
## [10222] "open"             "space"            "one"             
## [10225] "fire"             "going"            "dozen"           
## [10228] "yards"            "halted"           "peering"         
## [10231] "listening"        "nothing"          "seen"            
## [10234] "heard"            "crept"            "slowly"          
## [10237] "bent"             "almost"           "double"          
## [10240] "squatted"         "listened"         "stood"           
## [10243] "risk"             "sudden"           "dash"            
## [10246] "moment"           "dark"             "form"            
## [10249] "rider"            "loomed"           "right"           
## [10252] "front"            "horse"            "snorted"         
## [10255] "reared"           "man"              "called"          
## [10258] "grishnákh"        "flung"            "ground"          
## [10261] "flat"             "dragging"         "hobbits"         
## [10264] "drew"             "sword"            "doubt"           
## [10267] "meant"            "kill"             "captives"        
## [10270] "rather"           "allow"            "escape"          
## [10273] "rescued"          "undoing"          "sword"           
## [10276] "rang"             "faintly"          "glinted"         
## [10279] "little"           "light"            "fire"            
## [10282] "away"             "left"             "arrow"           
## [10285] "came"             "whistling"        "gloom"           
## [10288] "aimed"            "skill"            "guided"          
## [10291] "fate"             "pierced"          "right"           
## [10294] "hand"             "dropped"          "sword"           
## [10297] "shrieked"         "quick"            "beat"            
## [10300] "hoofs"            "even"             "grishnákh"       
## [10303] "leaped"           "ran"              "ridden"          
## [10306] "spear"            "passed"           "gave"            
## [10309] "hideous"          "shivering"        "cry"             
## [10312] "lay"              "still"            "hobbits"         
## [10315] "remained"         "flat"             "ground"          
## [10318] "grishnákh"        "left"             "another"         
## [10321] "horseman"         "came"             "riding"          
## [10324] "swiftly"          "comrades"         "aid"             
## [10327] "whether"          "special"          "keenness"        
## [10330] "sight"            "sense"            "horse"           
## [10333] "lifted"           "sprang"           "lightly"         
## [10336] "rider"            "see"              "lying"           
## [10339] "covered"          "elven"            "cloaks"          
## [10342] "crushed"          "moment"           "afraid"          
## [10345] "move"             "last"             "merry"           
## [10348] "stirred"          "whispered"        "softly"          
## [10351] "far"              "good"             "avoid"           
## [10354] "spitted"          "answer"           "came"            
## [10357] "almost"           "immediately"      "cries"           
## [10360] "grishnákh"        "roused"           "orcs"            
## [10363] "yells"            "screeches"        "came"            
## [10366] "knoll"            "hobbits"          "guessed"         
## [10369] "disappearance"    "discovered"       "uglúk"           
## [10372] "probably"         "knocking"         "heads"           
## [10375] "suddenly"         "answering"        "cries"           
## [10378] "orc"              "voices"           "came"            
## [10381] "right"            "outside"          "circle"          
## [10384] "watch"            "fires"            "direction"       
## [10387] "forest"           "mountains"        "mauhúr"          
## [10390] "apparently"       "arrived"          "attacking"       
## [10393] "besiegers"        "sound"            "galloping"       
## [10396] "horses"           "riders"           "drawing"         
## [10399] "ring"             "close"            "round"           
## [10402] "knoll"            "risking"          "orc"             
## [10405] "arrows"           "prevent"          "sortie"          
## [10408] "company"          "rode"             "deal"            
## [10411] "newcomers"        "suddenly"         "merry"           
## [10414] "pippin"           "realized"         "without"         
## [10417] "moving"           "now"              "outside"         
## [10420] "circle"           "nothing"          "escape"          
## [10423] "now"              "said"             "merry"           
## [10426] "legs"             "hands"            "free"            
## [10429] "might"            "get"              "away"            
## [10432] "cant"             "touch"            "knots"           
## [10435] "cant"             "bite"             "need"            
## [10438] "try"              "said"             "pippin"          
## [10441] "going"            "tell"             "ive"             
## [10444] "managed"          "free"             "hands"           
## [10447] "loops"            "left"             "show"            
## [10450] "youd"             "better"           "bit"             
## [10453] "lembas"           "first"            "slipped"         
## [10456] "cords"            "wrists"           "fished"          
## [10459] "packet"           "cakes"            "broken"          
## [10462] "good"             "still"            "leaf"            
## [10465] "wrappings"        "hobbits"          "ate"             
## [10468] "two"              "three"            "pieces"          
## [10471] "taste"            "brought"          "back"            
## [10474] "memory"           "fair"             "faces"           
## [10477] "laughter"         "wholesome"        "food"            
## [10480] "quiet"            "days"             "now"             
## [10483] "far"              "away"             "ate"             
## [10486] "thoughtfully"     "sitting"          "dark"            
## [10489] "heedless"         "cries"            "sounds"          
## [10492] "battle"           "nearby"           "pippin"          
## [10495] "first"            "come"             "back"            
## [10498] "present"          "must"             "said"            
## [10501] "half"             "moment"           "grishnákhs"      
## [10504] "sword"            "lying"            "close"           
## [10507] "hand"             "heavy"            "clumsy"          
## [10510] "use"              "crawled"          "forward"         
## [10513] "finding"          "body"             "goblin"          
## [10516] "drew"             "sheath"           "long"            
## [10519] "sharp"            "knife"            "quickly"         
## [10522] "cut"              "bonds"            "now"             
## [10525] "said"             "weve"             "warmed"          
## [10528] "bit"              "perhaps"          "shall"           
## [10531] "able"             "stand"            "walk"            
## [10534] "case"             "better"           "start"           
## [10537] "crawling"         "crawled"          "turf"            
## [10540] "deep"             "yielding"         "helped"          
## [10543] "seemed"           "long"             "slow"            
## [10546] "business"         "gave"             "watch"           
## [10549] "fire"             "wide"             "berth"           
## [10552] "wormed"           "way"              "forward"         
## [10555] "bit"              "bit"              "came"            
## [10558] "edge"             "river"            "gurgling"        
## [10561] "away"             "black"            "shadows"         
## [10564] "deep"             "banks"            "looked"          
## [10567] "back"             "sounds"           "died"            
## [10570] "away"             "evidently"        "mauhúr"          
## [10573] "lads"             "killed"           "driven"          
## [10576] "riders"           "returned"         "silent"          
## [10579] "ominous"          "vigil"            "last"            
## [10582] "much"             "longer"           "already"         
## [10585] "night"            "old"              "east"            
## [10588] "remained"         "unclouded"        "sky"             
## [10591] "beginning"        "grow"             "pale"            
## [10594] "must"             "get"              "cover"           
## [10597] "said"             "pippin"           "shall"           
## [10600] "seen"             "comfort"          "us"              
## [10603] "riders"           "discover"         "orcs"            
## [10606] "dead"             "got"              "stamped"         
## [10609] "feet"             "cords"            "cut"             
## [10612] "like"             "wires"            "feet"            
## [10615] "getting"          "warm"             "stagger"         
## [10618] "now"              "merry"            "merry"           
## [10621] "got"              "yes"              "said"            
## [10624] "can"              "manage"           "lembas"          
## [10627] "put"              "heart"            "wholesome"       
## [10630] "sort"             "feeling"          "heat"            
## [10633] "orc"              "draught"          "wonder"          
## [10636] "made"             "better"           "know"            
## [10639] "expect"           "lets"             "get"             
## [10642] "drink"            "water"            "wash"            
## [10645] "away"             "thought"          "banks"           
## [10648] "steep"            "said"             "pippin"          
## [10651] "forward"          "now"              "turned"          
## [10654] "walked"           "side"             "side"            
## [10657] "slowly"           "along"            "line"            
## [10660] "river"            "behind"           "light"           
## [10663] "grew"             "east"             "walked"          
## [10666] "compared"         "notes"            "talking"         
## [10669] "lightly"          "hobbit"           "fashion"         
## [10672] "things"           "happened"         "since"           
## [10675] "capture"          "listener"         "guessed"         
## [10678] "words"            "suffered"         "cruelly"         
## [10681] "dire"             "peril"            "going"           
## [10684] "without"          "hope"             "towards"         
## [10687] "torment"          "death"            "even"            
## [10690] "now"              "knew"             "well"            
## [10693] "little"           "chance"           "ever"            
## [10696] "finding"          "friend"           "safety"          
## [10699] "seem"             "well"             "master"          
## [10702] "took"             "said"             "merry"           
## [10705] "get"              "almost"           "chapter"         
## [10708] "old"              "bilbos"           "book"            
## [10711] "ever"             "get"              "chance"          
## [10714] "report"           "good"             "work"            
## [10717] "especially"       "guessing"         "hairy"           
## [10720] "villains"         "little"           "game"            
## [10723] "playing"          "wonder"           "anyone"          
## [10726] "ever"             "pick"             "trail"           
## [10729] "find"             "brooch"           "hate"            
## [10732] "lose"             "mine"             "afraid"          
## [10735] "gone"             "good"             "shall"           
## [10738] "brush"            "toes"             "get"             
## [10741] "level"            "indeed"           "cousin"          
## [10744] "brandybuck"       "going"            "front"           
## [10747] "now"              "comes"            "dont"            
## [10750] "suppose"          "much"             "notion"          
## [10753] "spent"            "time"             "rivendell"       
## [10756] "rather"           "better"           "walking"         
## [10759] "west"             "along"            "entwash"         
## [10762] "butt"             "end"              "misty"           
## [10765] "mountains"        "front"            "fangorn"         
## [10768] "forest"           "even"             "spoke"           
## [10771] "dark"             "edge"             "forest"          
## [10774] "loomed"           "straight"         "night"           
## [10777] "seemed"           "taken"            "refuge"          
## [10780] "great"            "trees"            "creeping"        
## [10783] "away"             "coming"           "dawn"            
## [10786] "lead"             "master"           "brandybuck"      
## [10789] "said"             "pippin"           "lead"            
## [10792] "back"             "warned"           "fangorn"         
## [10795] "one"              "knowing"          "forgotten"       
## [10798] "answered"         "merry"            "forest"          
## [10801] "seems"            "better"           "turning"         
## [10804] "back"             "middle"           "battle"          
## [10807] "led"              "way"              "huge"            
## [10810] "branches"         "trees"            "old"             
## [10813] "beyond"           "guessing"         "seemed"          
## [10816] "great"            "trailing"         "beards"          
## [10819] "lichen"           "hung"             "blowing"         
## [10822] "swaying"          "breeze"           "shadows"         
## [10825] "hobbits"          "peeped"           "gazing"          
## [10828] "back"             "slope"            "little"          
## [10831] "furtive"          "figures"          "dim"             
## [10834] "light"            "looked"           "like"            
## [10837] "elf"              "children"         "deeps"           
## [10840] "time"             "peering"          "wild"            
## [10843] "wood"             "wonder"           "first"           
## [10846] "dawn"             "far"              "great"           
## [10849] "river"            "brown"            "lands"           
## [10852] "leagues"          "upon"             "grey"            
## [10855] "leagues"          "away"             "dawn"            
## [10858] "came"             "red"              "flame"           
## [10861] "loud"             "rang"             "hunting"         
## [10864] "horns"            "greet"            "riders"          
## [10867] "rohan"            "sprang"           "suddenly"        
## [10870] "life"             "horn"             "answered"        
## [10873] "horn"             "merry"            "pippin"          
## [10876] "heard"            "clear"            "cold"            
## [10879] "air"              "neighing"         "war"             
## [10882] "horses"           "sudden"           "singing"         
## [10885] "many"             "men"              "suns"            
## [10888] "limb"             "lifted"           "arc"             
## [10891] "fire"             "margin"           "world"           
## [10894] "great"            "cry"              "riders"          
## [10897] "charged"          "east"             "red"             
## [10900] "light"            "gleamed"          "mail"            
## [10903] "spear"            "orcs"             "yelled"          
## [10906] "shot"             "arrows"           "remained"        
## [10909] "hobbits"          "saw"              "several"         
## [10912] "horsemen"         "fall"             "line"            
## [10915] "held"             "hill"             "wheeled"         
## [10918] "round"            "charged"          "raiders"         
## [10921] "left"             "alive"            "broke"           
## [10924] "fled"             "way"              "pursued"         
## [10927] "one"              "one"              "death"           
## [10930] "one"              "band"             "holding"         
## [10933] "together"         "black"            "wedge"           
## [10936] "drove"            "forward"          "resolutely"      
## [10939] "direction"        "forest"           "straight"        
## [10942] "slope"            "charged"          "towards"         
## [10945] "watchers"         "now"              "drawing"         
## [10948] "near"             "seemed"           "certain"         
## [10951] "escape"           "already"          "hewn"            
## [10954] "three"            "riders"           "barred"          
## [10957] "way"              "watched"          "long"            
## [10960] "said"             "merry"            "theres"          
## [10963] "uglúk"            "dont"             "want"            
## [10966] "meet"             "hobbits"          "turned"          
## [10969] "fled"             "deep"             "shadows"         
## [10972] "wood"             "sec"              "last"            
## [10975] "stand"            "uglúk"            "overtaken"       
## [10978] "brought"          "bay"              "edge"            
## [10981] "fangorn"          "slain"            "last"            
## [10984] "éomer"            "third"            "marshal"         
## [10987] "mark"             "dismounted"       "fought"          
## [10990] "sword"            "sword"            "wide"            
## [10993] "fields"           "keen"             "eyed"            
## [10996] "riders"           "hunted"           "orcs"            
## [10999] "escaped"          "still"            "strength"        
## [11002] "fly"              "laid"             "fallen"          
## [11005] "comrades"         "mound"            "sung"            
## [11008] "praises"          "riders"           "made"            
## [11011] "great"            "fire"             "scattered"       
## [11014] "ashes"            "enemies"          "ended"           
## [11017] "raid"             "news"             "came"            
## [11020] "ever"             "back"             "either"          
## [11023] "mordor"           "isengard"         "smoke"           
## [11026] "burning"          "rose"             "high"            
## [11029] "heaven"           "seen"             "many"            
## [11032] "watchful"         "eyes"             "chapter"         
## [11035] "treebeard"        "meanwhile"        "hobbits"         
## [11038] "went"             "much"             "speed"           
## [11041] "dark"             "tangled"          "forest"          
## [11044] "allowed"          "following"        "line"            
## [11047] "running"          "stream"           "westward"        
## [11050] "towards"          "slopes"           "mountains"       
## [11053] "deeper"           "deeper"           "fangorn"         
## [11056] "slowly"           "fear"             "orcs"            
## [11059] "died"             "away"             "pace"            
## [11062] "slackened"        "queer"            "stifling"        
## [11065] "feeling"          "came"             "air"             
## [11068] "thin"             "scanty"           "breathing"       
## [11071] "last"             "merry"            "halted"          
## [11074] "cant"             "go"               "like"            
## [11077] "panted"           "want"             "air"             
## [11080] "lets"             "drink"            "rate"            
## [11083] "said"             "pippin"           "im"              
## [11086] "parched"          "clambered"        "great"           
## [11089] "tree"             "root"             "wound"           
## [11092] "stream"           "stooping"         "drew"            
## [11095] "water"            "cupped"           "hands"           
## [11098] "clear"            "cold"             "took"            
## [11101] "many"             "draughts"         "merry"           
## [11104] "followed"         "water"            "refreshed"       
## [11107] "seemed"           "cheer"            "hearts"          
## [11110] "sat"              "together"         "brink"           
## [11113] "stream"           "dabbling"         "sore"            
## [11116] "feet"             "legs"             "peering"         
## [11119] "round"            "trees"            "stood"           
## [11122] "silently"         "rank"             "upon"            
## [11125] "rank"             "faded"            "away"            
## [11128] "grey"             "twilight"         "every"           
## [11131] "direction"        "suppose"          "havent"          
## [11134] "lost"             "us"               "already"         
## [11137] "said"             "pippin"           "leaning"         
## [11140] "back"             "great"            "tree"            
## [11143] "trunk"            "can"              "least"           
## [11146] "follow"           "course"           "stream"          
## [11149] "entwash"          "whatever"         "call"            
## [11152] "get"              "way"              "came"            
## [11155] "legs"             "said"             "merry"           
## [11158] "breathe"          "properly"         "yes"             
## [11161] "dim"              "stuffy"           "said"            
## [11164] "pippin"           "reminds"          "somehow"         
## [11167] "old"              "room"             "great"           
## [11170] "place"            "tooks"            "away"            
## [11173] "back"             "smials"           "tuckborough"     
## [11176] "huge"             "place"            "furniture"       
## [11179] "never"            "moved"            "changed"         
## [11182] "generations"      "say"              "old"             
## [11185] "took"             "lived"            "year"            
## [11188] "year"             "room"             "got"             
## [11191] "older"            "shabbier"         "together"        
## [11194] "never"            "changed"          "since"           
## [11197] "died"             "century"          "ago"             
## [11200] "old"              "gerontius"        "great"           
## [11203] "great"            "grandfather"      "puts"            
## [11206] "back"             "bit"              "nothing"         
## [11209] "old"              "feeling"          "wood"            
## [11212] "look"             "weeping"          "trailing"        
## [11215] "beards"           "whiskers"         "lichen"          
## [11218] "trees"            "seem"             "half"            
## [11221] "covered"          "ragged"           "dry"             
## [11224] "leaves"           "never"            "fallen"          
## [11227] "untidy"           "cant"             "imagine"         
## [11230] "spring"           "look"             "like"            
## [11233] "ever"             "comes"            "still"           
## [11236] "less"             "spring"           "cleaning"        
## [11239] "sun"              "rate"             "must"            
## [11242] "peep"             "sometimes"        "said"            
## [11245] "merry"            "look"             "feel"            
## [11248] "like"             "bilbos"           "description"     
## [11251] "mirkwood"         "dark"             "black"           
## [11254] "home"             "dark"             "black"           
## [11257] "things"           "just"             "dim"             
## [11260] "frightfully"      "tree"             "ish"             
## [11263] "cant"             "imagine"          "animals"         
## [11266] "living"           "staying"          "long"            
## [11269] "hobbits"          "said"             "pippin"          
## [11272] "dont"             "like"             "thought"         
## [11275] "trying"           "get"              "either"          
## [11278] "nothing"          "eat"              "hundred"         
## [11281] "miles"            "guess"            "supplies"        
## [11284] "low"              "said"             "merry"           
## [11287] "ran"              "nothing"          "couple"          
## [11290] "spare"            "packets"          "lembas"          
## [11293] "left"             "everything"       "else"            
## [11296] "behind"           "looked"           "remained"        
## [11299] "elven"            "cakes"            "broken"          
## [11302] "fragments"        "five"             "meagre"          
## [11305] "days"             "wrap"             "blanket"         
## [11308] "said"             "merry"            "shall"           
## [11311] "cold"             "tonight"          "whichever"       
## [11314] "way"              "go"               "well"            
## [11317] "wed"              "better"           "decide"          
## [11320] "way"              "now"              "said"            
## [11323] "pippin"           "morning"          "must"            
## [11326] "getting"          "just"             "became"          
## [11329] "aware"            "yellow"           "light"           
## [11332] "appeared"         "way"              "wood"            
## [11335] "shafts"           "sunlight"         "seemed"          
## [11338] "suddenly"         "pierced"          "forest"          
## [11341] "roof"             "hullo"            "said"            
## [11344] "merry"            "sun"              "must"            
## [11347] "run"              "cloud"            "weve"            
## [11350] "trees"            "now"              "run"             
## [11353] "else"             "climbed"          "high"            
## [11356] "enough"           "look"             "opening"         
## [11359] "isnt"             "far"              "lets"            
## [11362] "go"               "investigate"      "found"           
## [11365] "thought"          "ground"           "rising"          
## [11368] "steeply"          "still"            "becoming"        
## [11371] "increasingly"     "stony"            "light"           
## [11374] "grew"             "broader"          "went"            
## [11377] "soon"             "saw"              "rock"            
## [11380] "wall"             "side"             "hill"            
## [11383] "abrupt"           "end"              "long"            
## [11386] "root"             "thrust"           "distant"         
## [11389] "mountains"        "trees"            "grew"            
## [11392] "sun"              "falling"          "full"            
## [11395] "stony"            "face"             "twigs"           
## [11398] "trees"            "foot"             "stretched"       
## [11401] "stiff"            "still"            "reaching"        
## [11404] "warmth"           "looked"           "shabby"          
## [11407] "grey"             "wood"             "now"             
## [11410] "gleamed"          "rich"             "browns"          
## [11413] "smooth"           "black"            "greys"           
## [11416] "bark"             "like"             "polished"        
## [11419] "leather"          "boles"            "trees"           
## [11422] "glowed"           "soft"             "green"           
## [11425] "like"             "young"            "grass"           
## [11428] "early"            "spring"           "fleeting"        
## [11431] "vision"           "face"             "stony"           
## [11434] "wall"             "something"        "like"            
## [11437] "stair"            "natural"          "perhaps"         
## [11440] "made"             "weathering"       "splitting"       
## [11443] "rock"             "rough"            "uneven"          
## [11446] "high"             "almost"           "level"           
## [11449] "tops"             "forest"           "trees"           
## [11452] "shelf"            "cliff"            "nothing"         
## [11455] "grew"             "grasses"          "weeds"           
## [11458] "edge"             "one"              "old"             
## [11461] "stump"            "tree"             "two"             
## [11464] "bent"             "branches"         "left"            
## [11467] "looked"           "almost"           "like"            
## [11470] "figure"           "gnarled"          "old"             
## [11473] "man"              "standing"         "blinking"        
## [11476] "morning"          "light"            "go"              
## [11479] "said"             "merry"            "joyfully"        
## [11482] "now"              "breath"           "air"             
## [11485] "sight"            "land"             "climbed"         
## [11488] "scrambled"        "rock"             "stair"           
## [11491] "made"             "bigger"           "feet"            
## [11494] "longer"           "legs"             "eager"           
## [11497] "surprised"        "remarkable"       "way"             
## [11500] "cuts"             "sores"            "captivity"       
## [11503] "healed"           "vigour"           "returned"        
## [11506] "came"             "length"           "edge"            
## [11509] "shelf"            "almost"           "feet"            
## [11512] "old"              "stump"            "sprang"          
## [11515] "turned"           "round"            "backs"           
## [11518] "hill"             "breathing"        "deep"            
## [11521] "looking"          "eastward"         "saw"             
## [11524] "come"             "three"            "four"            
## [11527] "miles"            "forest"           "heads"           
## [11530] "trees"            "marched"          "slopes"          
## [11533] "towards"          "plain"            "near"            
## [11536] "fringe"           "forest"           "tall"            
## [11539] "spires"           "curling"          "black"           
## [11542] "smoke"            "went"             "wavering"        
## [11545] "floating"         "towards"          "winds"           
## [11548] "changing"         "said"             "merry"           
## [11551] "turned"           "east"             "feels"           
## [11554] "cool"             "yes"              "said"            
## [11557] "pippin"           "im"               "afraid"          
## [11560] "passing"          "gleam"            "go"              
## [11563] "grey"             "pity"             "shaggy"          
## [11566] "old"              "forest"           "looked"          
## [11569] "different"        "sunlight"         "almost"          
## [11572] "felt"             "liked"            "place"           
## [11575] "almost"           "felt"             "liked"           
## [11578] "forest"           "thats"            "good"            
## [11581] "thats"            "uncommonly"       "kind"            
## [11584] "said"             "strange"          "voice"           
## [11587] "turn"             "round"            "let"             
## [11590] "look"             "faces"            "almost"          
## [11593] "feel"             "dislike"          "let"             
## [11596] "us"               "hasty"            "turn"            
## [11599] "round"            "large"            "knob"            
## [11602] "knuckled"         "hand"             "laid"            
## [11605] "shoulders"        "twisted"          "round"           
## [11608] "gently"           "irresistibly"     "two"             
## [11611] "great"            "arms"             "lifted"          
## [11614] "found"            "looking"          "extraordinary"   
## [11617] "face"             "belonged"         "large"           
## [11620] "man"              "like"             "almost"          
## [11623] "troll"            "like"             "figure"          
## [11626] "least"            "fourteen"         "foot"            
## [11629] "high"             "sturdy"           "tall"            
## [11632] "head"             "hardly"           "neck"            
## [11635] "whether"          "clad"             "stuff"           
## [11638] "like"             "green"            "grey"            
## [11641] "bark"             "whether"          "hide"            
## [11644] "difficult"        "say"              "rate"            
## [11647] "arms"             "short"            "distance"        
## [11650] "trunk"            "wrinkled"         "covered"         
## [11653] "brown"            "smooth"           "skin"            
## [11656] "large"            "feet"             "seven"           
## [11659] "toes"             "lower"            "part"            
## [11662] "long"             "face"             "covered"         
## [11665] "sweeping"         "grey"             "beard"           
## [11668] "bushy"            "almost"           "twiggy"          
## [11671] "roots"            "thin"             "mossy"           
## [11674] "ends"             "moment"           "hobbits"         
## [11677] "noted"            "little"           "eyes"            
## [11680] "deep"             "eyes"             "now"             
## [11683] "surveying"        "slow"             "solemn"          
## [11686] "penetrating"      "brown"            "shot"            
## [11689] "green"            "light"            "often"           
## [11692] "afterwards"       "pippin"           "tried"           
## [11695] "describe"         "first"            "impression"      
## [11698] "one"              "felt"             "enormous"        
## [11701] "well"             "behind"           "filled"          
## [11704] "ages"             "memory"           "long"            
## [11707] "slow"             "steady"           "thinking"        
## [11710] "surface"          "sparkling"        "present"         
## [11713] "like"             "sun"              "shimmering"      
## [11716] "outer"            "leaves"           "vast"            
## [11719] "tree"             "ripples"          "deep"            
## [11722] "lake"             "dont"             "know"            
## [11725] "felt"             "something"        "grew"            
## [11728] "ground"           "asleep"           "might"           
## [11731] "say"              "just"             "feeling"         
## [11734] "something"        "roof"             "tip"             
## [11737] "leaf"             "tip"              "deep"            
## [11740] "earth"            "sky"              "suddenly"        
## [11743] "waked"            "considering"      "slow"            
## [11746] "care"             "given"            "inside"          
## [11749] "affairs"          "endless"          "years"           
## [11752] "hrum"             "hoom"             "murmured"        
## [11755] "voice"            "deep"             "voice"           
## [11758] "like"             "deep"             "woodwind"        
## [11761] "instrument"       "odd"              "indeed"          
## [11764] "hasty"            "motto"            "seen"            
## [11767] "heard"            "voices"           "liked"           
## [11770] "nice"             "little"           "voices"          
## [11773] "reminded"         "something"        "remember"        
## [11776] "seen"             "heard"            "just"            
## [11779] "trodden"          "taking"           "little"          
## [11782] "orcs"             "found"            "mistake"         
## [11785] "afterwards"       "odd"              "indeed"          
## [11788] "root"             "twig"             "odd"             
## [11791] "pippin"           "though"           "still"           
## [11794] "amazed"           "longer"           "felt"            
## [11797] "afraid"           "eyes"             "felt"            
## [11800] "curious"          "suspense"         "fear"            
## [11803] "please"           "said"             "queer"           
## [11806] "look"             "came"             "old"             
## [11809] "eyes"             "kind"             "wariness"        
## [11812] "deep"             "wells"            "covered"         
## [11815] "hrum"             "now"              "answered"        
## [11818] "voice"            "well"             "ent"             
## [11821] "thats"            "call"             "yes"             
## [11824] "ent"              "word"             "ent"             
## [11827] "might"            "say"              "manner"          
## [11830] "speaking"         "fangorn"          "name"            
## [11833] "according"        "treebeard"        "others"          
## [11836] "make"             "treebeard"        "ent"             
## [11839] "said"             "merry"            "whats"           
## [11842] "call"             "whats"            "real"            
## [11845] "name"             "hoo"              "now"             
## [11848] "replied"          "treebeard"        "hoo"             
## [11851] "now"              "telling"          "hasty"           
## [11854] "asking"           "country"          "wonder"          
## [11857] "place"            "seem"             "come"            
## [11860] "old"              "lists"            "learned"         
## [11863] "young"            "long"             "long"            
## [11866] "time"             "ago"              "may"             
## [11869] "made"             "new"              "lists"           
## [11872] "let"              "see"              "let"             
## [11875] "see"              "go"               "learn"           
## [11878] "now"              "lore"             "living"          
## [11881] "creatures"        "first"            "name"            
## [11884] "four"             "free"             "peoples"         
## [11887] "eldest"           "elf"              "children"        
## [11890] "dwarf"            "delver"           "dark"            
## [11893] "houses"           "ent"              "earthborn"       
## [11896] "old"              "mountains"        "man"             
## [11899] "mortal"           "master"           "horses"          
## [11902] "hm"               "hm"               "hm"              
## [11905] "beaver"           "builder"          "buck"            
## [11908] "leaper"           "bear"             "bee"             
## [11911] "hunter"           "boar"             "fighter"         
## [11914] "hound"            "hungry"           "hare"            
## [11917] "fearful"          ""                 "hm"              
## [11920] "hm"               "eagle"            "eyrie"           
## [11923] "ox"               "pasture"          "hart"            
## [11926] "horn"             "crowned"          "hawk"            
## [11929] "swiftest"         "swan"             "whitest"         
## [11932] "serpent"          "coldest"          ""                
## [11935] "hoom"             "hm"               "hoom"            
## [11938] "hm"               "go"               "room"            
## [11941] "tum"              "room"             "tum"             
## [11944] "roomty"           "toom"             "tum"             
## [11947] "long"             "list"             "anyway"          
## [11950] "seem"             "fit"              "anywhere"        
## [11953] "always"           "seem"             "got"             
## [11956] "left"             "old"              "lists"           
## [11959] "old"              "stories"          "said"            
## [11962] "merry"            "yet"              "weve"            
## [11965] "quite"            "long"             "time"            
## [11968] "hobbits"          "make"             "new"             
## [11971] "line"             "said"             "pippin"          
## [11974] "half"             "grown"            "hobbits"         
## [11977] "hole"             "dwellers"         "put"             
## [11980] "us"               "amongst"          "four"            
## [11983] "next"             "man"              "big"             
## [11986] "people"           "youve"            "got"             
## [11989] "hm"               "bad"              "bad"             
## [11992] "said"             "treebeard"        "live"            
## [11995] "holes"            "eh"               "sounds"          
## [11998] "right"            "proper"           "calls"           
## [12001] "hobbits"          "though"           "sound"           
## [12004] "elvish"           "elves"            "made"            
## [12007] "old"              "words"            "began"           
## [12010] "nobody"           "else"             "calls"           
## [12013] "us"               "hobbits"          "call"            
## [12016] "said"             "pippin"           "hoom"            
## [12019] "hmm"              "come"             "now"             
## [12022] "hasty"            "call"             "hobbits"         
## [12025] "go"               "telling"          "just"            
## [12028] "anybody"          "youll"            "letting"         
## [12031] "right"            "names"            "youre"           
## [12034] "careful"          "arent"            "careful"         
## [12037] "said"             "merry"            "matter"          
## [12040] "fact"             "im"               "brandybuck"      
## [12043] "meriadoc"         "brandybuck"       "though"          
## [12046] "people"           "call"             "just"            
## [12049] "merry"            "im"               "took"            
## [12052] "peregrin"         "took"             "im"              
## [12055] "generally"        "called"           "pippin"          
## [12058] "even"             "pip"              "hm"              
## [12061] "hasty"            "folk"             "see"             
## [12064] "said"             "treebeard"        "honoured"        
## [12067] "confidence"       "free"             "ents"            
## [12070] "ents"             "know"             "ents"            
## [12073] "things"           "look"             "like"            
## [12076] "ents"             "aint"             "might"           
## [12079] "say"              "ill"              "call"            
## [12082] "merry"            "pippin"           "please"          
## [12085] "nice"             "names"            "going"           
## [12088] "tell"             "name"             "yet"             
## [12091] "rate"             "queer"            "half"            
## [12094] "knowing"          "half"             "humorous"        
## [12097] "look"             "came"             "green"           
## [12100] "flicker"          "eyes"             "one"             
## [12103] "thing"            "take"             "long"            
## [12106] "name"             "growing"          "time"            
## [12109] "ive"              "lived"            "long"            
## [12112] "long"             "time"             "name"            
## [12115] "like"             "story"            "real"            
## [12118] "names"            "tell"             "story"           
## [12121] "things"           "belong"           "language"        
## [12124] "old"              "entish"           "might"           
## [12127] "say"              "lovely"           "language"        
## [12130] "takes"            "long"             "time"            
## [12133] "say"              "anything"         "say"             
## [12136] "anything"         "unless"           "worth"           
## [12139] "taking"           "long"             "time"            
## [12142] "say"              "listen"           "now"             
## [12145] "eyes"             "became"           "bright"          
## [12148] "present"          "seeming"          "grow"            
## [12151] "smaller"          "almost"           "sharp"           
## [12154] "going"            "can"              "see"             
## [12157] "hear"             "smell"            "feel"            
## [12160] "great"            "deal"             "lalla"           
## [12163] "lalla"            "rumba"            "kamanda"         
## [12166] "lind"             "burúmë"           "excuse"          
## [12169] "part"             "name"             "know"            
## [12172] "word"             "outside"          "languages"       
## [12175] "know"             "thing"            "stand"           
## [12178] "look"             "fine"             "mornings"        
## [12181] "think"            "sun"              "grass"           
## [12184] "beyond"           "wood"             "horses"          
## [12187] "clouds"           "unfolding"        "world"           
## [12190] "going"            "gandalf"          "burárum"         
## [12193] "made"             "deep"             "rumbling"        
## [12196] "noise"            "like"             "discord"         
## [12199] "great"            "organ"            "orcs"            
## [12202] "young"            "saruman"          "isengard"        
## [12205] "like"             "news"             "quick"           
## [12208] "now"              "quite"            "lot"             
## [12211] "going"            "said"             "merry"           
## [12214] "even"             "tried"            "quick"           
## [12217] "take"             "long"             "time"            
## [12220] "tell"             "told"             "us"              
## [12223] "hasty"            "tell"             "anything"        
## [12226] "soon"             "think"            "rude"            
## [12229] "asked"            "going"            "us"              
## [12232] "side"             "know"             "gandalf"         
## [12235] "yes"              "know"             "wizard"          
## [12238] "really"           "cares"            "trees"           
## [12241] "said"             "treebeard"        "know"            
## [12244] "yes"              "said"             "pippin"          
## [12247] "sadly"            "great"            "friend"          
## [12250] "guide"            "can"              "answer"          
## [12253] "questions"        "said"             "treebeard"       
## [12256] "going"            "anything"         "mean"            
## [12259] "something"        "without"          "leave"           
## [12262] "might"            "things"           "together"        
## [12265] "dont"             "know"             "sides"           
## [12268] "go"               "way"              "way"             
## [12271] "may"              "go"               "along"           
## [12274] "mine"             "speak"            "master"          
## [12277] "gandalf"          "story"            "come"            
## [12280] "end"              "yes"              "said"            
## [12283] "pippin"           "sadly"            "story"           
## [12286] "seems"            "going"            "afraid"          
## [12289] "gandalf"          "fallen"           "hoo"             
## [12292] "come"             "now"              "said"            
## [12295] "treebeard"        "hoom"             "hm"              
## [12298] "ah"               "well"             "paused"          
## [12301] "looking"          "long"             "hobbits"         
## [12304] "hoom"             "ah"               "well"            
## [12307] "know"             "say"              "come"            
## [12310] "now"              "like"             "hear"            
## [12313] "said"             "merry"            "tell"            
## [12316] "take"             "time"             "wouldnt"         
## [12319] "like"             "put"              "us"              
## [12322] "couldnt"          "sit"              "together"        
## [12325] "sun"              "lasts"            "must"            
## [12328] "getting"          "tired"            "holding"         
## [12331] "us"               "hm"               "tired"           
## [12334] "tired"            "easily"           "get"             
## [12337] "tired"            "sit"              "hm"              
## [12340] "bendable"         "sun"              "going"           
## [12343] "let"              "us"               "leave"           
## [12346] "say"              "call"             "hill"            
## [12349] "suggested"        "pippin"           "shelf"           
## [12352] "step"             "suggested"        "merry"           
## [12355] "treebeard"        "repeated"         "words"           
## [12358] "thoughtfully"     "hill"             "yes"             
## [12361] "hasty"            "word"             "thing"           
## [12364] "stood"            "ever"             "since"           
## [12367] "part"             "world"            "shaped"          
## [12370] "never"            "mind"             "let"             
## [12373] "us"               "leave"            "go"              
## [12376] "shall"            "go"               "asked"           
## [12379] "merry"            "home"             "one"             
## [12382] "homes"            "answered"         "treebeard"       
## [12385] "far"              "know"             "might"           
## [12388] "call"             "far"              "perhaps"         
## [12391] "matter"           "well"             "see"             
## [12394] "lost"             "belongings"       "said"            
## [12397] "merry"            "little"           "food"            
## [12400] "hm"               "need"             "trouble"         
## [12403] "said"             "treebeard"        "can"             
## [12406] "give"             "drink"            "keep"            
## [12409] "green"            "growing"          "long"            
## [12412] "long"             "decide"           "part"            
## [12415] "company"          "can"              "set"             
## [12418] "outside"          "country"          "point"           
## [12421] "choose"           "let"              "us"              
## [12424] "go"               "holding"          "hobbits"         
## [12427] "gently"           "firmly"           "one"             
## [12430] "crook"            "arm"              "treebeard"       
## [12433] "lifted"           "first"            "one"             
## [12436] "large"            "foot"             "moved"           
## [12439] "edge"             "shelf"            "rootlike"        
## [12442] "toes"             "grasped"          "rocks"           
## [12445] "carefully"        "solemnly"         "stalked"         
## [12448] "step"             "step"             "reached"         
## [12451] "floor"            "forest"           "set"             
## [12454] "long"             "deliberate"       "strides"         
## [12457] "trees"            "deeper"           "deeper"          
## [12460] "wood"             "never"            "far"             
## [12463] "stream"           "climbing"         "steadily"        
## [12466] "towards"          "slopes"           "mountains"       
## [12469] "many"             "trees"            "seemed"          
## [12472] "asleep"           "unaware"          "creature"        
## [12475] "merely"           "passed"           "quivered"        
## [12478] "raised"           "branches"         "head"            
## [12481] "approached"       "walked"           "talked"          
## [12484] "long"             "running"          "stream"          
## [12487] "musical"          "sounds"           "hobbits"         
## [12490] "silent"           "time"             "felt"            
## [12493] "oddly"            "enough"           "safe"            
## [12496] "comfortable"      "great"            "deal"            
## [12499] "think"            "wonder"           "last"            
## [12502] "pippin"           "ventured"         "speak"           
## [12505] "please"           "treebeard"        "said"            
## [12508] "ask"              "something"        "celeborn"        
## [12511] "warn"             "us"               "forest"          
## [12514] "told"             "us"               "risk"            
## [12517] "getting"          "entangled"        "hmm"             
## [12520] "now"              "rumbled"          "treebeard"       
## [12523] "might"            "said"             "much"            
## [12526] "going"            "way"              "risk"            
## [12529] "getting"          "entangled"        "woods"           
## [12532] "laurelindórenan"  "elves"            "used"            
## [12535] "call"             "now"              "make"            
## [12538] "name"             "shorter"          "lothlórien"      
## [12541] "call"             "perhaps"          "right"           
## [12544] "maybe"            "fading"           "growing"         
## [12547] "land"             "valley"           "singing"         
## [12550] "gold"             "upon"             "time"            
## [12553] "now"              "dreamflower"      "ah"              
## [12556] "well"             "queer"            "place"           
## [12559] "just"             "one"              "venture"         
## [12562] "surprised"        "ever"             "got"             
## [12565] "much"             "surprised"        "ever"            
## [12568] "got"              "happened"         "strangers"       
## [12571] "many"             "year"             "queer"           
## [12574] "land"             "folk"             "come"            
## [12577] "grief"            "aye"              "grief"           
## [12580] "laurelindórenan"  "lindelorendor"    "malinornélion"   
## [12583] "ornemalin"        "hummed"           "falling"         
## [12586] "rather"           "behind"           "world"           
## [12589] "guess"            "said"             "neither"         
## [12592] "country"          "anything"         "else"            
## [12595] "outside"          "golden"           "wood"            
## [12598] "celeborn"         "young"            "still"           
## [12601] "taurelilómëa"     "tumbalemorna"     "tumbaletaurëa"   
## [12604] "lómëanor"         "used"             "say"             
## [12607] "things"           "changed"          "still"           
## [12610] "true"             "places"           "mean"            
## [12613] "said"             "pippin"           "true"            
## [12616] "trees"            "ents"             "said"            
## [12619] "treebeard"        "understand"       "goes"            
## [12622] "explain"          "us"               "still"           
## [12625] "true"             "ents"             "lively"          
## [12628] "enough"           "fashion"          "many"            
## [12631] "growing"          "sleepy"           "going"           
## [12634] "tree"             "ish"              "might"           
## [12637] "say"              "trees"            "just"            
## [12640] "trees"            "course"           "many"            
## [12643] "half"             "awake"            "quite"           
## [12646] "wide"             "awake"            "well"            
## [12649] "ah"               "well"             "getting"         
## [12652] "entish"           "going"            "time"            
## [12655] "happens"          "tree"             "find"            
## [12658] "bad"              "hearts"           "nothing"         
## [12661] "wood"             "mean"             "knew"            
## [12664] "good"             "old"              "willows"         
## [12667] "entwash"          "gone"             "long"            
## [12670] "ago"              "alas"             "quite"           
## [12673] "hollow"           "indeed"           "falling"         
## [12676] "pieces"           "quiet"            "sweet"           
## [12679] "spoken"           "young"            "leaf"            
## [12682] "trees"            "valleys"          "mountains"       
## [12685] "sound"            "bell"             "bad"             
## [12688] "right"            "sort"             "thing"           
## [12691] "seems"            "spread"           "used"            
## [12694] "dangerous"        "parts"            "country"         
## [12697] "still"            "black"            "patches"         
## [12700] "like"             "old"              "forest"          
## [12703] "away"             "north"            "mean"            
## [12706] "asked"            "merry"            "aye"             
## [12709] "aye"              "something"        "like"            
## [12712] "much"             "worse"            "doubt"           
## [12715] "shadow"           "great"            "darkness"        
## [12718] "lying"            "still"            "away"            
## [12721] "north"            "bad"              "memories"        
## [12724] "handed"           "hollow"           "dales"           
## [12727] "land"             "darkness"         "never"           
## [12730] "lifted"           "trees"            "older"           
## [12733] "still"            "can"              "keep"            
## [12736] "strangers"        "foolhardy"        "train"           
## [12739] "teach"            "walk"             "weed"            
## [12742] "tree"             "herds"            "old"             
## [12745] "ents"             "enough"           "us"              
## [12748] "left"             "now"              "sheep"           
## [12751] "get"              "like"             "shepherd"        
## [12754] "shepherds"        "like"             "sheep"           
## [12757] "said"             "slowly"           "neither"         
## [12760] "long"             "world"            "quicker"         
## [12763] "closer"           "trees"            "ents"            
## [12766] "walk"             "ages"             "together"        
## [12769] "ents"             "like"             "elves"           
## [12772] "less"             "interested"       "men"             
## [12775] "better"           "getting"          "inside"          
## [12778] "things"           "yet"              "ents"            
## [12781] "like"             "men"              "changeable"      
## [12784] "elves"            "quicker"          "taking"          
## [12787] "colour"           "outside"          "might"           
## [12790] "say"              "better"           "steadier"        
## [12793] "keep"             "minds"            "things"          
## [12796] "longer"           "kin"              "look"            
## [12799] "just"             "like"             "trees"           
## [12802] "now"              "need"             "something"       
## [12805] "great"            "rouse"            "speak"           
## [12808] "whispers"         "trees"            "limb"            
## [12811] "lithe"            "many"             "can"             
## [12814] "talk"             "elves"            "began"           
## [12817] "course"           "waking"           "trees"           
## [12820] "teaching"         "speak"            "learning"        
## [12823] "tree"             "talk"             "always"          
## [12826] "wished"           "talk"             "everything"      
## [12829] "old"              "elves"            "great"           
## [12832] "darkness"         "came"             "passed"          
## [12835] "away"             "sea"              "fled"            
## [12838] "far"              "valleys"          "hid"             
## [12841] "made"             "songs"            "days"            
## [12844] "never"            "come"             "never"           
## [12847] "aye"              "aye"              "one"             
## [12850] "wood"             "upon"             "time"            
## [12853] "mountains"        "lune"             "just"            
## [12856] "east"             "end"              "broad"           
## [12859] "days"             "time"             "walk"            
## [12862] "sing"             "day"              "hear"            
## [12865] "echo"             "voice"            "hollow"          
## [12868] "hills"            "woods"            "like"            
## [12871] "woods"            "lothlórien"       "thicker"         
## [12874] "stronger"         "younger"          "smell"           
## [12877] "air"              "used"             "spend"           
## [12880] "week"             "just"             "breathing"       
## [12883] "treebeard"        "fell"             "silent"          
## [12886] "striding"         "along"            "yet"             
## [12889] "making"           "hardly"           "sound"           
## [12892] "great"            "feet"             "began"           
## [12895] "hum"              "passed"           "murmuring"       
## [12898] "chant"            "gradually"        "hobbits"         
## [12901] "became"           "aware"            "chanting"        
## [12904] "willow"           "meads"            "tasarinan"       
## [12907] "walked"           "spring"           "ah"              
## [12910] "sight"            "smell"            "spring"          
## [12913] "nan"              "tasarion"         "said"            
## [12916] "good"             "wandered"         "summer"          
## [12919] "elm"              "woods"            "ossiriand"       
## [12922] "ah"               "light"            "music"           
## [12925] "summer"           "seven"            "rivers"          
## [12928] "ossir"            "thought"          "best"            
## [12931] "beeches"          "neldoreth"        "came"            
## [12934] "autumn"           "ah"               "gold"            
## [12937] "red"              "sighing"          "leaves"          
## [12940] "autumn"           "taur"             "na"              
## [12943] "neldor"           "desire"           "pine"            
## [12946] "trees"            "upon"             "highland"        
## [12949] "dorthonion"       "climbed"          "winter"          
## [12952] "ah"               "wind"             "whiteness"       
## [12955] "black"            "branches"         "winter"          
## [12958] "upon"             "orod"             "na"              
## [12961] "thôn"             "voice"            "went"            
## [12964] "sang"             "sky"              "now"             
## [12967] "lands"            "lie"              "wave"            
## [12970] "walk"             "ambaróna"         "tauremorna"      
## [12973] "aldalómë"         "land"             "country"         
## [12976] "fangorn"          "roots"            "long"            
## [12979] "years"            "lie"              "thicker"         
## [12982] "leaves"           "tauremornalómë"   "ended"           
## [12985] "strode"           "silently"         "wood"            
## [12988] "far"              "ear"              "reach"           
## [12991] "sound"            "day"              "waned"           
## [12994] "dusk"             "twined"           "boles"           
## [12997] "trees"            "last"             "hobbits"         
## [13000] "saw"              "rising"           "dimly"           
## [13003] "steep"            "dark"             "land"            
## [13006] "come"             "feet"             "mountains"       
## [13009] "green"            "roots"            "tall"            
## [13012] "methedras"        "hillside"         "young"           
## [13015] "entwash"          "leaping"          "springs"         
## [13018] "high"             "ran"              "noisily"         
## [13021] "step"             "step"             "meet"            
## [13024] "right"            "stream"           "long"            
## [13027] "slope"            "clad"             "grass"           
## [13030] "now"              "grey"             "twilight"        
## [13033] "trees"            "grew"             "open"            
## [13036] "sky"              "stars"            "shining"         
## [13039] "already"          "lakes"            "shores"          
## [13042] "cloud"            "treebeard"        "strode"          
## [13045] "slope"            "hardly"           "slackening"      
## [13048] "pace"             "suddenly"         "hobbits"         
## [13051] "saw"              "wide"             "opening"         
## [13054] "two"              "great"            "trees"           
## [13057] "stood"            "one"              "either"          
## [13060] "side"             "like"             "living"          
## [13063] "gate"             "posts"            "gate"            
## [13066] "save"             "crossing"         "interwoven"      
## [13069] "boughs"           "old"              "ent"             
## [13072] "approached"       "trees"            "lifted"          
## [13075] "branches"         "leaves"           "quivered"        
## [13078] "rustled"          "evergreen"        "trees"           
## [13081] "leaves"           "dark"             "polished"        
## [13084] "gleamed"          "twilight"         "beyond"          
## [13087] "wide"             "level"            "space"           
## [13090] "though"           "floor"            "great"           
## [13093] "hall"             "cut"              "side"            
## [13096] "hill"             "either"           "hand"            
## [13099] "walls"            "sloped"           "upwards"         
## [13102] "fifty"            "feet"             "high"            
## [13105] "along"            "wall"             "stood"           
## [13108] "aisle"            "trees"            "also"            
## [13111] "increased"        "height"           "marched"         
## [13114] "inwards"          "far"              "end"             
## [13117] "rock"             "wall"             "sheer"           
## [13120] "bottom"           "hollowed"         "back"            
## [13123] "shallow"          "bay"              "arched"          
## [13126] "roof"             "roof"             "hall"            
## [13129] "save"             "branches"         "trees"           
## [13132] "inner"            "end"              "overshadowed"    
## [13135] "ground"           "leaving"          "broad"           
## [13138] "open"             "path"             "middle"          
## [13141] "little"           "stream"           "escaped"         
## [13144] "springs"          "leaving"          "main"            
## [13147] "water"            "fell"             "tinkling"        
## [13150] "sheer"            "face"             "wall"            
## [13153] "pouring"          "silver"           "drops"           
## [13156] "like"             "fine"             "curtain"         
## [13159] "front"            "arched"           "bay"             
## [13162] "water"            "gathered"         "stone"           
## [13165] "basin"            "floor"            "trees"           
## [13168] "thence"           "spilled"          "flowed"          
## [13171] "away"             "beside"           "open"            
## [13174] "path"             "rejoin"           "entwash"         
## [13177] "journey"          "forest"           "hm"              
## [13180] "said"             "treebeard"        "breaking"        
## [13183] "long"             "silence"          "brought"         
## [13186] "seventy"          "thousand"         "ent"             
## [13189] "strides"          "comes"            "measurement"     
## [13192] "land"             "know"             "anyhow"          
## [13195] "near"             "roots"            "last"            
## [13198] "mountain"         "part"             "name"            
## [13201] "place"            "might"            "wellinghall"     
## [13204] "turned"           "language"         "like"            
## [13207] "stay"             "tonight"          "set"             
## [13210] "grass"            "aisles"           "trees"           
## [13213] "followed"         "towards"          "great"           
## [13216] "arch"             "hobbits"          "now"             
## [13219] "noticed"          "walked"           "knees"           
## [13222] "hardly"           "bent"             "legs"            
## [13225] "opened"           "great"            "stride"          
## [13228] "planted"          "big"              "toes"            
## [13231] "indeed"           "big"              "broad"           
## [13234] "ground"           "first"            "part"            
## [13237] "feet"             "moment"           "treebeard"       
## [13240] "stood"            "rain"             "falling"         
## [13243] "spring"           "took"             "deep"            
## [13246] "breath"           "laughed"          "passed"          
## [13249] "inside"           "great"            "stone"           
## [13252] "table"            "stood"            "chairs"          
## [13255] "back"             "bay"              "already"         
## [13258] "quite"            "dark"             "treebeard"       
## [13261] "lifted"           "two"              "great"           
## [13264] "vessels"          "stood"            "table"           
## [13267] "seemed"           "filled"           "water"           
## [13270] "held"             "hands"            "immediately"     
## [13273] "began"            "glow"             "one"             
## [13276] "golden"           "rich"             "green"           
## [13279] "light"            "blending"         "two"             
## [13282] "lights"           "lit"              "bay"             
## [13285] "sun"              "summer"           "shining"         
## [13288] "roof"             "young"            "leaves"          
## [13291] "looking"          "back"             "hobbits"         
## [13294] "saw"              "trees"            "court"           
## [13297] "also"             "begun"            "glow"            
## [13300] "faintly"          "first"            "steadily"        
## [13303] "quickening"       "every"            "leaf"            
## [13306] "edged"            "light"            "green"           
## [13309] "gold"             "red"              "copper"          
## [13312] "tree"             "trunks"           "looked"          
## [13315] "like"             "pillars"          "moulded"         
## [13318] "luminous"         "stone"            "well"            
## [13321] "well"             "now"              "can"             
## [13324] "talk"             "said"             "treebeard"       
## [13327] "thirsty"          "expect"           "perhaps"         
## [13330] "also"             "tired"            "drink"           
## [13333] "went"             "back"             "bay"             
## [13336] "saw"              "several"          "tall"            
## [13339] "stone"            "jars"             "stood"           
## [13342] "heavy"            "lids"             "removed"         
## [13345] "one"              "lids"             "dipped"          
## [13348] "great"            "ladle"            "filled"          
## [13351] "three"            "bowls"            "one"             
## [13354] "large"            "bowl"             "two"             
## [13357] "smaller"          "ones"             "ent"             
## [13360] "house"            "said"             "seats"           
## [13363] "fear"             "may"              "sit"             
## [13366] "table"            "picking"          "hobbits"         
## [13369] "set"              "great"            "stone"           
## [13372] "slab"             "six"              "feet"            
## [13375] "ground"           "sat"              "dangling"        
## [13378] "legs"             "drinking"         "sips"            
## [13381] "drink"            "like"             "water"           
## [13384] "indeed"           "like"             "taste"           
## [13387] "draughts"         "drunk"            "entwash"         
## [13390] "near"             "borders"          "forest"          
## [13393] "yet"              "scent"            "savour"          
## [13396] "describe"         "faint"            "reminded"        
## [13399] "smell"            "distant"          "wood"            
## [13402] "borne"            "afar"             "cool"            
## [13405] "breeze"           "night"            "effect"          
## [13408] "draught"          "began"            "toes"            
## [13411] "rose"             "steadily"         "every"           
## [13414] "limb"             "bringing"         "refreshment"     
## [13417] "vigour"           "coursed"          "upwards"         
## [13420] "right"            "tips"             "hair"            
## [13423] "indeed"           "hobbits"          "felt"            
## [13426] "hair"             "heads"            "actually"        
## [13429] "standing"         "waving"           "curling"         
## [13432] "growing"          "treebeard"        "first"           
## [13435] "laved"            "feet"             "basin"           
## [13438] "beyond"           "arch"             "drained"         
## [13441] "bowl"             "one"              "draught"         
## [13444] "one"              "long"             "slow"            
## [13447] "draught"          "hobbits"          "thought"         
## [13450] "never"            "stop"             "last"            
## [13453] "set"              "bowl"             "ah"              
## [13456] "ah"               "sighed"           "hm"              
## [13459] "hoom"             "now"              "can"             
## [13462] "talk"             "easier"           "can"             
## [13465] "sit"              "floor"            "lie"             
## [13468] "prevent"          "drink"            "rising"          
## [13471] "head"             "sending"          "sleep"           
## [13474] "right"            "side"             "bay"             
## [13477] "great"            "bed"              "low"             
## [13480] "legs"             "couple"           "feet"            
## [13483] "high"             "covered"          "deep"            
## [13486] "dried"            "grass"            "bracken"         
## [13489] "treebeard"        "lowered"          "slowly"          
## [13492] "slightest"        "sign"             "bending"         
## [13495] "middle"           "lay"              "full"            
## [13498] "length"           "arms"             "behind"          
## [13501] "head"             "looking"          "ceiling"         
## [13504] "upon"             "lights"           "flickering"      
## [13507] "like"             "play"             "leaves"          
## [13510] "sunshine"         "merry"            "pippin"          
## [13513] "sat"              "beside"           "pillows"         
## [13516] "grass"            "now"              "tell"            
## [13519] "tale"             "hurry"            "said"            
## [13522] "treebeard"        "hobbits"          "began"           
## [13525] "tell"             "story"            "adventures"      
## [13528] "ever"             "since"            "left"            
## [13531] "hobbiton"         "followed"         "clear"           
## [13534] "order"            "interrupted"      "one"             
## [13537] "another"          "continually"      "treebeard"       
## [13540] "often"            "stopped"          "speaker"         
## [13543] "went"             "back"             "earlier"         
## [13546] "point"            "jumped"           "forward"         
## [13549] "asking"           "questions"        "later"           
## [13552] "events"           "said"             "nothing"         
## [13555] "whatever"         "ring"             "tell"            
## [13558] "set"              "going"            "ask"             
## [13561] "reasons"          "immensely"        "interested"      
## [13564] "everything"       "black"            "riders"          
## [13567] "elrond"           "rivendell"        "old"             
## [13570] "forest"           "tom"              "bombadil"        
## [13573] "mines"            "moria"            "lothlórien"      
## [13576] "galadriel"        "made"             "describe"        
## [13579] "shire"            "country"          "said"            
## [13582] "odd"              "thing"            "point"           
## [13585] "never"            "see"              "hm"              
## [13588] "ents"             "round"            "asked"           
## [13591] "well"             "ents"             "entwives"        
## [13594] "really"           "say"              "entwives"        
## [13597] "said"             "pippin"           "like"            
## [13600] "yes"              "hm"               "well"            
## [13603] "really"           "know"             "now"             
## [13606] "said"             "treebeard"        "thoughtfully"    
## [13609] "like"             "country"          "just"            
## [13612] "wondered"         "treebeard"        "however"         
## [13615] "especially"       "interested"       "everything"      
## [13618] "concerned"        "gandalf"          "interested"      
## [13621] "sarumans"         "doings"           "hobbits"         
## [13624] "regretted"        "much"             "knew"            
## [13627] "little"           "rather"           "vague"           
## [13630] "report"           "sam"              "gandalf"         
## [13633] "told"             "council"          "clear"           
## [13636] "rate"             "uglúk"            "troop"           
## [13639] "came"             "isengard"         "spoke"           
## [13642] "saruman"          "master"           "hm"              
## [13645] "hoom"             "said"             "treebeard"       
## [13648] "last"             "story"            "wound"           
## [13651] "wandered"         "battle"           "orcs"            
## [13654] "riders"           "rohan"            "well"            
## [13657] "well"             "bundle"           "news"            
## [13660] "mistake"          "told"             "indeed"          
## [13663] "long"             "way"              "doubt"           
## [13666] "gandalf"          "wish"             "something"       
## [13669] "big"              "going"            "can"             
## [13672] "see"              "maybe"            "shall"           
## [13675] "learn"            "good"             "time"            
## [13678] "bad"              "time"             "root"            
## [13681] "twig"             "strange"          "business"        
## [13684] "sprout"           "little"           "folk"            
## [13687] "old"              "lists"            "behold"          
## [13690] "nine"             "forgotten"        "riders"          
## [13693] "reappear"         "hunt"             "gandalf"         
## [13696] "takes"            "great"            "journey"         
## [13699] "galadriel"        "harbours"         "caras"           
## [13702] "galadhon"         "orcs"             "pursue"          
## [13705] "leagues"          "wilderland"       "indeed"          
## [13708] "seem"             "caught"           "great"           
## [13711] "storm"            "hope"             "weather"         
## [13714] "asked"            "merry"            "hoom"            
## [13717] "hm"               "troubled"         "great"           
## [13720] "wars"             "said"             "treebeard"       
## [13723] "mostly"           "concern"          "elves"           
## [13726] "men"              "business"         "wizards"         
## [13729] "wizards"          "always"           "troubled"        
## [13732] "future"           "like"             "worrying"        
## [13735] "future"           "altogether"       "anybodys"        
## [13738] "side"             "nobody"           "altogether"      
## [13741] "side"             "understand"       "nobody"          
## [13744] "cares"            "woods"            "care"            
## [13747] "even"             "elves"            "nowadays"        
## [13750] "still"            "take"             "kindly"          
## [13753] "elves"            "others"           "elves"           
## [13756] "cured"            "us"               "dumbness"        
## [13759] "long"             "ago"              "great"           
## [13762] "gift"             "forgotten"        "though"          
## [13765] "ways"             "parted"           "since"           
## [13768] "things"           "course"           "whose"           
## [13771] "side"             "altogether"       "altogether"      
## [13774] "burárum"          "made"             "deep"            
## [13777] "rumble"           "disgust"          "orcs"            
## [13780] "masters"          "used"             "anxious"         
## [13783] "shadow"           "lay"              "mirkwood"        
## [13786] "removed"          "mordor"           "trouble"         
## [13789] "mordor"           "long"             "way"             
## [13792] "away"             "seems"            "wind"            
## [13795] "setting"          "east"             "withering"       
## [13798] "woods"            "may"              "drawing"         
## [13801] "near"             "naught"           "old"             
## [13804] "ent"              "can"              "hold"            
## [13807] "back"             "storm"            "must"            
## [13810] "weather"          "crack"            "saruman"         
## [13813] "now"              "saruman"          "neighbour"       
## [13816] "overlook"         "must"             "something"       
## [13819] "suppose"          "often"            "wondered"        
## [13822] "lately"           "saruman"          "saruman"         
## [13825] "asked"            "pippin"           "know"            
## [13828] "anything"         "history"          "saruman"         
## [13831] "wizard"           "answered"         "treebeard"       
## [13834] "say"              "know"             "history"         
## [13837] "wizards"          "appeared"         "first"           
## [13840] "great"            "ships"            "came"            
## [13843] "sea"              "came"             "ships"           
## [13846] "never"            "can"              "tell"            
## [13849] "saruman"          "reckoned"         "great"           
## [13852] "among"            "believe"          "gave"            
## [13855] "wandering"        "minding"          "affairs"         
## [13858] "men"              "elves"            "time"            
## [13861] "ago"              "call"             "long"            
## [13864] "time"             "ago"              "settled"         
## [13867] "angrenost"        "isengard"         "men"             
## [13870] "rohan"            "call"             "quiet"           
## [13873] "begin"            "fame"             "began"           
## [13876] "grow"             "chosen"           "head"            
## [13879] "white"            "council"          "say"             
## [13882] "turn"             "well"             "wonder"          
## [13885] "now"              "even"             "saruman"         
## [13888] "turning"          "evil"             "ways"            
## [13891] "rate"             "used"             "give"            
## [13894] "trouble"          "neighbours"       "used"            
## [13897] "talk"             "time"             "always"          
## [13900] "walking"          "woods"            "polite"          
## [13903] "days"             "always"           "asking"          
## [13906] "leave"            "least"            "met"             
## [13909] "always"           "eager"            "listen"          
## [13912] "told"             "many"             "things"          
## [13915] "never"            "found"            "never"           
## [13918] "repaid"           "like"             "kind"            
## [13921] "remember"         "ever"             "told"            
## [13924] "anything"         "got"              "like"            
## [13927] "face"             "remember"         "seen"            
## [13930] "many"             "day"              "became"          
## [13933] "like"             "windows"          "stone"           
## [13936] "wall"             "windows"          "shutters"        
## [13939] "inside"           "think"            "now"             
## [13942] "understand"       "plotting"         "become"          
## [13945] "power"            "mind"             "metal"           
## [13948] "wheels"           "care"             "growing"         
## [13951] "things"           "except"           "far"             
## [13954] "serve"            "moment"           "now"             
## [13957] "clear"            "black"            "traitor"         
## [13960] "taken"            "foul"             "folk"            
## [13963] "orcs"             "brm"              "hoom"            
## [13966] "worse"            "something"        "something"       
## [13969] "dangerous"        "isengarders"      "like"            
## [13972] "wicked"           "men"              "mark"            
## [13975] "evil"             "things"           "came"            
## [13978] "great"            "darkness"         "abide"           
## [13981] "sun"              "sarumans"         "orcs"            
## [13984] "can"              "endure"           "even"            
## [13987] "hate"             "wonder"           "done"            
## [13990] "men"              "ruined"           "blended"         
## [13993] "races"            "orcs"             "men"             
## [13996] "black"            "evil"             "treebeard"       
## [13999] "rumbled"          "moment"           "pronouncing"     
## [14002] "deep"             "subterranean"     "entish"          
## [14005] "malediction"      "time"             "ago"             
## [14008] "began"            "wonder"           "orcs"            
## [14011] "dared"            "pass"             "woods"           
## [14014] "freely"           "went"             "lately"          
## [14017] "guess"            "saruman"          "blame"           
## [14020] "long"             "ago"              "spying"          
## [14023] "ways"             "discovering"      "secrets"         
## [14026] "foul"             "folk"             "making"          
## [14029] "havoc"            "now"              "borders"         
## [14032] "felling"          "trees"            "good"            
## [14035] "trees"            "trees"            "just"            
## [14038] "cut"              "leave"            "rot"             
## [14041] "orc"              "mischief"         "hewn"            
## [14044] "carried"          "feed"             "fires"           
## [14047] "orthanc"          "always"           "smoke"           
## [14050] "rising"           "isengard"         "days"            
## [14053] "curse"            "root"             "branch"          
## [14056] "many"             "trees"            "friends"         
## [14059] "creatures"        "known"            "nut"             
## [14062] "acorn"            "many"             "voices"          
## [14065] "lost"             "ever"             "now"             
## [14068] "wastes"           "stump"            "bramble"         
## [14071] "singing"          "groves"           "idle"            
## [14074] "let"              "things"           "slip"            
## [14077] "must"             "stop"             "treebeard"       
## [14080] "raised"           "bed"              "jerk"            
## [14083] "stood"            "thumped"          "hand"            
## [14086] "table"            "vessels"          "light"           
## [14089] "trembled"         "sent"             "two"             
## [14092] "jets"             "flame"            "flicker"         
## [14095] "like"             "green"            "fire"            
## [14098] "eyes"             "beard"            "stood"           
## [14101] "stiff"            "great"            "besom"           
## [14104] "stop"             "boomed"           "shall"           
## [14107] "come"             "may"              "able"            
## [14110] "help"             "helping"          "friends"         
## [14113] "way"              "saruman"          "checked"         
## [14116] "rohan"            "gondor"           "enemy"           
## [14119] "behind"           "well"             "front"           
## [14122] "roads"            "go"               "together"        
## [14125] "isengard"         "come"             "said"            
## [14128] "merry"            "can"              "yes"             
## [14131] "said"             "pippin"           "like"            
## [14134] "see"              "white"            "hand"            
## [14137] "overthrown"       "like"             "even"            
## [14140] "much"             "use"              "shall"           
## [14143] "never"            "forget"           "uglúk"           
## [14146] "crossing"         "rohan"            "good"            
## [14149] "good"             "said"             "treebeard"       
## [14152] "spoke"            "hastily"          "must"            
## [14155] "hasty"            "become"           "hot"             
## [14158] "must"             "cool"             "think"           
## [14161] "fur"              "easier"           "shout"           
## [14164] "stop"             "strode"           "archway"         
## [14167] "stood"            "time"             "falling"         
## [14170] "rain"             "spring"           "laughed"         
## [14173] "shook"            "wherever"         "drops"           
## [14176] "water"            "fell"             "glittering"      
## [14179] "ground"           "glinted"          "like"            
## [14182] "red"              "green"            "sparks"          
## [14185] "came"             "back"             "laid"            
## [14188] "bed"              "silent"           "time"            
## [14191] "hobbits"          "heard"            "murmuring"       
## [14194] "seemed"           "counting"         "fingers"         
## [14197] "fangorn"          "finglas"          "fladrif"         
## [14200] "aye"              "aye"              "sighed"          
## [14203] "trouble"          "us"               "left"            
## [14206] "said"             "turning"          "towards"         
## [14209] "hobbits"          "three"            "remain"          
## [14212] "first"            "ents"             "walked"          
## [14215] "woods"            "darkness"         "fangorn"         
## [14218] "finglas"          "fladrif"          "give"            
## [14221] "elvish"           "names"            "may"             
## [14224] "call"             "leaflock"         "skinbark"        
## [14227] "like"             "better"           "us"              
## [14230] "three"            "leaflock"         "skinbark"        
## [14233] "much"             "use"              "business"        
## [14236] "leaflock"         "grown"            "sleepy"          
## [14239] "almost"           "tree"             "ish"             
## [14242] "might"            "say"              "taken"           
## [14245] "standing"         "half"             "asleep"          
## [14248] "summer"           "deep"             "grass"           
## [14251] "meadows"          "round"            "knees"           
## [14254] "covered"          "leafy"            "hair"            
## [14257] "used"             "rouse"            "winter"          
## [14260] "late"             "drowsy"           "walk"            
## [14263] "far"              "even"             "skinbark"        
## [14266] "lived"            "mountain"         "slopes"          
## [14269] "west"             "isengard"         "worst"           
## [14272] "trouble"          "wounded"          "orcs"            
## [14275] "many"             "folk"             "tree"            
## [14278] "herds"            "murdered"         "destroyed"       
## [14281] "gone"             "high"             "places"          
## [14284] "among"            "birches"          "loves"           
## [14287] "best"             "come"             "still"           
## [14290] "daresay"          "get"              "together"        
## [14293] "fair"             "company"          "younger"         
## [14296] "folks"            "make"             "understand"      
## [14299] "need"             "rouse"            "hasty"           
## [14302] "folk"             "pity"             "us"              
## [14305] "lived"            "country"          "long"            
## [14308] "asked"            "pippin"           "great"           
## [14311] "many"             "died"             "oh"              
## [14314] "said"             "treebeard"        "none"            
## [14317] "died"             "inside"           "might"           
## [14320] "say"              "fallen"           "evil"            
## [14323] "chances"          "long"             "years"           
## [14326] "course"           "grown"            "tree"            
## [14329] "ish"              "never"            "many"            
## [14332] "us"               "increased"        "entings"         
## [14335] "children"         "say"              "terrible"        
## [14338] "long"             "count"            "years"           
## [14341] "see"              "lost"             "entwives"        
## [14344] "sad"              "said"             "pippin"          
## [14347] "died"             "die"              "said"            
## [14350] "treebeard"        "never"            "said"            
## [14353] "died"             "lost"             "said"            
## [14356] "lost"             "find"             "sighed"          
## [14359] "thought"          "folk"             "knew"            
## [14362] "songs"            "hunt"             "ents"            
## [14365] "entwives"         "sung"             "among"           
## [14368] "elves"            "men"              "mirkwood"        
## [14371] "gondor"           "quite"            "forgotten"       
## [14374] "well"             "afraid"           "songs"           
## [14377] "come"             "west"             "mountains"       
## [14380] "shire"            "said"             "merry"           
## [14383] "wont"             "tell"             "us"              
## [14386] "sing"             "us"               "one"             
## [14389] "songs"            "yes"              "indeed"          
## [14392] "said"             "treebeard"        "seeming"         
## [14395] "pleased"          "request"          "tell"            
## [14398] "properly"         "short"            "must"            
## [14401] "end"              "talk"             "tomorrow"        
## [14404] "councils"         "call"             "work"            
## [14407] "maybe"            "journey"          "begin"           
## [14410] "rather"           "strange"          "sad"             
## [14413] "story"            "went"             "pause"           
## [14416] "world"            "young"            "woods"           
## [14419] "wide"             "wild"             "ents"            
## [14422] "entwives"         "entmaidens"       "ah"              
## [14425] "loveliness"       "fimbrethil"       "wandlimb"        
## [14428] "lightfooted"      "days"             "youth"           
## [14431] "walked"           "together"         "housed"          
## [14434] "together"         "hearts"           "go"              
## [14437] "growing"          "way"              "ents"            
## [14440] "gave"             "love"             "things"          
## [14443] "met"              "world"            "entwives"        
## [14446] "gave"             "thought"          "things"          
## [14449] "ents"             "loved"            "great"           
## [14452] "trees"            "wild"             "woods"           
## [14455] "slopes"           "high"             "hills"           
## [14458] "drank"            "mountain"         "streams"         
## [14461] "ate"              "fruit"            "trees"           
## [14464] "let"              "fall"             "path"            
## [14467] "learned"          "elves"            "spoke"           
## [14470] "trees"            "entwives"         "gave"            
## [14473] "minds"            "lesser"           "trees"           
## [14476] "meads"            "sunshine"         "beyond"          
## [14479] "feet"             "forests"          "saw"             
## [14482] "sloe"             "thicket"          "wild"            
## [14485] "apple"            "cherry"           "blossoming"      
## [14488] "spring"           "green"            "herbs"           
## [14491] "waterlands"       "summer"           "seeding"         
## [14494] "grasses"          "autumn"           "fields"          
## [14497] "desire"           "speak"            "things"          
## [14500] "wished"           "hear"             "obey"            
## [14503] "said"             "entwives"         "ordered"         
## [14506] "grow"             "according"        "wishes"          
## [14509] "bear"             "leaf"             "fruit"           
## [14512] "liking"           "entwives"         "desired"         
## [14515] "order"            "plenty"           "peace"           
## [14518] "meant"            "things"           "remain"          
## [14521] "set"              "entwives"         "made"            
## [14524] "gardens"          "live"             "ents"            
## [14527] "went"             "wandering"        "came"            
## [14530] "gardens"          "now"              "darkness"        
## [14533] "came"             "north"            "entwives"        
## [14536] "crossed"          "great"            "river"           
## [14539] "made"             "new"              "gardens"         
## [14542] "tilled"           "new"              "fields"          
## [14545] "saw"              "seldom"           "darkness"        
## [14548] "overthrown"       "land"             "entwives"        
## [14551] "blossomed"        "richly"           "fields"          
## [14554] "full"             "corn"             "many"            
## [14557] "men"              "learned"          "crafts"          
## [14560] "entwives"         "honoured"         "greatly"         
## [14563] "legend"           "secret"           "heart"           
## [14566] "forest"           "yet"              "still"           
## [14569] "gardens"          "entwives"         "wasted"          
## [14572] "men"              "call"             "brown"           
## [14575] "lands"            "now"              "remember"        
## [14578] "long"             "ago"              "time"            
## [14581] "war"              "sauron"           "men"             
## [14584] "sea"              "desire"           "came"            
## [14587] "see"              "fimbrethil"       "fair"            
## [14590] "still"            "eyes"             "last"            
## [14593] "seen"             "though"           "little"          
## [14596] "like"             "entmaiden"        "old"             
## [14599] "entwives"         "bent"             "browned"         
## [14602] "labour"           "hair"             "parched"         
## [14605] "sun"              "hue"              "ripe"            
## [14608] "corn"             "cheeks"           "like"            
## [14611] "red"              "apples"           "yet"             
## [14614] "eyes"             "still"            "eyes"            
## [14617] "people"           "crossed"          "anduin"          
## [14620] "came"             "land"             "found"           
## [14623] "desert"           "burned"           "uprooted"        
## [14626] "war"              "passed"           "entwives"        
## [14629] "long"             "called"           "long"            
## [14632] "searched"         "asked"            "folk"            
## [14635] "met"              "way"              "entwives"        
## [14638] "gone"             "said"             "never"           
## [14641] "seen"             "said"             "seen"            
## [14644] "walking"          "away"             "west"            
## [14647] "said"             "east"             "others"          
## [14650] "south"            "nowhere"          "went"            
## [14653] "find"             "sorrow"           "great"           
## [14656] "yet"              "wild"             "wood"            
## [14659] "called"           "returned"         "many"            
## [14662] "years"            "used"             "go"              
## [14665] "every"            "now"              "look"            
## [14668] "entwives"         "walking"          "far"             
## [14671] "wide"             "calling"          "beautiful"       
## [14674] "names"            "time"             "passed"          
## [14677] "went"             "seldom"           "wandered"        
## [14680] "less"             "far"              "now"             
## [14683] "entwives"         "memory"           "us"              
## [14686] "beards"           "long"             "grey"            
## [14689] "elves"            "made"             "many"            
## [14692] "songs"            "concerning"       "search"          
## [14695] "ents"             "songs"            "passed"          
## [14698] "tongues"          "men"              "made"            
## [14701] "songs"            "content"          "chant"           
## [14704] "beautiful"        "names"            "thought"         
## [14707] "entwives"         "believe"          "may"             
## [14710] "meet"             "time"             "come"            
## [14713] "perhaps"          "shall"            "find"            
## [14716] "somewhere"        "land"             "can"             
## [14719] "live"             "together"         "content"         
## [14722] "foreboded"        "lost"             "now"             
## [14725] "may"              "well"             "time"            
## [14728] "drawing"          "near"             "last"            
## [14731] "sauron"           "old"              "destroyed"       
## [14734] "gardens"          "enemy"            "today"           
## [14737] "seems"            "likely"           "wither"          
## [14740] "woods"            "elvish"           "song"            
## [14743] "spoke"            "least"            "understand"      
## [14746] "used"             "sung"             "great"           
## [14749] "river"            "never"            "entish"          
## [14752] "song"             "mark"             "long"            
## [14755] "song"             "entish"           "know"            
## [14758] "heart"            "hum"              "now"             
## [14761] "runs"             "tongue"           "ent"             
## [14764] "spring"           "unfolds"          "beechen"         
## [14767] "leaf"             "sap"              "bough"           
## [14770] "light"            "wild"             "wood"            
## [14773] "stream"           "wind"             "brow"            
## [14776] "stride"           "long"             "breath"          
## [14779] "deep"             "keen"             "mountain"        
## [14782] "air"              "come"             "back"            
## [14785] "come"             "back"             "say"             
## [14788] "land"             "fair"             "entwife"         
## [14791] "spring"           "come"             "garth"           
## [14794] "field"            "corn"             "blade"           
## [14797] "blossom"          "like"             "shining"         
## [14800] "snow"             "orchard"          "laid"            
## [14803] "shower"           "sun"              "upon"            
## [14806] "earth"            "fragrance"        "fill"            
## [14809] "air"              "ill"              "linger"          
## [14812] "come"             "land"             "fair"            
## [14815] "ent"              "summer"           "lies"            
## [14818] "upon"             "world"            "noon"            
## [14821] "gold"             "beneath"          "roof"            
## [14824] "sleeping"         "leaves"           "dreams"          
## [14827] "trees"            "unfold"           "woodland"        
## [14830] "halls"            "green"            "cool"            
## [14833] "wind"             "west"             "come"            
## [14836] "back"             "come"             "back"            
## [14839] "say"              "land"             "best"            
## [14842] "entwife"          "summer"           "warms"           
## [14845] "hanging"          "fruit"            "burns"           
## [14848] "berry"            "brown"            "straw"           
## [14851] "gold"             "ear"              "white"           
## [14854] "harvest"          "comes"            "town"            
## [14857] "honey"            "spills"           "apple"           
## [14860] "swells"           "though"           "wind"            
## [14863] "west"             "ill"              "linger"          
## [14866] "beneath"          "sun"              "land"            
## [14869] "best"             "ent"              "winter"          
## [14872] "comes"            "winter"           "wild"            
## [14875] "hill"             "wood"             "shall"           
## [14878] "slay"             "trees"            "shall"           
## [14881] "fall"             "starless"         "night"           
## [14884] "devour"           "sunless"          "day"             
## [14887] "wind"             "deadly"           "east"            
## [14890] "bitter"           "rain"             "ill"             
## [14893] "look"             "thee"             "call"            
## [14896] "thee"             "ill"              "come"            
## [14899] "thee"             "entwife"          "winter"          
## [14902] "comes"            "singing"          "ends"            
## [14905] "darkness"         "falls"            "last"            
## [14908] "broken"           "barren"           "bough"           
## [14911] "light"            "labour"           "past"            
## [14914] "ill"              "look"             "thee"            
## [14917] "wait"             "thee"             "meet"            
## [14920] "together"         "take"             "road"            
## [14923] "beneath"          "bitter"           "rain"            
## [14926] "together"         "take"             "road"            
## [14929] "leads"            "west"             "far"             
## [14932] "away"             "find"             "land"            
## [14935] "hearts"           "may"              "rest"            
## [14938] "treebeard"        "ended"            "song"            
## [14941] "goes"             "said"             "elvish"          
## [14944] "course"           "lighthearted"     "quickworded"     
## [14947] "soon"             "daresay"          "fair"            
## [14950] "enough"           "ents"             "say"             
## [14953] "side"             "time"             "now"             
## [14956] "going"            "stand"            "take"            
## [14959] "little"           "sleep"            "stand"           
## [14962] "usually"          "lie"              "sleep"           
## [14965] "said"             "merry"            "shall"           
## [14968] "right"            "lie"              "sleep"           
## [14971] "said"             "treebeard"        "course"          
## [14974] "hm"               "hoom"             "forgetting"      
## [14977] "singing"          "song"             "put"             
## [14980] "mind"             "old"              "times"           
## [14983] "almost"           "thought"          "talking"         
## [14986] "young"            "entings"          "well"            
## [14989] "can"              "lie"              "bed"             
## [14992] "going"            "stand"            "rain"            
## [14995] "good"             "night"            "merry"           
## [14998] "pippin"           "climbed"          "bed"             
## [15001] "curled"           "soft"             "grass"           
## [15004] "fern"             "fresh"            "sweet"           
## [15007] "scented"          "warm"             "lights"          
## [15010] "died"             "glow"             "trees"           
## [15013] "faded"            "outside"          "arch"            
## [15016] "see"              "old"              "treebeard"       
## [15019] "standing"         "motionless"       "arms"            
## [15022] "raised"           "head"             "bright"          
## [15025] "stars"            "peered"           "sky"             
## [15028] "lit"              "falling"          "water"           
## [15031] "spilled"          "fingers"          "head"            
## [15034] "dripped"          "dripped"          "hundreds"        
## [15037] "silver"           "drops"            "feet"            
## [15040] "listening"        "tinkling"         "drops"           
## [15043] "hobbits"          "fell"             "asleep"          
## [15046] "woke"             "find"             "cool"            
## [15049] "sun"              "shining"          "great"           
## [15052] "court"            "floor"            "bay"             
## [15055] "shreds"           "high"             "cloud"           
## [15058] "overhead"         "running"          "stiff"           
## [15061] "easterly"         "wind"             "treebeard"       
## [15064] "seen"             "merry"            "pippin"          
## [15067] "bathing"          "basin"            "arch"            
## [15070] "heard"            "humming"          "singing"         
## [15073] "came"             "path"             "trees"           
## [15076] "hoo"              "ho"               "good"            
## [15079] "morning"          "merry"            "pippin"          
## [15082] "boomed"           "saw"              "sleep"           
## [15085] "long"             "many"             "hundred"         
## [15088] "strides"          "already"          "today"           
## [15091] "now"              "drink"            "go"              
## [15094] "entmoot"          "poured"           "two"             
## [15097] "full"             "bowls"            "stone"           
## [15100] "jar"              "different"        "jar"             
## [15103] "taste"            "night"            "earthier"        
## [15106] "richer"           "sustaining"       "food"            
## [15109] "like"             "speak"            "hobbits"         
## [15112] "drank"            "sitting"          "edge"            
## [15115] "bed"              "nibbling"         "small"           
## [15118] "pieces"           "elf"              "cake"            
## [15121] "felt"             "eating"           "necessary"       
## [15124] "part"             "breakfast"        "felt"            
## [15127] "hungry"           "treebeard"        "stood"           
## [15130] "humming"          "entish"           "elvish"          
## [15133] "strange"          "tongue"           "looking"         
## [15136] "sky"              "entmoot"          "pippin"          
## [15139] "ventured"         "ask"              "hoo"             
## [15142] "eh"               "entmoot"          "said"            
## [15145] "treebeard"        "turning"          "round"           
## [15148] "place"            "gathering"        "ents"            
## [15151] "often"            "happen"           "nowadays"        
## [15154] "managed"          "make"             "fair"            
## [15157] "number"           "promise"          "come"            
## [15160] "shall"            "meet"             "place"           
## [15163] "always"           "met"              "derndingle"      
## [15166] "men"              "call"             "away"            
## [15169] "south"            "must"             "noon"            
## [15172] "long"             "set"              "treebeard"       
## [15175] "carried"          "hobbits"          "arms"            
## [15178] "previous"         "day"              "entrance"        
## [15181] "court"            "turned"           "right"           
## [15184] "stepped"          "stream"           "strode"          
## [15187] "away"             "southwards"       "along"           
## [15190] "feet"             "great"            "tumbled"         
## [15193] "slopes"           "trees"            "scanty"          
## [15196] "hobbits"          "saw"              "thickets"        
## [15199] "birch"            "rowan"            "beyond"          
## [15202] "dark"             "climbing"         "pinewoods"       
## [15205] "soon"             "treebeard"        "turned"          
## [15208] "little"           "away"             "hills"           
## [15211] "plunged"          "deep"             "groves"          
## [15214] "trees"            "larger"           "taller"          
## [15217] "thicker"          "hobbits"          "ever"            
## [15220] "seen"             "felt"             "faintly"         
## [15223] "sense"            "stifling"         "noticed"         
## [15226] "first"            "ventured"         "fangorn"         
## [15229] "soon"             "passed"           "treebeard"       
## [15232] "talk"             "hummed"           "deeply"          
## [15235] "thoughtfully"     "merry"            "pippin"          
## [15238] "caught"           "proper"           "words"           
## [15241] "sounded"          "like"             "boom"            
## [15244] "boom"             "rumboom"          "boorar"          
## [15247] "boom"             "boom"             "dahrar"          
## [15250] "boom"             "boom"             "dahrar"          
## [15253] "boom"             "constant"         "change"          
## [15256] "note"             "rhythm"           "now"             
## [15259] "thought"          "heard"            "answer"          
## [15262] "hum"              "quiver"           "sound"           
## [15265] "seemed"           "come"             "earth"           
## [15268] "boughs"           "heads"            "perhaps"         
## [15271] "boles"            "trees"            "treebeard"       
## [15274] "stop"             "turn"             "head"            
## [15277] "either"           "side"             "going"           
## [15280] "long"             "pippin"           "tried"           
## [15283] "keep"             "count"            "ent"             
## [15286] "strides"          "failed"           "getting"         
## [15289] "lost"             "three"            "thousand"        
## [15292] "treebeard"        "began"            "slacken"         
## [15295] "pace"             "suddenly"         "stopped"         
## [15298] "put"              "hobbits"          "raised"          
## [15301] "curled"           "hands"            "mouth"           
## [15304] "made"             "hollow"           "tube"            
## [15307] "blew"             "called"           "great"           
## [15310] "hoom"             "hom"              "rang"            
## [15313] "like"             "deep"             "throated"        
## [15316] "horn"             "woods"            "seemed"          
## [15319] "echo"             "trees"            "far"             
## [15322] "came"             "several"          "directions"      
## [15325] "similar"          "hoom"             "hom"             
## [15328] "hoom"             "echo"             "answer"          
## [15331] "treebeard"        "now"              "perched"         
## [15334] "merry"            "pippin"           "shoulders"       
## [15337] "strode"           "every"            "now"             
## [15340] "sending"          "another"          "horn"            
## [15343] "call"             "time"             "answers"         
## [15346] "came"             "louder"           "nearer"          
## [15349] "way"              "came"             "last"            
## [15352] "looked"           "like"             "impenetrable"    
## [15355] "wall"             "dark"             "evergreen"       
## [15358] "trees"            "trees"            "kind"            
## [15361] "hobbits"          "never"            "seen"            
## [15364] "branched"         "right"            "roots"           
## [15367] "densely"          "clad"             "dark"            
## [15370] "glossy"           "leaves"           "like"            
## [15373] "thornless"        "holly"            "bore"            
## [15376] "many"             "stiff"            "upright"         
## [15379] "flower"           "spikes"           "large"           
## [15382] "shining"          "olive"            "coloured"        
## [15385] "buds"             "turning"          "left"            
## [15388] "skirting"         "huge"             "hedge"           
## [15391] "treebeard"        "came"             "strides"         
## [15394] "narrow"           "entrance"         "worn"            
## [15397] "path"             "passed"           "dived"           
## [15400] "suddenly"         "long"             "steep"           
## [15403] "slope"            "hobbits"          "saw"             
## [15406] "descending"       "great"            "dingle"          
## [15409] "almost"           "round"            "bowl"            
## [15412] "wide"             "deep"             "crowned"         
## [15415] "rim"              "high"             "dark"            
## [15418] "evergreen"        "hedge"            "smooth"          
## [15421] "grassclad"        "inside"           "trees"           
## [15424] "except"           "three"            "tall"            
## [15427] "beautiful"        "silver"           "birches"         
## [15430] "stood"            "bottom"           "bowl"            
## [15433] "two"              "paths"            "led"             
## [15436] "dingle"           "west"             "east"            
## [15439] "several"          "ents"             "already"         
## [15442] "arrived"          "coming"           "paths"           
## [15445] "now"              "following"        "treebeard"       
## [15448] "drew"             "near"             "hobbits"         
## [15451] "gazed"            "expected"         "see"             
## [15454] "number"           "creatures"        "much"            
## [15457] "like"             "treebeard"        "one"             
## [15460] "hobbit"           "like"             "another"         
## [15463] "rate"             "strangers"        "eye"             
## [15466] "much"             "surprised"        "see"             
## [15469] "nothing"          "kind"             "ents"            
## [15472] "different"        "one"              "another"         
## [15475] "trees"            "trees"            "different"       
## [15478] "one"              "tree"             "another"         
## [15481] "name"             "quite"            "different"       
## [15484] "growth"           "history"          "different"       
## [15487] "one"              "tree"             "kind"            
## [15490] "another"          "birch"            "beech"           
## [15493] "oak"              "fir"              "older"           
## [15496] "ents"             "bearded"          "gnarled"         
## [15499] "like"             "hale"             "ancient"         
## [15502] "trees"            "though"           "none"            
## [15505] "looked"           "ancient"          "treebeard"       
## [15508] "tall"             "strong"           "ents"            
## [15511] "clean"            "limbed"           "smooth"          
## [15514] "skinned"          "like"             "forest"          
## [15517] "trees"            "prime"            "young"           
## [15520] "ents"             "saplings"         "altogether"      
## [15523] "two"              "dozen"            "standing"        
## [15526] "wide"             "grassy"           "floor"           
## [15529] "dingle"           "many"             "marching"        
## [15532] "first"            "merry"            "pippin"          
## [15535] "struck"           "chiefly"          "variety"         
## [15538] "saw"              "many"             "shapes"          
## [15541] "colours"          "differences"      "girth"           
## [15544] "height"           "length"           "leg"             
## [15547] "arm"              "number"           "toes"            
## [15550] "fingers"          "anything"         "three"           
## [15553] "nine"             "seemed"           "less"            
## [15556] "related"          "treebeard"        "reminded"        
## [15559] "beech"            "trees"            "oaks"            
## [15562] "kinds"            "recalled"         "chestnut"        
## [15565] "brown"            "skinned"          "ents"            
## [15568] "large"            "splayfingered"    "hands"           
## [15571] "short"            "thick"            "legs"            
## [15574] "recalled"         "ash"              "tall"            
## [15577] "straight"         "grey"             "ents"            
## [15580] "many"             "fingered"         "hands"           
## [15583] "long"             "legs"             "fir"             
## [15586] "tallest"          "ents"             "others"          
## [15589] "birch"            "rowan"            "linden"          
## [15592] "ents"             "gathered"         "round"           
## [15595] "treebeard"        "bowing"           "heads"           
## [15598] "slightly"         "murmuring"        "slow"            
## [15601] "musical"          "voices"           "looking"         
## [15604] "long"             "intently"         "strangers"       
## [15607] "hobbits"          "saw"              "kindred"         
## [15610] "eyes"             "old"              "deep"            
## [15613] "treebeards"       "slow"             "steady"          
## [15616] "thoughtful"       "expression"       "green"           
## [15619] "flicker"          "soon"             "whole"           
## [15622] "company"          "assembled"        "standing"        
## [15625] "wide"             "circle"           "round"           
## [15628] "treebeard"        "curious"          "unintelligible"  
## [15631] "conversation"     "began"            "ents"            
## [15634] "began"            "murmur"           "slowly"          
## [15637] "first"            "one"              "joined"          
## [15640] "another"          "chanting"         "together"        
## [15643] "long"             "rising"           "falling"         
## [15646] "rhythm"           "now"              "louder"          
## [15649] "one"              "side"             "ring"            
## [15652] "now"              "dying"            "away"            
## [15655] "rising"           "great"            "boom"            
## [15658] "side"             "though"           "catch"           
## [15661] "understand"       "words"            "supposed"        
## [15664] "language"         "entish"           "pippin"          
## [15667] "found"            "sound"            "pleasant"        
## [15670] "listen"           "first"            "gradually"       
## [15673] "attention"        "wavered"          "long"            
## [15676] "time"             "chant"            "showed"          
## [15679] "signs"            "slackening"       "found"           
## [15682] "wondering"        "since"            "entish"          
## [15685] "unhasty"          "language"         "whether"         
## [15688] "yet"              "got"              "good"            
## [15691] "morning"          "treebeard"        "call"            
## [15694] "roll"             "many"             "days"            
## [15697] "take"             "sing"             "names"           
## [15700] "wonder"           "entish"           "yes"             
## [15703] "thought"          "yawned"           "treebeard"       
## [15706] "immediately"      "aware"            "hm"              
## [15709] "ha"               "hey"              "pippin"          
## [15712] "said"             "ents"             "stopped"         
## [15715] "chant"            "hasty"            "folk"            
## [15718] "forgetting"       "anyway"           "wearisome"       
## [15721] "listening"        "speech"           "understand"      
## [15724] "may"              "get"              "now"             
## [15727] "told"             "names"            "entmoot"         
## [15730] "seen"             "agreed"           "orcs"            
## [15733] "new"              "line"             "shall"           
## [15736] "put"              "old"              "lists"           
## [15739] "got"              "yet"              "quick"           
## [15742] "work"             "entmoot"          "merry"           
## [15745] "can"              "stroll"           "dingle"          
## [15748] "like"             "well"             "good"            
## [15751] "water"            "need"             "refreshing"      
## [15754] "away"             "yonder"           "north"           
## [15757] "bank"             "still"            "words"           
## [15760] "speak"            "moot"             "really"          
## [15763] "begins"           "come"             "see"             
## [15766] "tell"             "things"           "going"           
## [15769] "put"              "hobbits"          "walked"          
## [15772] "away"             "bowed"            "low"             
## [15775] "feat"             "seemed"           "amuse"           
## [15778] "ents"             "much"             "judge"           
## [15781] "tone"             "murmurs"          "flicker"         
## [15784] "eyes"             "soon"             "turned"          
## [15787] "back"             "business"         "merry"           
## [15790] "pippin"           "climbed"          "path"            
## [15793] "came"             "west"             "looked"          
## [15796] "opening"          "great"            "hedge"           
## [15799] "long"             "tree"             "clad"            
## [15802] "slopes"           "rose"             "lip"             
## [15805] "dingle"           "away"             "beyond"          
## [15808] "fir"              "trees"            "furthest"        
## [15811] "ridge"            "rose"             "sharp"           
## [15814] "white"            "peak"             "high"            
## [15817] "mountain"         "southwards"       "left"            
## [15820] "see"              "forest"           "falling"         
## [15823] "away"             "grey"             "distance"        
## [15826] "far"              "away"             "pale"            
## [15829] "green"            "glimmer"          "merry"           
## [15832] "guessed"          "glimpse"          "plains"          
## [15835] "rohan"            "wonder"           "isengard"        
## [15838] "said"             "pippin"           "dont"            
## [15841] "know"             "quite"            "said"            
## [15844] "merry"            "peak"             "probably"        
## [15847] "methedras"        "far"              "can"             
## [15850] "remember"         "ring"             "isengard"        
## [15853] "lies"             "fork"             "deep"            
## [15856] "cleft"            "end"              "mountains"       
## [15859] "probably"         "behind"           "great"           
## [15862] "ridge"            "seems"            "smoke"           
## [15865] "haze"             "left"             "peak"            
## [15868] "dont"             "think"            "isengard"        
## [15871] "like"             "said"             "pippin"          
## [15874] "wonder"           "ents"             "can"             
## [15877] "anyway"           "said"             "merry"           
## [15880] "isengard"         "sort"             "ring"            
## [15883] "rocks"            "hills"            "think"           
## [15886] "flat"             "space"            "inside"          
## [15889] "island"           "pillar"           "rock"            
## [15892] "middle"           "called"           "orthanc"         
## [15895] "saruman"          "tower"            "gate"            
## [15898] "perhaps"          "one"              "encircling"      
## [15901] "wall"             "believe"          "stream"          
## [15904] "running"          "comes"            "mountains"       
## [15907] "flows"            "across"           "gap"             
## [15910] "rohan"            "seem"             "sort"            
## [15913] "place"            "ents"             "tackle"          
## [15916] "odd"              "feeling"          "ents"            
## [15919] "somehow"          "dont"             "think"           
## [15922] "quite"            "safe"             "well"            
## [15925] "funny"            "seem"             "seem"            
## [15928] "slow"             "queer"            "patient"         
## [15931] "almost"           "sad"              "yet"             
## [15934] "believe"          "roused"           "happened"        
## [15937] "rather"           "side"             "yes"             
## [15940] "said"             "pippin"           "know"            
## [15943] "mean"             "might"            "difference"      
## [15946] "old"              "cow"              "sitting"         
## [15949] "thoughtfully"     "chewing"          "bull"            
## [15952] "charging"         "change"           "might"           
## [15955] "come"             "suddenly"         "wonder"          
## [15958] "treebeard"        "rouse"            "sure"            
## [15961] "means"            "try"              "dont"            
## [15964] "like"             "roused"           "treebeard"       
## [15967] "got"              "roused"           "last"            
## [15970] "night"            "bottled"          "hobbits"         
## [15973] "turned"           "back"             "voices"          
## [15976] "ents"             "still"            "rising"          
## [15979] "falling"          "conclave"         "sun"             
## [15982] "now"              "risen"            "high"            
## [15985] "enough"           "look"             "high"            
## [15988] "hedge"            "gleamed"          "tops"            
## [15991] "birches"          "lit"              "northward"       
## [15994] "side"             "dingle"           "cool"            
## [15997] "yellow"           "light"            "saw"             
## [16000] "little"           "glittering"       "fountain"        
## [16003] "walked"           "along"            "rim"             
## [16006] "great"            "bowl"             "feet"            
## [16009] "evergreens"       "pleasant"         "feel"            
## [16012] "cool"             "grass"            "toes"            
## [16015] "hurry"            "climbed"          "gushing"         
## [16018] "water"            "drank"            "little"          
## [16021] "clean"            "cold"             "sharp"           
## [16024] "draught"          "sat"              "mossy"           
## [16027] "stone"            "watching"         "patches"         
## [16030] "sun"              "grass"            "shadows"         
## [16033] "sailing"          "clouds"           "passing"         
## [16036] "floor"            "dingle"           "murmur"          
## [16039] "ents"             "went"             "seemed"          
## [16042] "strange"          "remote"           "place"           
## [16045] "outside"          "world"            "far"             
## [16048] "everything"       "ever"             "happened"        
## [16051] "great"            "longing"          "came"            
## [16054] "faces"            "voices"           "companions"      
## [16057] "especially"       "frodo"            "sam"             
## [16060] "strider"          "last"             "came"            
## [16063] "pause"            "ent"              "voices"          
## [16066] "looking"          "saw"              "treebeard"       
## [16069] "coming"           "towards"          "another"         
## [16072] "ent"              "side"             "hm"              
## [16075] "hoom"             "said"             "treebeard"       
## [16078] "getting"          "weary"            "feeling"         
## [16081] "impatient"        "hmm"              "eh"              
## [16084] "well"             "afraid"           "must"            
## [16087] "get"              "impatient"        "yet"             
## [16090] "finished"         "first"            "stage"           
## [16093] "now"              "still"            "got"             
## [16096] "explain"          "things"           "live"            
## [16099] "long"             "way"              "far"             
## [16102] "isengard"         "get"              "round"           
## [16105] "moot"             "shall"            "decide"          
## [16108] "however"          "deciding"         "take"            
## [16111] "ents"             "long"             "going"           
## [16114] "facts"            "events"           "make"            
## [16117] "minds"            "still"            "use"             
## [16120] "denying"          "shall"            "long"            
## [16123] "time"             "yet"              "couple"          
## [16126] "days"             "likely"           "brought"         
## [16129] "companion"        "ent"              "house"           
## [16132] "nearby"           "bregalad"         "elvish"          
## [16135] "name"             "says"             "already"         
## [16138] "made"             "mind"             "need"            
## [16141] "remain"           "moot"             "hm"              
## [16144] "hm"               "nearest"          "thing"           
## [16147] "among"            "us"               "hasty"           
## [16150] "ent"              "get"              "together"        
## [16153] "good"             "bye"              "treebeard"       
## [16156] "turned"           "left"             "bregalad"        
## [16159] "stood"            "time"             "surveying"       
## [16162] "hobbits"          "solemnly"         "looked"          
## [16165] "wondering"        "show"             "signs"           
## [16168] "hastiness"        "tall"             "seemed"          
## [16171] "one"              "younger"          "ents"            
## [16174] "smooth"           "shining"          "skin"            
## [16177] "arms"             "legs"             "lips"            
## [16180] "ruddy"            "hair"             "grey"            
## [16183] "green"            "bend"             "sway"            
## [16186] "like"             "slender"          "tree"            
## [16189] "wind"             "last"             "spoke"           
## [16192] "voice"            "though"           "resonant"        
## [16195] "higher"           "clearer"          "treebeards"      
## [16198] "ha"               "hmm"              "friends"         
## [16201] "let"              "us"               "go"              
## [16204] "walk"             "said"             "bregalad"        
## [16207] "quickbeam"        "language"         "nickname"        
## [16210] "course"           "called"           "ever"            
## [16213] "since"            "said"             "yes"             
## [16216] "elder"            "ent"              "finished"        
## [16219] "question"         "also"             "drink"           
## [16222] "quickly"          "go"               "still"           
## [16225] "wetting"          "beards"           "come"            
## [16228] "reached"          "two"              "shapely"         
## [16231] "arms"             "gave"             "long"            
## [16234] "fingered"         "hand"             "hobbits"         
## [16237] "day"              "walked"           "woods"           
## [16240] "singing"          "laughing"         "quickbeam"       
## [16243] "often"            "laughed"          "laughed"         
## [16246] "sun"              "came"             "behind"          
## [16249] "cloud"            "laughed"          "came"            
## [16252] "upon"             "stream"           "spring"          
## [16255] "stooped"          "splashed"         "feet"            
## [16258] "head"             "water"            "laughed"         
## [16261] "sometimes"        "sound"            "whisper"         
## [16264] "trees"            "whenever"         "saw"             
## [16267] "rowan"            "tree"             "halted"          
## [16270] "arms"             "stretched"        "sang"            
## [16273] "swayed"           "sang"             "nightfall"       
## [16276] "brought"          "ent"              "house"           
## [16279] "nothing"          "mossy"            "stone"           
## [16282] "set"              "upon"             "turves"          
## [16285] "green"            "bank"             "rowan"           
## [16288] "trees"            "grew"             "circle"          
## [16291] "water"            "ent"              "houses"          
## [16294] "spring"           "bubbling"         "bank"            
## [16297] "talked"           "darkness"         "fell"            
## [16300] "forest"           "far"              "away"            
## [16303] "voices"           "entmoot"          "heard"           
## [16306] "still"            "going"            "now"             
## [16309] "seemed"           "deeper"           "less"            
## [16312] "leisurely"        "every"            "now"             
## [16315] "one"              "great"            "voice"           
## [16318] "rise"             "high"             "quickening"      
## [16321] "music"            "others"           "died"            
## [16324] "away"             "beside"           "bregalad"        
## [16327] "spoke"            "gently"           "tongue"          
## [16330] "almost"           "whispering"       "learned"         
## [16333] "belonged"         "skinbarks"        "people"          
## [16336] "country"          "lived"            "ravaged"         
## [16339] "seemed"           "hobbits"          "quite"           
## [16342] "enough"           "explain"          "hastiness"       
## [16345] "least"            "matter"           "orcs"            
## [16348] "rowan"            "trees"            "home"            
## [16351] "said"             "bregalad"         "softly"          
## [16354] "sadly"            "rowan"            "trees"           
## [16357] "took"             "root"             "enting"          
## [16360] "many"             "many"             "years"           
## [16363] "ago"              "quiet"            "world"           
## [16366] "oldest"           "planted"          "ents"            
## [16369] "try"              "please"           "entwives"        
## [16372] "looked"           "smiled"           "said"            
## [16375] "knew"             "whiter"           "blossom"         
## [16378] "richer"           "fruit"            "growing"         
## [16381] "yet"              "trees"            "race"            
## [16384] "people"           "rose"             "beautiful"       
## [16387] "trees"            "grew"             "grew"            
## [16390] "till"             "shadow"           "like"            
## [16393] "green"            "hall"             "red"             
## [16396] "berries"          "autumn"           "burden"          
## [16399] "beauty"           "wonder"           "birds"           
## [16402] "used"             "flock"            "like"            
## [16405] "birds"            "even"             "chatter"         
## [16408] "rowan"            "enough"           "spare"           
## [16411] "birds"            "became"           "unfriendly"      
## [16414] "greedy"           "tore"             "trees"           
## [16417] "threw"            "fruit"            "eat"             
## [16420] "orcs"             "came"             "axes"            
## [16423] "cut"              "trees"            "came"            
## [16426] "called"           "long"             "names"           
## [16429] "quiver"           "hear"             "answer"          
## [16432] "lay"              "dead"             "orofarnë"        
## [16435] "lassemista"       "carnimírië"       "rowan"           
## [16438] "fair"             "upon"             "hair"            
## [16441] "white"            "blossom"          "lay"             
## [16444] "rowan"            "mine"             "saw"             
## [16447] "shine"            "upon"             "summers"         
## [16450] "day"              "rind"             "bright"          
## [16453] "leaves"           "light"            "voice"           
## [16456] "cool"             "soft"             "upon"            
## [16459] "head"             "golden"           "red"             
## [16462] "crown"            "bore"             "aloft"           
## [16465] "rowan"            "dead"             "upon"            
## [16468] "head"             "hair"             "dry"             
## [16471] "grey"             "crown"            "spilled"         
## [16474] "voice"            "stilled"          "ever"            
## [16477] "day"              "orofarnë"         "lassemista"      
## [16480] "carnimírië"       "hobbits"          "fell"            
## [16483] "asleep"           "sound"            "soft"            
## [16486] "singing"          "bregalad"         "seemed"          
## [16489] "lament"           "many"             "tongues"         
## [16492] "fall"             "trees"            "loved"           
## [16495] "next"             "day"              "spent"           
## [16498] "also"             "company"          "go"              
## [16501] "far"              "house"            "time"            
## [16504] "sat"              "silent"           "shelter"         
## [16507] "bank"             "wind"             "colder"          
## [16510] "clouds"           "closer"           "greyer"          
## [16513] "little"           "sunshine"         "distance"        
## [16516] "voices"           "ents"             "moot"            
## [16519] "still"            "rose"             "fell"            
## [16522] "sometimes"        "loud"             "strong"          
## [16525] "sometimes"        "low"              "sad"             
## [16528] "sometimes"        "quickening"       "sometimes"       
## [16531] "slow"             "solemn"           "dirge"           
## [16534] "second"           "night"            "came"            
## [16537] "still"            "ents"             "held"            
## [16540] "conclave"         "hurrying"         "clouds"          
## [16543] "fitful"           "stars"            "third"           
## [16546] "day"              "broke"            "bleak"           
## [16549] "windy"            "sunrise"          "ents"            
## [16552] "voices"           "rose"             "great"           
## [16555] "clamour"          "died"             "morning"         
## [16558] "wore"             "wind"             "fell"            
## [16561] "air"              "grew"             "heavy"           
## [16564] "expectancy"       "hobbits"          "see"             
## [16567] "bregalad"         "now"              "listening"       
## [16570] "intently"         "although"         "dell"            
## [16573] "ent"              "house"            "sound"           
## [16576] "moot"             "faint"            "afternoon"       
## [16579] "came"             "sun"              "going"           
## [16582] "west"             "towards"          "mountains"       
## [16585] "sent"             "long"             "yellow"          
## [16588] "beams"            "cracks"           "fissures"        
## [16591] "clouds"           "suddenly"         "aware"           
## [16594] "everything"       "quiet"            "whole"           
## [16597] "forest"           "stood"            "listening"       
## [16600] "silence"          "course"           "ent"             
## [16603] "voices"           "stopped"          "mean"            
## [16606] "bregalad"         "standing"         "erect"           
## [16609] "tense"            "looking"          "back"            
## [16612] "northwards"       "towards"          "derndingle"      
## [16615] "crash"            "came"             "great"           
## [16618] "ringing"          "shout"            "ra"              
## [16621] "hoom"             "rah"              "trees"           
## [16624] "quivered"         "bent"             "gust"            
## [16627] "struck"           "another"          "pause"           
## [16630] "marching"         "music"            "began"           
## [16633] "like"             "solemn"           "drums"           
## [16636] "rolling"          "beats"            "booms"           
## [16639] "welled"           "voices"           "singing"         
## [16642] "high"             "strong"           "come"            
## [16645] "come"             "roll"             "drum"            
## [16648] "ta"               "runda"            "runda"           
## [16651] "runda"            "rom"              "ents"            
## [16654] "coming"           "ever"             "nearer"          
## [16657] "louder"           "rose"             "song"            
## [16660] "come"             "come"             "horn"            
## [16663] "drum"             "ta"               "rûna"            
## [16666] "rûna"             "rûna"             "rom"             
## [16669] "bregalad"         "picked"           "hobbits"         
## [16672] "strode"           "house"            "long"            
## [16675] "saw"              "marching"         "line"            
## [16678] "approaching"      "ents"             "swinging"        
## [16681] "along"            "great"            "strides"         
## [16684] "slope"            "towards"          "treebeard"       
## [16687] "head"             "fifty"            "followers"       
## [16690] "behind"           "two"              "abreast"         
## [16693] "keeping"          "step"             "feet"            
## [16696] "beating"          "time"             "hands"           
## [16699] "upon"             "flanks"           "drew"            
## [16702] "near"             "flash"            "flicker"         
## [16705] "eyes"             "seen"             "hoom"            
## [16708] "hom"              "come"             "boom"            
## [16711] "come"             "last"             "called"          
## [16714] "treebeard"        "caught"           "sight"           
## [16717] "bregalad"         "hobbits"          "come"            
## [16720] "join"             "moot"             "isengard"        
## [16723] "isengard"         "ents"             "cried"           
## [16726] "many"             "voices"           "isengard"        
## [16729] "isengard"         "though"           "isengard"        
## [16732] "ringed"           "barred"           "doors"           
## [16735] "stone"            "though"           "isengard"        
## [16738] "strong"           "hard"             "cold"            
## [16741] "stone"            "bare"             "bone"            
## [16744] "go"               "go"               "go"              
## [16747] "war"              "hew"              "stone"           
## [16750] "break"            "door"             "bole"            
## [16753] "bough"            "burning"          "now"             
## [16756] "furnace"          "roars"            "go"              
## [16759] "war"              "land"             "gloom"           
## [16762] "tramp"            "doom"             "roll"            
## [16765] "drum"             "come"             "come"            
## [16768] "isengard"         "doom"             "come"            
## [16771] "doom"             "come"             "doom"            
## [16774] "come"             "sang"             "marched"         
## [16777] "southwards"       "bregalad"         "eyes"            
## [16780] "shining"          "swung"            "line"            
## [16783] "beside"           "treebeard"        "old"             
## [16786] "ent"              "now"              "took"            
## [16789] "hobbits"          "back"             "set"             
## [16792] "shoulders"        "rode"             "proudly"         
## [16795] "head"             "singing"          "company"         
## [16798] "beating"          "hearts"           "heads"           
## [16801] "held"             "high"             "though"          
## [16804] "expected"         "something"        "happen"          
## [16807] "eventually"       "amazed"           "change"          
## [16810] "come"             "ents"             "seemed"          
## [16813] "now"              "sudden"           "bursting"        
## [16816] "flood"            "long"             "held"            
## [16819] "back"             "dike"             "ents"            
## [16822] "made"             "minds"            "rather"          
## [16825] "quickly"          "didnt"            "pippin"          
## [16828] "ventured"         "say"              "time"            
## [16831] "moment"           "singing"          "paused"          
## [16834] "beating"          "hands"            "feet"            
## [16837] "heard"            "quickly"          "said"            
## [16840] "treebeard"        "hoom"             "yes"             
## [16843] "indeed"           "quicker"          "expected"        
## [16846] "indeed"           "seen"             "roused"          
## [16849] "like"             "many"             "age"             
## [16852] "ents"             "like"             "roused"          
## [16855] "never"            "roused"           "unless"          
## [16858] "clear"            "us"               "trees"           
## [16861] "lives"            "great"            "danger"          
## [16864] "happened"         "forest"           "since"           
## [16867] "wars"             "sauron"           "men"             
## [16870] "sea"              "orc"              "work"            
## [16873] "wanton"           "hewing"           "rárum"           
## [16876] "without"          "even"             "bad"             
## [16879] "excuse"           "feeding"          "fires"           
## [16882] "angered"          "us"               "treachery"       
## [16885] "neighbour"        "helped"           "us"              
## [16888] "wizards"          "know"             "better"          
## [16891] "know"             "better"           "curse"           
## [16894] "elvish"           "entish"           "tongues"         
## [16897] "men"              "bad"              "enough"          
## [16900] "treachery"        "saruman"          "really"          
## [16903] "break"            "doors"            "isengard"        
## [16906] "asked"            "merry"            "ho"              
## [16909] "hm"               "well"             "know"            
## [16912] "know"             "perhaps"          "strong"          
## [16915] "maybe"            "heard"            "trolls"          
## [16918] "mighty"           "strong"           "trolls"          
## [16921] "counterfeits"     "made"             "enemy"           
## [16924] "great"            "darkness"         "mockery"         
## [16927] "ents"             "orcs"             "elves"           
## [16930] "stronger"         "trolls"           "made"            
## [16933] "bones"            "earth"            "can"             
## [16936] "split"            "stone"            "like"            
## [16939] "roots"            "trees"            "quicker"         
## [16942] "far"              "quicker"          "minds"           
## [16945] "roused"           "hewn"             "destroyed"       
## [16948] "fire"             "blast"            "sorcery"         
## [16951] "split"            "isengard"         "splinters"       
## [16954] "crack"            "walls"            "rubble"          
## [16957] "saruman"          "try"              "stop"            
## [16960] "wont"             "hm"               "ah"              
## [16963] "yes"              "forgotten"        "indeed"          
## [16966] "thought"          "long"             "see"             
## [16969] "many"             "ents"             "younger"         
## [16972] "many"             "lives"            "trees"           
## [16975] "roused"           "now"              "mind"            
## [16978] "one"              "thing"            "breaking"        
## [16981] "isengard"         "start"            "thinking"        
## [16984] "long"             "cool"             "little"          
## [16987] "take"             "evening"          "drink"           
## [16990] "thirst"           "shall"            "let"             
## [16993] "march"            "now"              "sing"            
## [16996] "long"             "way"              "go"              
## [16999] "time"             "ahead"            "thought"         
## [17002] "something"        "started"          "treebeard"       
## [17005] "marched"          "singing"          "others"          
## [17008] "time"             "voice"            "died"            
## [17011] "murmur"           "fell"             "silent"          
## [17014] "pippin"           "see"              "old"             
## [17017] "brow"             "wrinkled"         "knotted"         
## [17020] "last"             "looked"           "pippin"          
## [17023] "see"              "sad"              "look"            
## [17026] "eyes"             "sad"              "unhappy"         
## [17029] "light"            "green"            "flame"           
## [17032] "sunk"             "deeper"           "dark"            
## [17035] "wells"            "thought"          "course"          
## [17038] "likely"           "enough"           "friends"         
## [17041] "said"             "slowly"           "likely"          
## [17044] "enough"           "going"            "doom"            
## [17047] "last"             "march"            "ents"            
## [17050] "stayed"           "home"             "nothing"         
## [17053] "doom"             "find"             "us"              
## [17056] "anyway"           "sooner"           "later"           
## [17059] "thought"          "long"             "growing"         
## [17062] "hearts"           "marching"         "now"             
## [17065] "hasty"            "resolve"          "now"             
## [17068] "least"            "last"             "march"           
## [17071] "ents"             "may"              "worth"           
## [17074] "song"             "aye"              "sighed"          
## [17077] "may"              "help"             "peoples"         
## [17080] "pass"             "away"             "still"           
## [17083] "liked"            "see"              "songs"           
## [17086] "come"             "true"             "entwives"        
## [17089] "dearly"           "liked"            "see"             
## [17092] "fimbrethil"       "friends"          "songs"           
## [17095] "like"             "trees"            "bear"            
## [17098] "fruit"            "time"             "way"             
## [17101] "sometimes"        "withered"         "untimely"        
## [17104] "ents"             "went"             "striding"        
## [17107] "great"            "pace"             "descended"       
## [17110] "long"             "fold"             "land"            
## [17113] "fell"             "away"             "southward"       
## [17116] "now"              "began"            "climb"           
## [17119] "high"             "western"          "ridge"           
## [17122] "woods"            "fell"             "away"            
## [17125] "came"             "scattered"        "groups"          
## [17128] "birch"            "bare"             "slopes"          
## [17131] "gaunt"            "pine"             "trees"           
## [17134] "grew"             "sun"              "sank"            
## [17137] "behind"           "dark"             "hill"            
## [17140] "back"             "front"            "grey"            
## [17143] "dusk"             "fell"             "pippin"          
## [17146] "looked"           "behind"           "number"          
## [17149] "ents"             "grown"            "happening"       
## [17152] "dim"              "bare"             "slopes"          
## [17155] "crossed"          "lie"              "thought"         
## [17158] "saw"              "groves"           "trees"           
## [17161] "moving"           "trees"            "fangorn"         
## [17164] "awake"            "forest"           "rising"          
## [17167] "marching"         "hills"            "war"             
## [17170] "rubbed"           "eyes"             "wondering"       
## [17173] "sleep"            "shadow"           "deceived"        
## [17176] "great"            "grey"             "shapes"          
## [17179] "moved"            "steadily"         "onward"          
## [17182] "noise"            "like"             "wind"            
## [17185] "many"             "branches"         "ents"            
## [17188] "drawing"          "near"             "crest"           
## [17191] "ridge"            "now"              "song"            
## [17194] "ceased"           "night"            "fell"            
## [17197] "silence"          "nothing"          "heard"           
## [17200] "save"             "faint"            "quiver"          
## [17203] "earth"            "beneath"          "feet"            
## [17206] "ents"             "rustle"           "shade"           
## [17209] "whisper"          "many"             "drifting"        
## [17212] "leaves"           "last"             "stood"           
## [17215] "upon"             "summit"           "looked"          
## [17218] "dark"             "pit"              "great"           
## [17221] "cleft"            "end"              "mountains"       
## [17224] "nan"              "curunír"          "valley"          
## [17227] "saruman"          "night"            "lies"            
## [17230] "isengard"         "said"             "treebeard"       
## [17233] "chapter"          "white"            "rider"           
## [17236] "bones"            "chilled"          "said"            
## [17239] "gimli"            "flapping"         "arms"            
## [17242] "stamping"         "feet"             "day"             
## [17245] "come"             "last"             "dawn"            
## [17248] "companions"       "made"             "breakfast"       
## [17251] "now"              "growing"          "light"           
## [17254] "getting"          "ready"            "search"          
## [17257] "ground"           "signs"            "hobbits"         
## [17260] "forget"           "old"              "man"             
## [17263] "said"             "gimli"            "happier"         
## [17266] "see"              "print"            "boot"            
## [17269] "make"             "happy"            "said"            
## [17272] "legolas"          "old"              "man"             
## [17275] "feet"             "leave"            "marks"           
## [17278] "might"            "seemed"           "answered"        
## [17281] "dwarf"            "maybe"            "said"            
## [17284] "elf"              "heavy"            "boot"            
## [17287] "might"            "leave"            "print"           
## [17290] "grass"            "deep"             "springy"         
## [17293] "baffle"           "ranger"           "said"            
## [17296] "gimli"            "bent"             "blade"           
## [17299] "enough"           "aragorn"          "read"            
## [17302] "expect"           "find"             "traces"          
## [17305] "evil"             "phantom"          "saruman"         
## [17308] "saw"              "last"             "night"           
## [17311] "sure"             "even"             "light"           
## [17314] "morning"          "eyes"             "looking"         
## [17317] "us"               "fangorn"          "even"            
## [17320] "now"              "maybe"            "likely"          
## [17323] "enough"           "said"             "aragorn"         
## [17326] "yet"              "sure"             "thinking"        
## [17329] "horses"           "said"             "last"            
## [17332] "night"            "gimli"            "scared"          
## [17335] "away"             "think"            "hear"            
## [17338] "legolas"          "sound"            "like"            
## [17341] "beasts"           "terror"           "said"            
## [17344] "legolas"          "heard"            "clearly"         
## [17347] "darkness"         "fear"             "guessed"         
## [17350] "beasts"           "wild"             "sudden"          
## [17353] "gladness"         "spoke"            "horses"          
## [17356] "meet"             "friend"           "long"            
## [17359] "missed"           "thought"          "said"            
## [17362] "aragorn"          "read"             "riddle"          
## [17365] "unless"           "return"           "come"            
## [17368] "light"            "growing"          "fast"            
## [17371] "let"              "us"               "look"            
## [17374] "first"            "guess"            "later"           
## [17377] "begin"            "near"             "camping"         
## [17380] "ground"           "searching"        "carefully"       
## [17383] "working"          "slope"            "towards"         
## [17386] "forest"           "find"             "hobbits"         
## [17389] "errand"           "whatever"         "may"             
## [17392] "think"            "visitor"          "night"           
## [17395] "escaped"          "chance"           "must"            
## [17398] "hidden"           "trees"            "seen"            
## [17401] "find"             "nothing"          "eaves"           
## [17404] "wood"             "make"             "last"            
## [17407] "search"           "upon"             "battle"          
## [17410] "field"            "among"            "ashes"           
## [17413] "little"           "hope"             "horsemen"        
## [17416] "rohan"            "work"             "well"            
## [17419] "time"             "companions"       "crawled"         
## [17422] "groped"           "upon"             "ground"          
## [17425] "tree"             "stood"            "mournfully"      
## [17428] "dry"              "leaves"           "now"             
## [17431] "hanging"          "limp"             "rattling"        
## [17434] "chill"            "easterly"         "wind"            
## [17437] "aragorn"          "moved"            "slowly"          
## [17440] "away"             "came"             "ashes"           
## [17443] "watch"            "fire"             "near"            
## [17446] "river"            "bank"             "began"           
## [17449] "retrace"          "ground"           "back"            
## [17452] "towards"          "knoll"            "battle"          
## [17455] "fought"           "suddenly"         "stooped"         
## [17458] "bent"             "low"              "face"            
## [17461] "almost"           "grass"            "called"          
## [17464] "others"           "came"             "running"         
## [17467] "last"             "find"             "news"            
## [17470] "said"             "aragorn"          "lifted"          
## [17473] "broken"           "leaf"             "see"             
## [17476] "large"            "pale"             "leaf"            
## [17479] "golden"           "hue"              "now"             
## [17482] "fading"           "turning"          "brown"           
## [17485] "mallorn"          "leaf"             "lórien"          
## [17488] "small"            "crumbs"           "crumbs"          
## [17491] "grass"            "see"              "pieces"          
## [17494] "cut"              "cord"             "lying"           
## [17497] "nearby"           "knife"            "cut"             
## [17500] "said"             "gimli"            "stooped"         
## [17503] "drew"             "tussock"          "heavy"           
## [17506] "foot"             "trampled"         "short"           
## [17509] "jagged"           "blade"            "haft"            
## [17512] "snapped"          "beside"           "orc"             
## [17515] "weapon"           "said"             "holding"         
## [17518] "gingerly"         "looking"          "disgust"         
## [17521] "carved"           "handle"           "shaped"          
## [17524] "like"             "hideous"          "head"            
## [17527] "squinting"        "eyes"             "leering"         
## [17530] "mouth"            "well"             "strangest"       
## [17533] "riddle"           "yet"              "found"           
## [17536] "exclaimed"        "legolas"          "bound"           
## [17539] "prisoner"         "escapes"          "orcs"            
## [17542] "surrounding"      "horsemen"         "stops"           
## [17545] "still"            "open"             "cuts"            
## [17548] "bonds"            "orc"              "knife"           
## [17551] "legs"             "tied"             "walk"            
## [17554] "arms"             "tied"             "use"             
## [17557] "knife"            "neither"          "tied"            
## [17560] "cut"              "cords"            "pleased"         
## [17563] "skill"            "sat"              "quietly"         
## [17566] "ate"              "waybread"         "least"           
## [17569] "enough"           "show"             "hobbit"          
## [17572] "without"          "mallorn"          "leaf"            
## [17575] "suppose"          "turned"           "arms"            
## [17578] "wings"            "flew"             "away"            
## [17581] "singing"          "trees"            "easy"            
## [17584] "find"             "need"             "wings"           
## [17587] "sorcery"          "right"            "enough"          
## [17590] "said"             "gimli"            "old"             
## [17593] "man"              "say"              "aragorn"         
## [17596] "reading"          "legolas"          "can"             
## [17599] "better"           "maybe"            "said"            
## [17602] "aragorn"          "smiling"          "signs"           
## [17605] "near"             "hand"             "considered"      
## [17608] "agree"            "prisoner"         "hobbit"          
## [17611] "must"             "either"           "legs"            
## [17614] "hands"            "free"             "came"            
## [17617] "guess"            "hands"            "riddle"          
## [17620] "becomes"          "easier"           "also"            
## [17623] "read"             "marks"            "carried"         
## [17626] "point"            "orc"              "blood"           
## [17629] "spilled"          "paces"            "away"            
## [17632] "orc"              "blood"            "deep"            
## [17635] "prints"           "hoofs"            "spot"            
## [17638] "signs"            "heavy"            "thing"           
## [17641] "dragged"          "away"             "orc"             
## [17644] "slain"            "horsemen"         "later"           
## [17647] "body"             "hauled"           "fire"            
## [17650] "hobbit"           "seen"             "open"            
## [17653] "night"            "still"            "elven"           
## [17656] "cloak"            "exhausted"        "hungry"          
## [17659] "wondered"         "cut"              "bonds"           
## [17662] "knife"            "fallen"           "enemy"           
## [17665] "rested"           "ate"              "little"          
## [17668] "crept"            "away"             "comfort"         
## [17671] "know"             "lembas"           "pocket"          
## [17674] "even"             "though"           "ran"             
## [17677] "away"             "without"          "gear"            
## [17680] "pack"             "perhaps"          "like"            
## [17683] "hobbit"           "say"              "though"          
## [17686] "hope"             "guess"            "merry"           
## [17689] "pippin"           "together"         "however"         
## [17692] "nothing"          "show"             "certain"         
## [17695] "suppose"          "either"           "friends"         
## [17698] "came"             "hand"             "free"            
## [17701] "asked"            "gimli"            "know"            
## [17704] "happened"         "answered"         "aragorn"         
## [17707] "know"             "orc"              "carrying"        
## [17710] "away"             "help"             "escape"          
## [17713] "may"              "sure"             "nay"             
## [17716] "rather"           "think"            "now"             
## [17719] "begin"            "understand"       "matter"          
## [17722] "puzzled"          "beginning"        "boromir"         
## [17725] "fallen"           "orcs"             "content"         
## [17728] "capture"          "merry"            "pippin"          
## [17731] "seek"             "rest"             "us"              
## [17734] "attack"           "camp"             "instead"         
## [17737] "went"             "speed"            "towards"         
## [17740] "isengard"         "suppose"          "captured"        
## [17743] "ring"             "bearer"           "faithful"        
## [17746] "comrade"          "think"            "masters"         
## [17749] "dare"             "give"             "plain"           
## [17752] "orders"           "orcs"             "even"            
## [17755] "knew"             "much"             "speak"           
## [17758] "openly"           "ring"             "trusty"          
## [17761] "servants"         "think"            "orcs"            
## [17764] "commanded"        "capture"          "hobbits"         
## [17767] "alive"            "costs"            "attempt"         
## [17770] "made"             "slip"             "precious"        
## [17773] "prisoners"        "battle"           "treachery"       
## [17776] "perhaps"          "likely"           "enough"          
## [17779] "folk"             "large"            "bold"            
## [17782] "orc"              "may"              "trying"          
## [17785] "escape"           "prize"            "alone"           
## [17788] "ends"             "tale"             "others"          
## [17791] "might"            "devised"          "may"             
## [17794] "count"            "case"             "one"             
## [17797] "least"            "friends"          "escaped"         
## [17800] "task"             "find"             "help"            
## [17803] "return"           "rohan"            "must"            
## [17806] "daunted"          "fangorn"          "since"           
## [17809] "need"             "drove"            "dark"            
## [17812] "place"            "know"             "daunts"          
## [17815] "fangorn"          "thought"          "long"            
## [17818] "road"             "rohan"            "foot"            
## [17821] "said"             "gimli"            "let"             
## [17824] "us"               "go"               "forest"          
## [17827] "said"             "aragorn"          "long"            
## [17830] "aragorn"          "found"            "fresh"           
## [17833] "signs"            "one"              "point"           
## [17836] "near"             "bank"             "entwash"         
## [17839] "came"             "upon"             "footprints"      
## [17842] "hobbit"           "prints"           "light"           
## [17845] "much"             "made"             "beneath"         
## [17848] "bole"             "great"            "tree"            
## [17851] "edge"             "wood"             "prints"          
## [17854] "discovered"       "earth"            "bare"            
## [17857] "dry"              "reveal"           "much"            
## [17860] "one"              "hobbit"           "least"           
## [17863] "stood"            "looked"           "back"            
## [17866] "turned"           "away"             "forest"          
## [17869] "said"             "aragorn"          "must"            
## [17872] "go"               "said"             "gimli"           
## [17875] "like"             "look"             "fangorn"         
## [17878] "warned"           "wish"             "chase"           
## [17881] "led"              "anywhere"         "else"            
## [17884] "think"            "wood"             "feels"           
## [17887] "evil"             "whatever"         "tales"           
## [17890] "may"              "say"              "said"            
## [17893] "legolas"          "stood"            "eaves"           
## [17896] "forest"           "stooping"         "forward"         
## [17899] "listening"        "peering"          "wide"            
## [17902] "eyes"             "shadows"          "evil"            
## [17905] "evil"             "far"              "away"            
## [17908] "catch"            "faintest"         "echoes"          
## [17911] "dark"             "places"           "hearts"          
## [17914] "trees"            "black"            "malice"          
## [17917] "near"             "us"               "watchfulness"    
## [17920] "anger"            "well"             "cause"           
## [17923] "angry"            "said"             "gimli"           
## [17926] "done"             "harm"             "just"            
## [17929] "well"             "said"             "legolas"         
## [17932] "nonetheless"      "suffered"         "harm"            
## [17935] "something"        "happening"        "inside"          
## [17938] "going"            "happen"           "feel"            
## [17941] "tenseness"        "takes"            "breath"          
## [17944] "feel"             "air"              "stuffy"          
## [17947] "said"             "dwarf"            "wood"            
## [17950] "lighter"          "mirkwood"         "musty"           
## [17953] "shabby"           "old"              "old"             
## [17956] "said"             "elf"              "old"             
## [17959] "almost"           "feel"             "young"           
## [17962] "felt"             "since"            "journeyed"       
## [17965] "children"         "old"              "full"            
## [17968] "memory"           "happy"            "come"            
## [17971] "days"             "peace"            "dare"            
## [17974] "say"              "snorted"          "gimli"           
## [17977] "wood"             "elf"              "anyway"          
## [17980] "though"           "elves"            "kind"            
## [17983] "strange"          "folk"             "yet"             
## [17986] "comfort"          "go"               "go"              
## [17989] "keep"             "bow"              "ready"           
## [17992] "hand"             "keep"             "axe"             
## [17995] "loose"            "belt"             "use"             
## [17998] "trees"            "added"            "hastily"         
## [18001] "looking"          "tree"             "stood"           
## [18004] "wish"             "meet"             "old"             
## [18007] "man"              "unawares"         "without"         
## [18010] "argument"         "ready"            "hand"            
## [18013] "let"              "us"               "go"              
## [18016] "three"            "hunters"          "plunged"         
## [18019] "forest"           "fangorn"          "legolas"         
## [18022] "gimli"            "left"             "tracking"        
## [18025] "aragorn"          "little"           "see"             
## [18028] "floor"            "forest"           "dry"             
## [18031] "covered"          "drift"            "leaves"          
## [18034] "guessing"         "fugitives"        "stay"            
## [18037] "near"             "water"            "returned"        
## [18040] "often"            "banks"            "stream"          
## [18043] "came"             "upon"             "place"           
## [18046] "merry"            "pippin"           "drunk"           
## [18049] "bathed"           "feet"             "plain"           
## [18052] "see"              "footprints"       "two"             
## [18055] "hobbits"          "one"              "somewhat"        
## [18058] "smaller"          "good"             "tidings"         
## [18061] "said"             "aragorn"          "yet"             
## [18064] "marks"            "two"              "days"            
## [18067] "old"              "seems"            "point"           
## [18070] "hobbits"          "left"             "water"           
## [18073] "side"             "shall"            "now"             
## [18076] "said"             "gimli"            "pursue"          
## [18079] "whole"            "fastness"         "fangorn"         
## [18082] "come"             "ill"              "supplied"        
## [18085] "find"             "soon"             "shall"           
## [18088] "use"              "except"           "sit"             
## [18091] "beside"           "show"             "friendship"      
## [18094] "starving"         "together"         "indeed"          
## [18097] "can"              "must"             "said"            
## [18100] "aragorn"          "let"              "us"              
## [18103] "go"               "came"             "length"          
## [18106] "steep"            "abrupt"           "end"             
## [18109] "treebeards"       "hill"             "looked"          
## [18112] "rock"             "wall"             "rough"           
## [18115] "steps"            "leading"          "high"            
## [18118] "shelf"            "gleams"           "sun"             
## [18121] "striking"         "hurrying"         "clouds"          
## [18124] "forest"           "now"              "looked"          
## [18127] "less"             "grey"             "drear"           
## [18130] "let"              "us"               "go"              
## [18133] "look"             "us"               "said"            
## [18136] "legolas"          "feel"             "breath"          
## [18139] "short"            "like"             "taste"           
## [18142] "freer"            "air"              "companions"      
## [18145] "climbed"          "aragorn"          "came"            
## [18148] "last"             "moving"           "slowly"          
## [18151] "scanning"         "steps"            "ledges"          
## [18154] "closely"          "almost"           "sure"            
## [18157] "hobbits"          "said"             "marks"           
## [18160] "strange"          "marks"            "understand"      
## [18163] "wonder"           "can"              "see"             
## [18166] "anything"         "ledge"            "help"            
## [18169] "us"               "guess"            "way"             
## [18172] "went"             "next"             "stood"           
## [18175] "looked"           "saw"              "nothing"         
## [18178] "use"              "shelf"            "faced"           
## [18181] "southward"        "eastward"         "east"            
## [18184] "view"             "open"             "see"             
## [18187] "heads"            "trees"            "descending"      
## [18190] "ranks"            "towards"          "plain"           
## [18193] "come"             "journeyed"        "long"            
## [18196] "way"              "round"            "said"            
## [18199] "legolas"          "come"             "safe"            
## [18202] "together"         "left"             "great"           
## [18205] "river"            "second"           "third"           
## [18208] "day"              "struck"           "west"            
## [18211] "can"              "foresee"          "whither"         
## [18214] "road"             "lead"             "till"            
## [18217] "come"             "end"              "wish"            
## [18220] "come"             "fangorn"          "said"            
## [18223] "gimli"            "yet"              "nicely"          
## [18226] "caught"           "net"              "said"            
## [18229] "legolas"          "look"             "look"            
## [18232] "said"             "gimli"            "trees"           
## [18235] "elf"              "eyes"             "hush"            
## [18238] "speak"            "softly"           "look"            
## [18241] "said"             "legolas"          "pointing"        
## [18244] "wood"             "back"             "way"             
## [18247] "just"             "come"             "see"             
## [18250] "passing"          "tree"             "tree"            
## [18253] "see"              "see"              "now"             
## [18256] "hissed"           "gimli"            "look"            
## [18259] "aragorn"          "warn"             "old"             
## [18262] "man"              "dirty"            "grey"            
## [18265] "rags"             "see"              "first"           
## [18268] "aragorn"          "looked"           "beheld"          
## [18271] "bent"             "figure"           "moving"          
## [18274] "slowly"           "far"              "away"            
## [18277] "looked"           "like"             "old"             
## [18280] "beggar"           "man"              "walking"         
## [18283] "wearily"          "leaning"          "rough"           
## [18286] "staff"            "head"             "bowed"           
## [18289] "look"             "towards"          "lands"           
## [18292] "greeted"          "kind"             "words"           
## [18295] "now"              "stood"            "silent"          
## [18298] "feeling"          "strange"          "expectancy"      
## [18301] "something"        "approaching"      "held"            
## [18304] "hidden"           "power"            "menace"          
## [18307] "gimli"            "gazed"            "wide"            
## [18310] "eyes"             "step"             "step"            
## [18313] "figure"           "drew"             "nearer"          
## [18316] "suddenly"         "unable"           "contain"         
## [18319] "longer"           "burst"            "bow"             
## [18322] "legolas"          "bend"             "get"             
## [18325] "ready"            "saruman"          "let"             
## [18328] "speak"            "put"              "spell"           
## [18331] "upon"             "us"               "shoot"           
## [18334] "first"            "legolas"          "took"            
## [18337] "bow"              "bent"             "slowly"          
## [18340] "resisted"         "held"             "arrow"           
## [18343] "loosely"          "hand"             "fit"             
## [18346] "string"           "aragorn"          "stood"           
## [18349] "silent"           "face"             "watchful"        
## [18352] "intent"           "waiting"          "matter"          
## [18355] "said"             "gimli"            "hissing"         
## [18358] "whisper"          "legolas"          "right"           
## [18361] "said"             "aragorn"          "quietly"         
## [18364] "may"              "shoot"            "old"             
## [18367] "man"              "unawares"         "unchallenged"    
## [18370] "whatever"         "fear"             "doubt"           
## [18373] "us"               "watch"            "wait"            
## [18376] "moment"           "old"              "man"             
## [18379] "quickened"        "pace"             "came"            
## [18382] "surprising"       "speed"            "foot"            
## [18385] "rock"             "wall"             "suddenly"        
## [18388] "looked"           "stood"            "motionless"      
## [18391] "looking"          "sound"            "see"             
## [18394] "face"             "hooded"           "hood"            
## [18397] "wore"             "wide"             "brimmed"         
## [18400] "hat"              "features"         "shadowed"        
## [18403] "except"           "end"              "nose"            
## [18406] "grey"             "beard"            "yet"             
## [18409] "seemed"           "aragorn"          "caught"          
## [18412] "gleam"            "eyes"             "keen"            
## [18415] "bright"           "within"           "shadow"          
## [18418] "hooded"           "brows"            "last"            
## [18421] "old"              "man"              "broke"           
## [18424] "silence"          "well"             "met"             
## [18427] "indeed"           "friends"          "said"            
## [18430] "soft"             "voice"            "wish"            
## [18433] "speak"            "come"             "shall"           
## [18436] "come"             "without"          "waiting"         
## [18439] "answer"           "began"            "climb"           
## [18442] "now"              "said"             "gimli"           
## [18445] "stop"             "legolas"          "say"             
## [18448] "wished"           "speak"            "said"            
## [18451] "old"              "man"              "put"             
## [18454] "away"             "bow"              "master"          
## [18457] "elf"              "bow"              "arrow"           
## [18460] "fell"             "legolas"          "hands"           
## [18463] "arms"             "hung"             "loose"           
## [18466] "sides"            "master"           "dwarf"           
## [18469] "pray"             "take"             "hand"            
## [18472] "axe"              "haft"             "till"            
## [18475] "need"             "arguments"        "gimli"           
## [18478] "started"          "stood"            "still"           
## [18481] "stone"            "staring"          "old"             
## [18484] "man"              "sprang"           "rough"           
## [18487] "steps"            "nimbly"           "goat"            
## [18490] "weariness"        "seemed"           "left"            
## [18493] "stepped"          "shelf"            "gleam"           
## [18496] "brief"            "certainty"        "quick"           
## [18499] "glint"            "white"            "garment"         
## [18502] "shrouded"         "grey"             "rags"            
## [18505] "instant"          "revealed"         "intake"          
## [18508] "gimlis"           "breath"           "heard"           
## [18511] "loud"             "hiss"             "silence"         
## [18514] "well"             "met"              "say"             
## [18517] "said"             "old"              "man"             
## [18520] "coming"           "towards"          "feet"            
## [18523] "away"             "stood"            "stooping"        
## [18526] "staff"            "head"             "thrust"          
## [18529] "forward"          "peering"          "hood"            
## [18532] "may"              "parts"            "elf"             
## [18535] "man"              "dwarf"            "clad"            
## [18538] "elvish"           "fashion"          "doubt"           
## [18541] "tale"             "worth"            "hearing"         
## [18544] "behind"           "things"           "often"           
## [18547] "seen"             "speak"            "one"             
## [18550] "knows"            "fangorn"          "well"            
## [18553] "said"             "aragorn"          "well"            
## [18556] "said"             "old"              "man"             
## [18559] "study"            "many"             "lives"           
## [18562] "come"             "now"              "might"           
## [18565] "know"             "name"             "hear"            
## [18568] "say"              "us"               "said"            
## [18571] "aragorn"          "morning"          "passes"          
## [18574] "errand"           "wait"             "wished"          
## [18577] "say"              "said"             "may"             
## [18580] "tale"             "can"              "tell"            
## [18583] "name"             "broke"            "laughing"        
## [18586] "long"             "softly"           "aragorn"         
## [18589] "felt"             "shudder"          "run"             
## [18592] "sound"            "strange"          "cold"            
## [18595] "thrill"           "yet"              "fear"            
## [18598] "terror"           "felt"             "rather"          
## [18601] "like"             "sudden"           "bite"            
## [18604] "keen"             "air"              "slap"            
## [18607] "cold"             "rain"             "wakes"           
## [18610] "uneasy"           "sleeper"          "name"            
## [18613] "said"             "old"              "man"             
## [18616] "guessed"          "already"          "heard"           
## [18619] "think"            "yes"              "heard"           
## [18622] "come"             "now"              "tale"            
## [18625] "three"            "companions"       "stood"           
## [18628] "silent"           "made"             "answer"          
## [18631] "begin"            "doubt"            "whether"         
## [18634] "errand"           "fit"              "tell"            
## [18637] "said"             "old"              "man"             
## [18640] "happily"          "know"             "something"       
## [18643] "tracking"         "footsteps"        "two"             
## [18646] "young"            "hobbits"          "believe"         
## [18649] "yes"              "hobbits"          "dont"            
## [18652] "stare"            "never"            "heard"           
## [18655] "strange"          "name"             "well"            
## [18658] "climbed"          "day"              "yesterday"       
## [18661] "met"              "someone"          "expect"          
## [18664] "comfort"          "now"              "like"            
## [18667] "know"             "taken"            "well"            
## [18670] "well"             "maybe"            "can"             
## [18673] "give"             "news"             "standing"        
## [18676] "errand"           "see"              "longer"          
## [18679] "urgent"           "thought"          "let"             
## [18682] "us"               "sit"              "ease"            
## [18685] "old"              "man"              "turned"          
## [18688] "away"             "went"             "towards"         
## [18691] "heap"             "fallen"           "stones"          
## [18694] "rock"             "foot"             "cliff"           
## [18697] "behind"           "immediately"      "spell"           
## [18700] "removed"          "others"           "relaxed"         
## [18703] "stirred"          "gimlis"           "hand"            
## [18706] "went"             "axe"              "haft"            
## [18709] "aragorn"          "drew"             "sword"           
## [18712] "legolas"          "picked"           "bow"             
## [18715] "old"              "man"              "took"            
## [18718] "notice"           "stooped"          "sat"             
## [18721] "low"              "flat"             "stone"           
## [18724] "grey"             "cloak"            "drew"            
## [18727] "apart"            "saw"              "beyond"          
## [18730] "doubt"            "clothed"          "beneath"         
## [18733] "white"            "saruman"          "cried"           
## [18736] "gimli"            "springing"        "towards"         
## [18739] "axe"              "hand"             "speak"           
## [18742] "tell"             "us"               "hidden"          
## [18745] "friends"          "done"             "speak"           
## [18748] "make"             "dint"             "hat"             
## [18751] "even"             "wizard"           "find"            
## [18754] "hard"             "deal"             "old"             
## [18757] "man"              "quick"            "sprang"          
## [18760] "feet"             "leaped"           "top"             
## [18763] "large"            "rock"             "stood"           
## [18766] "grown"            "suddenly"         "tall"            
## [18769] "towering"         "hood"             "grey"            
## [18772] "rags"             "flung"            "away"            
## [18775] "white"            "garments"         "shone"           
## [18778] "lifted"           "staff"            "gimlis"          
## [18781] "axe"              "leaped"           "grasp"           
## [18784] "fell"             "ringing"          "ground"          
## [18787] "sword"            "aragorn"          "stiff"           
## [18790] "motionless"       "hand"             "blazed"          
## [18793] "sudden"           "fire"             "legolas"         
## [18796] "gave"             "great"            "shout"           
## [18799] "shot"             "arrow"            "high"            
## [18802] "air"              "vanished"         "flash"           
## [18805] "flame"            "mithrandir"       "cried"           
## [18808] "mithrandir"       "well"             "met"             
## [18811] "say"              "legolas"          "said"            
## [18814] "old"              "man"              "gazed"           
## [18817] "hair"             "white"            "snow"            
## [18820] "sunshine"         "gleaming"         "white"           
## [18823] "robe"             "eyes"             "deep"            
## [18826] "brows"            "bright"           "piercing"        
## [18829] "rays"             "sun"              "power"           
## [18832] "hand"             "wonder"           "joy"             
## [18835] "fear"             "stood"            "found"           
## [18838] "words"            "say"              "last"            
## [18841] "aragorn"          "stirred"          "gandalf"         
## [18844] "said"             "beyond"           "hope"            
## [18847] "return"           "us"               "need"            
## [18850] "veil"             "sight"            "gandalf"         
## [18853] "gimli"            "said"             "nothing"         
## [18856] "hut"              "sank"             "knees"           
## [18859] "shading"          "eyes"             "gandalf"         
## [18862] "old"              "man"              "repeated"        
## [18865] "recalling"        "old"              "memory"          
## [18868] "long"             "disused"          "word"            
## [18871] "yes"              "name"             "gandalf"         
## [18874] "stepped"          "rock"             "picking"         
## [18877] "grey"             "cloak"            "wrapped"         
## [18880] "seemed"           "sun"              "shining"         
## [18883] "now"              "hid"              "cloud"           
## [18886] "yes"              "may"              "still"           
## [18889] "call"             "gandalf"          "said"            
## [18892] "voice"            "voice"            "old"             
## [18895] "friend"           "guide"            "get"             
## [18898] "good"             "gimli"            "blame"           
## [18901] "harm"             "done"             "indeed"          
## [18904] "friends"          "none"             "weapon"          
## [18907] "hurt"             "merry"            "meet"            
## [18910] "turn"             "tide"             "great"           
## [18913] "storm"            "coming"           "tide"            
## [18916] "turned"           "laid"             "hand"            
## [18919] "gimlis"           "head"             "dwarf"           
## [18922] "looked"           "laughed"          "suddenly"        
## [18925] "gandalf"          "said"             "white"           
## [18928] "yes"              "white"            "now"             
## [18931] "said"             "gandalf"          "indeed"          
## [18934] "saruman"          "one"              "might"           
## [18937] "almost"           "say"              "saruman"         
## [18940] "come"             "now"              "tell"            
## [18943] "passed"           "fire"             "deep"            
## [18946] "water"            "since"            "parted"          
## [18949] "forgotten"        "much"             "thought"         
## [18952] "knew"             "learned"          "much"            
## [18955] "forgotten"        "can"              "see"             
## [18958] "many"             "things"           "far"             
## [18961] "many"             "things"           "close"           
## [18964] "hand"             "see"              "tell"            
## [18967] "wish"             "know"             "said"            
## [18970] "aragorn"          "happened"         "since"           
## [18973] "parted"           "bridge"           "long"            
## [18976] "tale"             "first"            "give"            
## [18979] "us"               "news"             "hobbits"         
## [18982] "find"             "safe"             "find"            
## [18985] "said"             "gandalf"          "darkness"        
## [18988] "valleys"          "emyn"             "muil"            
## [18991] "know"             "captivity"        "eagle"           
## [18994] "told"             "eagle"            "said"            
## [18997] "legolas"          "seen"             "eagle"           
## [19000] "high"             "far"              "last"            
## [19003] "time"             "three"            "days"            
## [19006] "ago"              "emyn"             "muil"            
## [19009] "yes"              "said"             "gandalf"         
## [19012] "gwaihir"          "windlord"         "rescued"         
## [19015] "orthanc"          "sent"             "watch"           
## [19018] "river"            "gather"           "tidings"         
## [19021] "sight"            "keen"             "see"             
## [19024] "passes"           "hill"             "tree"            
## [19027] "things"           "seen"             "others"          
## [19030] "seen"             "ring"             "now"             
## [19033] "passed"           "beyond"           "help"            
## [19036] "help"             "company"          "set"             
## [19039] "rivendell"        "nearly"           "revealed"        
## [19042] "enemy"            "escaped"          "part"            
## [19045] "sat"              "high"             "place"           
## [19048] "strove"           "dark"             "tower"           
## [19051] "shadow"           "passed"           "weary"           
## [19054] "weary"            "walked"           "long"            
## [19057] "dark"             "thought"          "know"            
## [19060] "frodo"            "said"             "gimli"           
## [19063] "things"           "go"               "say"             
## [19066] "saved"            "great"            "peril"           
## [19069] "many"             "lie"              "still"           
## [19072] "resolved"         "go"               "alone"           
## [19075] "mordor"           "set"              "can"             
## [19078] "say"              "alone"            "said"            
## [19081] "legolas"          "think"            "sam"             
## [19084] "went"             "said"             "gandalf"         
## [19087] "gleam"            "eye"              "smile"           
## [19090] "face"             "indeed"           "news"            
## [19093] "yet"              "surprise"         "good"            
## [19096] "good"             "lighten"          "heart"           
## [19099] "must"             "tell"             "now"             
## [19102] "sit"              "tell"             "tale"            
## [19105] "journey"          "companions"       "sat"             
## [19108] "ground"           "feet"             "aragorn"         
## [19111] "took"             "tale"             "long"            
## [19114] "gandalf"          "said"             "nothing"         
## [19117] "asked"            "questions"        "hands"           
## [19120] "spread"           "upon"             "knees"           
## [19123] "eyes"             "closed"           "last"            
## [19126] "aragorn"          "spoke"            "death"           
## [19129] "boromir"          "last"             "journey"         
## [19132] "upon"             "great"            "river"           
## [19135] "old"              "man"              "sighed"          
## [19138] "said"             "know"             "guess"           
## [19141] "aragorn"          "friend"           "said"            
## [19144] "quietly"          "poor"             "boromir"         
## [19147] "see"              "happened"         "sore"            
## [19150] "trial"            "man"              "warrior"         
## [19153] "lord"             "men"              "galadriel"       
## [19156] "told"             "peril"            "escaped"         
## [19159] "end"              "glad"             "vain"            
## [19162] "young"            "hobbits"          "came"            
## [19165] "us"               "boromirs"         "sake"            
## [19168] "part"             "play"             "brought"         
## [19171] "fangorn"          "coming"           "like"            
## [19174] "falling"          "small"            "stones"          
## [19177] "starts"           "avalanche"        "mountains"       
## [19180] "even"             "talk"             "hear"            
## [19183] "first"            "rumblings"        "saruman"         
## [19186] "best"             "caught"           "away"            
## [19189] "home"             "dam"              "bursts"          
## [19192] "one"              "thing"            "changed"         
## [19195] "dear"             "friend"           "said"            
## [19198] "aragorn"          "still"            "speak"           
## [19201] "riddles"          "riddles"          "said"            
## [19204] "gandalf"          "talking"          "aloud"           
## [19207] "habit"            "old"              "choose"          
## [19210] "wisest"           "person"           "present"         
## [19213] "speak"            "long"             "explanations"    
## [19216] "needed"           "young"            "wearying"        
## [19219] "laughed"          "sound"            "now"             
## [19222] "seemed"           "warm"             "kindly"          
## [19225] "gleam"            "sunshine"         "longer"          
## [19228] "young"            "even"             "reckoning"       
## [19231] "men"              "ancient"          "houses"          
## [19234] "said"             "aragorn"          "open"            
## [19237] "mind"             "clearly"          "shall"           
## [19240] "say"              "said"             "gandalf"         
## [19243] "paused"           "thought"          "brief"           
## [19246] "see"              "things"           "moment"          
## [19249] "wish"             "piece"            "mind"            
## [19252] "plain"            "possible"         "enemy"           
## [19255] "course"           "long"             "known"           
## [19258] "ring"             "abroad"           "borne"           
## [19261] "hobbit"           "knows"            "now"             
## [19264] "number"           "company"          "set"             
## [19267] "rivendell"        "kind"             "us"              
## [19270] "yet"              "perceive"         "purpose"         
## [19273] "clearly"          "supposes"         "going"           
## [19276] "minas"            "tirith"           "done"            
## [19279] "place"            "according"        "wisdom"          
## [19282] "heavy"            "stroke"           "power"           
## [19285] "indeed"           "great"            "fear"            
## [19288] "knowing"          "mighty"           "one"             
## [19291] "may"              "suddenly"         "appear"          
## [19294] "wielding"         "ring"             "assailing"       
## [19297] "war"              "seeking"          "cast"            
## [19300] "take"             "place"            "wish"            
## [19303] "cast"             "one"              "place"           
## [19306] "thought"          "occurs"           "mind"            
## [19309] "try"              "destroy"          "ring"            
## [19312] "yet"              "entered"          "darkest"         
## [19315] "dream"            "doubt"            "see"             
## [19318] "good"             "fortune"          "hope"            
## [19321] "imagining"        "war"              "let"             
## [19324] "loose"            "war"              "believing"       
## [19327] "time"             "waste"            "strikes"         
## [19330] "first"            "blow"             "strikes"         
## [19333] "hard"             "enough"           "may"             
## [19336] "need"             "strike"           "forces"          
## [19339] "long"             "preparing"        "now"             
## [19342] "setting"          "motion"           "sooner"          
## [19345] "intended"         "wise"             "fool"            
## [19348] "used"             "power"            "guard"           
## [19351] "mordor"           "none"             "enter"           
## [19354] "bent"             "guild"            "hunting"         
## [19357] "ring"             "indeed"           "hope"            
## [19360] "faded"            "neither"          "ring"            
## [19363] "bearer"           "long"             "eluded"          
## [19366] "now"              "eye"              "gazes"           
## [19369] "abroad"           "rather"           "near"            
## [19372] "home"             "mostly"           "looks"           
## [19375] "towards"          "minas"            "tirith"          
## [19378] "soon"             "now"              "strength"        
## [19381] "fall"             "upon"             "like"            
## [19384] "storm"            "already"          "knows"           
## [19387] "messengers"       "sent"             "waylay"          
## [19390] "company"          "failed"           "found"           
## [19393] "ring"             "neither"          "brought"         
## [19396] "away"             "hobbits"          "hostages"        
## [19399] "done"             "even"             "much"            
## [19402] "heavy"            "blow"             "us"              
## [19405] "might"            "fatal"            "let"             
## [19408] "us"               "darken"           "hearts"          
## [19411] "imagining"        "trial"            "gentle"          
## [19414] "loyalty"          "dark"             "tower"           
## [19417] "enemy"            "failed"           "far"             
## [19420] "thanks"           "saruman"          "saruman"         
## [19423] "traitor"          "said"             "gimli"           
## [19426] "indeed"           "yes"              "said"            
## [19429] "gandalf"          "doubly"           "strange"         
## [19432] "nothing"          "endured"          "late"            
## [19435] "seemed"           "grievous"         "treason"         
## [19438] "isengard"         "even"             "reckoned"        
## [19441] "lord"             "captain"          "saruman"         
## [19444] "grown"            "strong"           "threatens"       
## [19447] "men"              "rohan"            "draws"           
## [19450] "help"             "minas"            "tirith"          
## [19453] "even"             "main"             "blow"            
## [19456] "approaching"      "east"             "yet"             
## [19459] "treacherous"      "weapon"           "ever"            
## [19462] "danger"           "hand"             "saruman"         
## [19465] "also"             "mind"             "capture"         
## [19468] "ring"             "least"            "snare"           
## [19471] "hobbits"          "evil"             "purposes"        
## [19474] "enemies"          "contrived"        "bring"           
## [19477] "merry"            "pippin"           "marvellous"      
## [19480] "speed"            "nick"             "time"            
## [19483] "fangorn"          "otherwise"        "never"           
## [19486] "come"             "also"             "filled"          
## [19489] "new"              "doubts"           "disturb"         
## [19492] "plans"            "tidings"          "battle"          
## [19495] "come"             "mordor"           "thanks"          
## [19498] "horsemen"         "rohan"            "dark"            
## [19501] "lord"             "knows"            "two"             
## [19504] "hobbits"          "taken"            "emyn"            
## [19507] "muil"             "borne"            "away"            
## [19510] "towards"          "isengard"         "servants"        
## [19513] "now"              "isengard"         "fear"            
## [19516] "well"             "minas"            "tirith"          
## [19519] "minas"            "tirith"           "falls"           
## [19522] "go"               "ill"              "saruman"         
## [19525] "pity"             "friends"          "lie"             
## [19528] "said"             "gimli"            "land"            
## [19531] "divided"          "isengard"         "mordor"          
## [19534] "fight"            "watched"          "waited"          
## [19537] "victor"           "emerge"           "stronger"        
## [19540] "either"           "free"             "doubt"           
## [19543] "said"             "gandalf"          "isengard"        
## [19546] "fight"            "mordor"           "unless"          
## [19549] "saruman"          "first"            "obtains"         
## [19552] "ring"             "never"            "now"             
## [19555] "yet"              "know"             "peril"           
## [19558] "much"             "know"             "eager"           
## [19561] "lay"              "hands"            "prey"            
## [19564] "wait"             "home"             "came"            
## [19567] "forth"            "meet"             "spy"             
## [19570] "messengers"       "came"             "late"            
## [19573] "battle"           "beyond"           "help"            
## [19576] "reached"          "parts"            "remain"          
## [19579] "long"             "look"             "mind"            
## [19582] "see"              "doubt"            "woodcraft"       
## [19585] "believes"         "horsemen"         "slew"            
## [19588] "burned"           "upon"             "field"           
## [19591] "battle"           "know"             "whether"         
## [19594] "orcs"             "bringing"         "prisoners"       
## [19597] "know"             "quarrel"          "servants"        
## [19600] "orcs"             "mordor"           "know"            
## [19603] "winged"           "messenger"        "winged"          
## [19606] "messenger"        "cried"            "legolas"         
## [19609] "shot"             "bow"              "galadriel"       
## [19612] "sarn"             "gebir"            "felled"          
## [19615] "sky"              "filled"           "us"              
## [19618] "fear"             "new"              "terror"          
## [19621] "one"              "slay"             "arrows"          
## [19624] "said"             "gandalf"          "slew"            
## [19627] "steed"            "good"             "deed"            
## [19630] "rider"            "soon"             "horsed"          
## [19633] "nazgûl"           "one"              "nine"            
## [19636] "ride"             "now"              "upon"            
## [19639] "winged"           "steeds"           "soon"            
## [19642] "terror"           "overshadow"       "last"            
## [19645] "armies"           "friends"          "cutting"         
## [19648] "sun"              "yet"              "allowed"         
## [19651] "cross"            "river"            "saruman"         
## [19654] "know"             "new"              "shape"           
## [19657] "ringwraiths"      "clad"             "thought"         
## [19660] "ever"             "ring"             "present"         
## [19663] "battle"           "found"            "théoden"         
## [19666] "lord"             "mark"             "come"            
## [19669] "learn"            "power"            "danger"          
## [19672] "sees"             "fled"             "back"            
## [19675] "isengard"         "double"           "treble"          
## [19678] "assault"          "rohan"            "time"            
## [19681] "another"          "danger"           "close"           
## [19684] "hand"             "see"              "busy"            
## [19687] "fiery"            "thoughts"         "forgotten"       
## [19690] "treebeard"        "now"              "speak"           
## [19693] "said"             "aragorn"          "smile"           
## [19696] "treebeard"        "known"            "guessed"         
## [19699] "part"             "sarumans"         "double"          
## [19702] "treachery"        "yet"              "see"             
## [19705] "way"              "coming"           "two"             
## [19708] "hobbits"          "fangorn"          "served"          
## [19711] "save"             "give"             "us"              
## [19714] "long"             "fruitless"        "chase"           
## [19717] "wait"             "minute"           "cried"           
## [19720] "gimli"            "another"          "thing"           
## [19723] "like"             "know"             "first"           
## [19726] "gandalf"          "saruman"          "saw"             
## [19729] "last"             "night"            "certainly"       
## [19732] "see"              "answered"         "gandalf"         
## [19735] "therefore"        "must"             "guess"           
## [19738] "saw"              "saruman"          "evidently"       
## [19741] "look"             "much"             "alike"           
## [19744] "desire"           "make"             "incurable"       
## [19747] "dent"             "hat"              "must"            
## [19750] "excused"          "good"             "good"            
## [19753] "said"             "gimli"            "glad"            
## [19756] "gandalf"          "laughed"          "yes"             
## [19759] "good"             "dwarf"            "said"            
## [19762] "comfort"          "mistaken"         "points"          
## [19765] "know"             "well"             "course"          
## [19768] "never"            "blamed"           "welcome"         
## [19771] "often"            "counselled"       "friends"         
## [19774] "suspect"          "even"             "hands"           
## [19777] "dealing"          "enemy"            "bless"           
## [19780] "gimli"            "son"              "glóin"           
## [19783] "maybe"            "see"              "us"              
## [19786] "together"         "one"              "day"             
## [19789] "judge"            "us"               "hobbits"         
## [19792] "legolas"          "broke"            "come"            
## [19795] "far"              "seek"             "seem"            
## [19798] "know"             "now"              "treebeard"       
## [19801] "ents"             "said"             "gandalf"         
## [19804] "ents"             "exclaimed"        "aragorn"         
## [19807] "truth"            "old"              "legends"         
## [19810] "dwellers"         "deep"             "forests"         
## [19813] "giant"            "shepherds"        "trees"           
## [19816] "still"            "ents"             "world"           
## [19819] "thought"          "memory"           "ancient"         
## [19822] "days"             "indeed"           "ever"            
## [19825] "legend"           "rohan"            "legend"          
## [19828] "rohan"            "cried"            "legolas"         
## [19831] "nay"              "every"            "elf"             
## [19834] "wilderland"       "sung"             "songs"           
## [19837] "old"              "onodrim"          "long"            
## [19840] "sorrow"           "yet"              "even"            
## [19843] "among"            "us"               "memory"          
## [19846] "meet"             "one"              "still"           
## [19849] "walking"          "world"            "indeed"          
## [19852] "feel"             "young"            "treebeard"       
## [19855] "rendering"        "fangorn"          "common"          
## [19858] "speech"           "yet"              "seem"            
## [19861] "speak"            "person"           "treebeard"       
## [19864] "ah"               "now"              "asking"          
## [19867] "much"             "said"             "gandalf"         
## [19870] "little"           "know"             "long"            
## [19873] "slow"             "story"            "make"            
## [19876] "tale"             "time"             "now"             
## [19879] "treebeard"        "fangorn"          "guardian"        
## [19882] "forest"           "oldest"           "ents"            
## [19885] "oldest"           "living"           "thing"           
## [19888] "still"            "walks"            "beneath"         
## [19891] "sun"              "upon"             "middle"          
## [19894] "earth"            "hope"             "indeed"          
## [19897] "legolas"          "may"              "yet"             
## [19900] "meet"             "merry"            "pippin"          
## [19903] "fortunate"        "met"              "even"            
## [19906] "sit"              "came"             "two"             
## [19909] "days"             "ago"              "bore"            
## [19912] "away"             "dwelling"         "far"             
## [19915] "roots"            "mountains"        "often"           
## [19918] "comes"            "especially"       "mind"            
## [19921] "uneasy"           "rumours"          "world"           
## [19924] "outside"          "trouble"          "saw"             
## [19927] "four"             "days"             "ago"             
## [19930] "striding"         "among"            "trees"           
## [19933] "think"            "saw"              "paused"          
## [19936] "speak"            "heavy"            "thought"         
## [19939] "weary"            "struggle"         "eye"             
## [19942] "mordor"           "speak"            "either"          
## [19945] "call"             "name"             "perhaps"         
## [19948] "also"             "thought"          "saruman"         
## [19951] "said"             "gimli"            "speak"           
## [19954] "friend"           "thought"          "fangorn"         
## [19957] "dangerous"        "dangerous"        "cried"           
## [19960] "gandalf"          "dangerous"        "dangerous"       
## [19963] "anything"         "ever"             "meet"            
## [19966] "unless"           "brought"          "alive"           
## [19969] "seat"             "dark"             "lord"            
## [19972] "aragorn"          "dangerous"        "legolas"         
## [19975] "dangerous"        "beset"            "dangers"         
## [19978] "gimli"            "son"              "glóin"           
## [19981] "dangerous"        "fashion"          "certainly"       
## [19984] "forest"           "fangorn"          "perilous"        
## [19987] "least"            "ready"            "axes"            
## [19990] "fangorn"          "perilous"         "yet"             
## [19993] "wise"             "kindly"           "nonetheless"     
## [19996] "now"              "long"             "slow"            
## [19999] "wrath"            "brimming"         "forest"          
## [20002] "filled"           "coming"           "hobbits"         
## [20005] "tidings"          "brought"          "spilled"         
## [20008] "soon"             "running"          "like"            
## [20011] "flood"            "tide"             "turned"          
## [20014] "saruman"          "axes"             "isengard"        
## [20017] "thing"            "happen"           "happened"        
## [20020] "since"            "elder"            "days"            
## [20023] "ents"             "going"            "wake"            
## [20026] "find"             "strong"           "asked"           
## [20029] "legolas"          "astonishment"     "know"            
## [20032] "said"             "gandalf"          "think"           
## [20035] "know"             "wonder"           "fell"            
## [20038] "silent"           "head"             "bowed"           
## [20041] "thought"          "others"           "looked"          
## [20044] "gleam"            "sun"              "fleeting"        
## [20047] "clouds"           "fell"             "hands"           
## [20050] "lay"              "now"              "upturned"        
## [20053] "lap"              "seemed"           "filled"          
## [20056] "light"            "cup"              "water"           
## [20059] "last"             "looked"           "gazed"           
## [20062] "straight"         "sun"              "morning"         
## [20065] "wearing"          "away"             "said"            
## [20068] "soon"             "must"             "go"              
## [20071] "go"               "find"             "friends"         
## [20074] "see"              "treebeard"        "asked"           
## [20077] "aragorn"          "said"             "gandalf"         
## [20080] "road"             "must"             "take"            
## [20083] "spoken"           "words"            "hope"            
## [20086] "hope"             "hope"             "victory"         
## [20089] "war"              "upon"             "us"              
## [20092] "friends"          "war"              "use"             
## [20095] "ring"             "give"             "us"              
## [20098] "surety"           "victory"          "fills"           
## [20101] "great"            "sorrow"           "great"           
## [20104] "fear"             "much"             "shall"           
## [20107] "destroyed"        "may"              "lost"            
## [20110] "gandalf"          "gandalf"          "white"           
## [20113] "black"            "mightier"         "still"           
## [20116] "rose"             "gazed"            "eastward"        
## [20119] "shading"          "eyes"             "saw"             
## [20122] "things"           "far"              "away"            
## [20125] "none"             "see"              "shook"           
## [20128] "head"             "said"             "soft"            
## [20131] "voice"            "gone"             "beyond"          
## [20134] "reach"            "least"            "let"             
## [20137] "us"               "glad"             "can"             
## [20140] "longer"           "tempted"          "use"             
## [20143] "ring"             "must"             "go"              
## [20146] "face"             "peril"            "near"            
## [20149] "despair"          "yet"              "deadly"          
## [20152] "peril"            "removed"          "turned"          
## [20155] "come"             "aragorn"          "son"             
## [20158] "arathorn"         "said"             "regret"          
## [20161] "choice"           "valley"           "emyn"            
## [20164] "muil"             "call"             "vain"            
## [20167] "pursuit"          "chose"            "amid"            
## [20170] "doubts"           "path"             "seemed"          
## [20173] "right"            "choice"           "just"            
## [20176] "rewarded"         "met"              "time"            
## [20179] "otherwise"        "might"            "met"             
## [20182] "late"             "quest"            "companions"      
## [20185] "next"             "journey"          "marked"          
## [20188] "given"            "word"             "must"            
## [20191] "go"               "edoras"           "seek"            
## [20194] "théoden"          "hall"             "needed"          
## [20197] "light"            "andúril"          "must"            
## [20200] "now"              "uncovered"        "battle"          
## [20203] "long"             "waited"           "war"             
## [20206] "rohan"            "worse"            "evil"            
## [20209] "goes"             "ill"              "théoden"         
## [20212] "see"              "merry"            "young"           
## [20215] "hobbits"          "said"             "legolas"         
## [20218] "say"              "said"             "gandalf"         
## [20221] "knows"            "patience"         "go"              
## [20224] "must"             "go"               "hope"            
## [20227] "edoras"           "go"               "thither"         
## [20230] "also"             "long"             "way"             
## [20233] "man"              "walk"             "young"           
## [20236] "old"              "said"             "aragorn"         
## [20239] "fear"             "battle"           "long"            
## [20242] "ere"              "come"             "shall"           
## [20245] "see"              "shall"            "see"             
## [20248] "said"             "gandalf"          "come"            
## [20251] "now"              "yes"              "set"             
## [20254] "together"         "said"             "aragorn"         
## [20257] "doubt"            "come"             "wish"            
## [20260] "rose"             "looked"           "long"            
## [20263] "gandalf"          "others"           "gazed"           
## [20266] "silence"          "stood"            "facing"          
## [20269] "one"              "another"          "grey"            
## [20272] "figure"           "man"              "aragorn"         
## [20275] "son"              "arathorn"         "tall"            
## [20278] "stern"            "stone"            "hand"            
## [20281] "upon"             "hilt"             "sword"           
## [20284] "looked"           "king"             "mists"           
## [20287] "sea"              "stepped"          "upon"            
## [20290] "shores"           "lesser"           "men"             
## [20293] "stooped"          "old"              "figure"          
## [20296] "white"            "shining"          "now"             
## [20299] "light"            "kindled"          "within"          
## [20302] "bent"             "laden"            "years"           
## [20305] "holding"          "power"            "beyond"          
## [20308] "strength"         "kings"            "say"             
## [20311] "truly"            "gandalf"          "said"            
## [20314] "aragorn"          "last"             "go"              
## [20317] "whithersoever"    "wished"           "quicker"         
## [20320] "also"             "say"              "captain"         
## [20323] "banner"           "dark"             "lord"            
## [20326] "nine"             "one"              "mightier"        
## [20329] "white"            "rider"            "passed"          
## [20332] "fire"             "abyss"            "shall"           
## [20335] "fear"             "go"               "leads"           
## [20338] "yes"              "together"         "follow"          
## [20341] "said"             "legolas"          "first"           
## [20344] "ease"             "heart"            "gandalf"         
## [20347] "hear"             "befell"           "moria"           
## [20350] "tell"             "us"               "can"             
## [20353] "stay"             "even"             "tell"            
## [20356] "friends"          "delivered"        "stayed"          
## [20359] "already"          "long"             "answered"        
## [20362] "gandalf"          "time"             "short"           
## [20365] "year"             "spend"            "tell"            
## [20368] "tell"             "us"               "time"            
## [20371] "allows"           "said"             "gimli"           
## [20374] "come"             "gandalf"          "tell"            
## [20377] "us"               "fared"            "balrog"          
## [20380] "name"             "said"             "gandalf"         
## [20383] "moment"           "seemed"           "cloud"           
## [20386] "pain"             "passed"           "face"            
## [20389] "sat"              "silent"           "looking"         
## [20392] "old"              "death"            "long"            
## [20395] "time"             "fell"             "said"            
## [20398] "last"             "slowly"           "thinking"        
## [20401] "back"             "difficulty"       "long"            
## [20404] "fell"             "fell"             "fire"            
## [20407] "burned"           "plunged"          "deep"            
## [20410] "water"            "dark"             "cold"            
## [20413] "tide"             "death"            "almost"          
## [20416] "froze"            "heart"            "deep"            
## [20419] "abyss"            "spanned"          "durins"          
## [20422] "bridge"           "none"             "measured"        
## [20425] "said"             "gimli"            "yet"             
## [20428] "bottom"           "beyond"           "light"           
## [20431] "knowledge"        "said"             "gandalf"         
## [20434] "thither"          "came"             "last"            
## [20437] "uttermost"        "foundations"      "stone"           
## [20440] "still"            "fire"             "quenched"        
## [20443] "now"              "thing"            "slime"           
## [20446] "stronger"         "strangling"       "snake"           
## [20449] "fought"           "far"              "living"          
## [20452] "earth"            "time"             "counted"         
## [20455] "ever"             "clutched"         "ever"            
## [20458] "hewed"            "till"             "last"            
## [20461] "fled"             "dark"             "tunnels"         
## [20464] "made"             "durins"           "folk"            
## [20467] "gimli"            "son"              "glóin"           
## [20470] "far"              "far"              "deepest"         
## [20473] "delving"          "dwarves"          "world"           
## [20476] "gnawed"           "nameless"         "things"          
## [20479] "even"             "sauron"           "knows"           
## [20482] "older"            "now"              "walked"          
## [20485] "bring"            "report"           "darken"          
## [20488] "light"            "day"              "despair"         
## [20491] "enemy"            "hope"             "pursued"         
## [20494] "clutching"        "heel"             "thus"            
## [20497] "brought"          "back"             "last"            
## [20500] "secret"           "ways"             "khazad"          
## [20503] "dûm"              "well"             "knew"            
## [20506] "ever"             "now"              "went"            
## [20509] "came"             "endless"          "stair"           
## [20512] "long"             "lost"             "said"            
## [20515] "gimli"            "many"             "said"            
## [20518] "never"            "made"             "save"            
## [20521] "legend"           "others"           "say"             
## [20524] "destroyed"        "made"             "destroyed"       
## [20527] "said"             "gandalf"          "lowest"          
## [20530] "dungeon"          "highest"          "peak"            
## [20533] "climbed"          "ascending"        "unbroken"        
## [20536] "spiral"           "many"             "thousand"        
## [20539] "steps"            "issued"           "last"            
## [20542] "durins"           "tower"            "carved"          
## [20545] "living"           "rock"             "zirak"           
## [20548] "zigil"            "pinnacle"         "silvertine"      
## [20551] "upon"             "celebdil"         "lonely"          
## [20554] "window"           "snow"             "lay"             
## [20557] "narrow"           "space"            "dizzy"           
## [20560] "eyrie"            "mists"            "world"           
## [20563] "sun"              "shone"            "fiercely"        
## [20566] "wrapped"          "cloud"            "sprang"          
## [20569] "even"             "came"             "behind"          
## [20572] "burst"            "new"              "flame"           
## [20575] "none"             "see"              "perhaps"         
## [20578] "ages"             "songs"            "still"           
## [20581] "sung"             "battle"           "peak"            
## [20584] "suddenly"         "gandalf"          "laughed"         
## [20587] "say"              "song"             "looked"          
## [20590] "afar"             "thought"          "mountain"        
## [20593] "crowned"          "storm"            "thunder"         
## [20596] "heard"            "lightning"        "said"            
## [20599] "smote"            "upon"             "celebdil"        
## [20602] "leaped"           "back"             "broken"          
## [20605] "tongues"          "fire"             "enough"          
## [20608] "great"            "smoke"            "rose"            
## [20611] "us"               "vapour"           "steam"           
## [20614] "ice"              "fell"             "like"            
## [20617] "rain"             "threw"            "enemy"           
## [20620] "fell"             "high"             "place"           
## [20623] "broke"            "mountain"         "side"            
## [20626] "smote"            "ruin"             "darkness"        
## [20629] "took"             "strayed"          "thought"         
## [20632] "time"             "wandered"         "far"             
## [20635] "roads"            "tell"             "naked"           
## [20638] "sent"             "back"             "brief"           
## [20641] "time"             "task"             "done"            
## [20644] "naked"            "lay"              "upon"            
## [20647] "mountain"         "top"              "tower"           
## [20650] "behind"           "crumbled"         "dust"            
## [20653] "window"           "gone"             "ruined"          
## [20656] "stair"            "choked"           "burned"          
## [20659] "broken"           "stone"            "alone"           
## [20662] "forgotten"        "without"          "escape"          
## [20665] "upon"             "hard"             "horn"            
## [20668] "world"            "lay"              "staring"         
## [20671] "upward"           "stars"            "wheeled"         
## [20674] "day"              "long"             "life"            
## [20677] "age"              "earth"            "faint"           
## [20680] "ears"             "came"             "gathered"        
## [20683] "rumour"           "lands"            "springing"       
## [20686] "dying"            "song"             "weeping"         
## [20689] "slow"             "everlasting"      "groan"           
## [20692] "overburdened"     "stone"            "last"            
## [20695] "gwaihir"          "windlord"         "found"           
## [20698] "took"             "bore"             "away"            
## [20701] "ever"             "fated"            "burden"          
## [20704] "friend"           "need"             "said"            
## [20707] "burden"           "answered"         "now"             
## [20710] "light"            "swans"            "feather"         
## [20713] "claw"             "sun"              "shines"          
## [20716] "indeed"           "think"            "need"            
## [20719] "let"              "fall"             "float"           
## [20722] "upon"             "wind"             "let"             
## [20725] "fall"             "gasped"           "felt"            
## [20728] "life"             "bear"             "lothlórien"      
## [20731] "indeed"           "command"          "lady"            
## [20734] "galadriel"        "sent"             "look"            
## [20737] "answered"         "thus"             "came"            
## [20740] "caras"            "galadhon"         "found"           
## [20743] "lately"           "gone"             "tarried"         
## [20746] "ageless"          "time"             "land"            
## [20749] "days"             "bring"            "healing"         
## [20752] "decay"            "healing"          "found"           
## [20755] "clothed"          "white"            "counsel"         
## [20758] "gave"             "counsel"          "took"            
## [20761] "thence"           "strange"          "roads"           
## [20764] "came"             "messages"         "bring"           
## [20767] "aragorn"          "bidden"           "say"             
## [20770] "now"              "dúnedain"         "elessar"         
## [20773] "elessar"          "thy"              "kinsfolk"        
## [20776] "wander"           "afar"             "near"            
## [20779] "hour"             "lost"             "come"            
## [20782] "forth"            "grey"             "company"         
## [20785] "ride"             "north"            "dark"            
## [20788] "path"             "appointed"        "thee"            
## [20791] "dead"             "watch"            "road"            
## [20794] "leads"            "sea"              "legolas"         
## [20797] "sent"             "word"             "legolas"         
## [20800] "greenleaf"        "long"             "tree"            
## [20803] "joy"              "thou"             "hast"            
## [20806] "lived"            "beware"           "sea"             
## [20809] "thou"             "hearest"          "cry"             
## [20812] "gull"             "shore"            "thy"             
## [20815] "heart"            "shall"            "rest"            
## [20818] "forest"           "gandalf"          "fell"            
## [20821] "silent"           "shut"             "eyes"            
## [20824] "sent"             "message"          "said"            
## [20827] "gimli"            "bent"             "head"            
## [20830] "dark"             "words"            "said"            
## [20833] "legolas"          "little"           "mean"            
## [20836] "receive"          "comfort"          "said"            
## [20839] "gimli"            "said"             "legolas"         
## [20842] "speak"            "openly"           "death"           
## [20845] "yes"              "nought"           "else"            
## [20848] "say"              "said"             "gandalf"         
## [20851] "opening"          "eyes"             "yes"             
## [20854] "think"            "can"              "guess"           
## [20857] "words"            "may"              "mean"            
## [20860] "pardon"           "gimli"            "pondering"       
## [20863] "messages"         "indeed"           "sent"            
## [20866] "words"            "neither"          "dark"            
## [20869] "sad"              "gimli"            "son"             
## [20872] "glóin"            "said"             "give"            
## [20875] "ladys"            "greeting"         "lock"            
## [20878] "bearer"           "wherever"         "thou"            
## [20881] "goest"            "thought"          "goes"            
## [20884] "thee"             "care"             "lay"             
## [20887] "thine"            "axe"              "right"           
## [20890] "tree"             "happy"            "hour"            
## [20893] "returned"         "us"               "gandalf"         
## [20896] "cried"            "dwarf"            "capering"        
## [20899] "sang"             "loudly"           "strange"         
## [20902] "dwarf"            "tongue"           "come"            
## [20905] "come"             "shouted"          "swinging"        
## [20908] "axe"              "since"            "gandalfs"        
## [20911] "head"             "now"              "sacred"          
## [20914] "let"              "us"               "find"            
## [20917] "one"              "right"            "cleave"          
## [20920] "far"              "seek"             "said"            
## [20923] "gandalf"          "rising"           "seat"            
## [20926] "come"             "spent"            "time"            
## [20929] "allowed"          "meeting"          "parted"          
## [20932] "friends"          "now"              "need"            
## [20935] "haste"            "wrapped"          "old"             
## [20938] "tattered"         "cloak"            "led"             
## [20941] "way"              "following"        "descended"       
## [20944] "quickly"          "high"             "shelf"           
## [20947] "made"             "way"              "back"            
## [20950] "forest"           "bank"             "entwash"         
## [20953] "spoke"            "words"            "stood"           
## [20956] "upon"             "grass"            "beyond"          
## [20959] "eaves"            "fangorn"          "sign"            
## [20962] "horses"           "seen"             "returned"        
## [20965] "said"             "legolas"          "weary"           
## [20968] "walk"             "shall"            "walk"            
## [20971] "time"             "presses"          "said"            
## [20974] "gandalf"          "lifting"          "head"            
## [20977] "gave"             "long"             "whistle"         
## [20980] "clear"            "piercing"         "note"            
## [20983] "others"           "stood"            "amazed"          
## [20986] "hear"             "sound"            "come"            
## [20989] "old"              "bearded"          "lips"            
## [20992] "three"            "times"            "whistled"        
## [20995] "faint"            "far"              "seemed"          
## [20998] "heard"            "whinny"           "horse"           
## [21001] "borne"            "plains"           "upon"            
## [21004] "eastern"          "wind"             "waited"          
## [21007] "wondering"        "long"             "came"            
## [21010] "sound"            "hoofs"            "first"           
## [21013] "hardly"           "tremor"           "ground"          
## [21016] "perceptible"      "aragorn"          "lay"             
## [21019] "upon"             "grass"            "growing"         
## [21022] "steadily"         "louder"           "clearer"         
## [21025] "quick"            "beat"             "one"             
## [21028] "horse"            "coming"           "said"            
## [21031] "aragorn"          "certainly"        "said"            
## [21034] "gandalf"          "great"            "burden"          
## [21037] "one"              "three"            "said"            
## [21040] "legolas"          "gazing"           "plain"           
## [21043] "see"              "run"              "hasufel"         
## [21046] "friend"           "arod"             "beside"          
## [21049] "another"          "strides"          "ahead"           
## [21052] "great"            "horse"            "seen"            
## [21055] "like"             "said"             "gandalf"         
## [21058] "shadowfax"        "chief"            "mearas"          
## [21061] "lords"            "horses"           "even"            
## [21064] "théoden"          "king"             "rohan"           
## [21067] "ever"             "looked"           "better"          
## [21070] "shine"            "like"             "silver"          
## [21073] "run"              "smoothly"         "swift"           
## [21076] "stream"           "come"             "horse"           
## [21079] "white"            "rider"            "going"           
## [21082] "battle"           "together"         "even"            
## [21085] "old"              "wizard"           "spoke"           
## [21088] "great"            "horse"            "came"            
## [21091] "striding"         "slope"            "towards"         
## [21094] "coat"             "glistening"       "mane"            
## [21097] "flowing"          "wind"             "speed"           
## [21100] "two"              "others"           "followed"        
## [21103] "now"              "far"              "behind"          
## [21106] "soon"             "shadowfax"        "saw"             
## [21109] "gandalf"          "checked"          "pace"            
## [21112] "whinnied"         "loudly"           "trotting"        
## [21115] "gently"           "forward"          "stooped"         
## [21118] "proud"            "head"             "nuzzled"         
## [21121] "great"            "nostrils"         "old"             
## [21124] "mans"             "neck"             "gandalf"         
## [21127] "caressed"         "long"             "way"             
## [21130] "rivendell"        "friend"           "said"            
## [21133] "wise"             "swift"            "come"            
## [21136] "need"             "far"              "let"             
## [21139] "us"               "ride"             "now"             
## [21142] "together"         "part"             "world"           
## [21145] "soon"             "horses"           "came"            
## [21148] "stood"            "quietly"          "awaiting"        
## [21151] "orders"           "go"               "meduseld"        
## [21154] "hall"             "master"           "théoden"         
## [21157] "said"             "gandalf"          "addressing"      
## [21160] "gravely"          "bowed"            "heads"           
## [21163] "time"             "presses"          "leave"           
## [21166] "friends"          "ride"             "beg"             
## [21169] "use"              "speed"            "can"             
## [21172] "hasufel"          "shall"            "bear"            
## [21175] "aragorn"          "arod"             "legolas"         
## [21178] "set"              "gimli"            "leave"           
## [21181] "shadowfax"        "shall"            "bear"            
## [21184] "us"               "wait"             "now"             
## [21187] "drink"            "little"           "now"             
## [21190] "understand"       "part"             "last"            
## [21193] "nights"           "riddle"           "said"            
## [21196] "legolas"          "sprang"           "lightly"         
## [21199] "upon"             "arods"            "back"            
## [21202] "whether"          "fled"             "first"           
## [21205] "fear"             "horses"           "met"             
## [21208] "shadowfax"        "chieftain"        "greeted"         
## [21211] "joy"              "know"             "hand"            
## [21214] "gandalf"          "yes"              "knew"            
## [21217] "said"             "wizard"           "bent"            
## [21220] "thought"          "upon"             "bidding"         
## [21223] "make"             "haste"            "yesterday"       
## [21226] "far"              "away"             "south"           
## [21229] "land"             "swiftly"          "may"             
## [21232] "bear"             "back"             "gandalf"         
## [21235] "spoke"            "now"              "shadowfax"       
## [21238] "horse"            "set"              "good"            
## [21241] "pace"             "yet"              "beyond"          
## [21244] "measure"          "others"           "little"          
## [21247] "turned"           "suddenly"         "choosing"        
## [21250] "place"            "banks"            "lower"           
## [21253] "waded"            "river"            "led"             
## [21256] "away"             "due"              "south"           
## [21259] "flat"             "land"             "treeless"        
## [21262] "wide"             "wind"             "went"            
## [21265] "like"             "grey"             "waves"           
## [21268] "endless"          "miles"            "grass"           
## [21271] "sign"             "road"             "track"           
## [21274] "shadowfax"        "stay"             "falter"          
## [21277] "steering"         "straight"         "course"          
## [21280] "now"              "halls"            "théoden"         
## [21283] "slopes"           "white"            "mountains"       
## [21286] "said"             "gandalf"          "quicker"         
## [21289] "ground"           "firmer"           "eastemnet"       
## [21292] "chief"            "northward"        "track"           
## [21295] "lies"             "across"           "river"           
## [21298] "shadowfax"        "knows"            "way"             
## [21301] "every"            "fen"              "hollow"          
## [21304] "many"             "hours"            "rode"            
## [21307] "meads"            "riverlands"       "often"           
## [21310] "grass"            "high"             "reached"         
## [21313] "knees"            "riders"           "steeds"          
## [21316] "seemed"           "swimming"         "grey"            
## [21319] "green"            "sea"              "came"            
## [21322] "upon"             "many"             "hidden"          
## [21325] "pools"            "broad"            "acres"           
## [21328] "sedge"            "waving"           "wet"             
## [21331] "treacherous"      "bogs"             "shadowfax"       
## [21334] "found"            "way"              "horses"          
## [21337] "followed"         "swath"            "slowly"          
## [21340] "sun"              "fell"             "sky"             
## [21343] "west"             "looking"          "great"           
## [21346] "plain"            "far"              "away"            
## [21349] "riders"           "saw"              "moment"          
## [21352] "like"             "red"              "fire"            
## [21355] "sinking"          "grass"            "low"             
## [21358] "upon"             "edge"             "sight"           
## [21361] "shoulders"        "mountains"        "glinted"         
## [21364] "red"              "upon"             "either"          
## [21367] "side"             "smoke"            "seemed"          
## [21370] "rise"             "darken"           "suns"            
## [21373] "disc"             "hue"              "blood"           
## [21376] "kindled"          "grass"            "passed"          
## [21379] "rim"              "earth"            "lies"            
## [21382] "gap"              "rohan"            "said"            
## [21385] "gandalf"          "now"              "almost"          
## [21388] "due"              "west"             "us"              
## [21391] "way"              "lies"             "isengard"        
## [21394] "see"              "great"            "smoke"           
## [21397] "said"             "legolas"          "may"             
## [21400] "battle"           "war"              "said"            
## [21403] "gandalf"          "ride"             "chapter"         
## [21406] "king"             "golden"           "hall"            
## [21409] "rode"             "sunset"           "slow"            
## [21412] "dusk"             "gathering"        "night"           
## [21415] "last"             "halted"           "dismounted"      
## [21418] "even"             "aragorn"          "stiff"           
## [21421] "weary"            "gandalf"          "allowed"         
## [21424] "hours"            "rest"             "legolas"         
## [21427] "gimli"            "slept"            "aragorn"         
## [21430] "lay"              "flat"             "stretched"       
## [21433] "upon"             "back"             "gandalf"         
## [21436] "stood"            "leaning"          "staff"           
## [21439] "gazing"           "darkness"         "east"            
## [21442] "west"             "silent"           "sign"            
## [21445] "sound"            "living"           "thing"           
## [21448] "night"            "barred"           "long"            
## [21451] "clouds"           "fleeting"         "chill"           
## [21454] "wind"             "arose"            "cold"            
## [21457] "moon"             "went"             "swift"           
## [21460] "light"            "day"              "hours"           
## [21463] "passed"           "still"            "rode"            
## [21466] "gimli"            "nodded"           "fallen"          
## [21469] "seat"             "gandalf"          "clutched"        
## [21472] "shaken"           "hasufel"          "arod"            
## [21475] "weary"            "proud"            "followed"        
## [21478] "tireless"         "leader"           "grey"            
## [21481] "shadow"           "hardly"           "seen"            
## [21484] "miles"            "went"             "waxing"          
## [21487] "moon"             "sank"             "cloudy"          
## [21490] "west"             "bitter"           "chill"           
## [21493] "came"             "air"              "slowly"          
## [21496] "east"             "dark"             "faded"           
## [21499] "cold"             "grey"             "red"             
## [21502] "shafts"           "light"            "leapt"           
## [21505] "black"            "walls"            "emyn"            
## [21508] "muil"             "far"              "away"            
## [21511] "upon"             "left"             "dawn"            
## [21514] "came"             "clear"            "bright"          
## [21517] "wind"             "swept"            "across"          
## [21520] "path"             "rushing"          "bent"            
## [21523] "grasses"          "suddenly"         "shadowfax"       
## [21526] "stood"            "still"            "neighed"         
## [21529] "gandalf"          "pointed"          "ahead"           
## [21532] "look"             "cried"            "lifted"          
## [21535] "tired"            "eyes"             "stood"           
## [21538] "mountains"        "south"            "white"           
## [21541] "tipped"           "streaked"         "black"           
## [21544] "grass"            "lands"            "rolled"          
## [21547] "hills"            "clustered"        "feet"            
## [21550] "flowed"           "many"             "valleys"         
## [21553] "still"            "dim"              "dark"            
## [21556] "untouched"        "light"            "dawn"            
## [21559] "winding"          "way"              "heart"           
## [21562] "great"            "mountains"        "immediately"     
## [21565] "travellers"       "widest"           "glens"           
## [21568] "opened"           "like"             "long"            
## [21571] "gulf"             "among"            "hills"           
## [21574] "far"              "inward"           "glimpsed"        
## [21577] "tumbled"          "mountain"         "mass"            
## [21580] "one"              "tall"             "peak"            
## [21583] "mouth"            "vale"             "stood"           
## [21586] "like"             "sentinel"         "lonely"          
## [21589] "height"           "feet"             "flowed"          
## [21592] "thread"           "silver"           "stream"          
## [21595] "issued"           "dale"             "upon"            
## [21598] "brow"             "caught"           "still"           
## [21601] "far"              "away"             "glint"           
## [21604] "rising"           "sun"              "glimmer"         
## [21607] "gold"             "speak"            "legolas"         
## [21610] "said"             "gandalf"          "tell"            
## [21613] "us"               "see"              "us"              
## [21616] "legolas"          "gazed"            "ahead"           
## [21619] "shading"          "eyes"             "level"           
## [21622] "shafts"           "new"              "risen"           
## [21625] "sun"              "see"              "white"           
## [21628] "stream"           "comes"            "snows"           
## [21631] "said"             "issues"           "shadow"          
## [21634] "vale"             "green"            "hill"            
## [21637] "rises"            "upon"             "east"            
## [21640] "dike"             "mighty"           "wall"            
## [21643] "thorny"           "fence"            "encircle"        
## [21646] "within"           "rise"             "roofs"           
## [21649] "houses"           "midst"            "set"             
## [21652] "upon"             "green"            "terrace"         
## [21655] "stands"           "aloft"            "great"           
## [21658] "hall"             "men"              "seems"           
## [21661] "eyes"             "thatched"         "gold"            
## [21664] "light"            "shines"           "far"             
## [21667] "land"             "golden"           "posts"           
## [21670] "doors"            "men"              "bright"          
## [21673] "mail"             "stand"            "else"            
## [21676] "within"           "courts"           "yet"             
## [21679] "asleep"           "edoras"           "courts"          
## [21682] "called"           "said"             "gandalf"         
## [21685] "meduseld"         "golden"           "hall"            
## [21688] "dwells"           "théoden"          "son"             
## [21691] "thengel"          "king"             "mark"            
## [21694] "rohan"            "come"             "rising"          
## [21697] "day"              "now"              "road"            
## [21700] "lies"             "plain"            "see"             
## [21703] "us"               "must"             "ride"            
## [21706] "warily"           "war"              "abroad"          
## [21709] "rohirrim"         "horse"            "lords"           
## [21712] "sleep"            "even"             "seem"            
## [21715] "afar"             "draw"             "weapon"          
## [21718] "speak"            "haughty"          "word"            
## [21721] "counsel"          "come"             "théodens"        
## [21724] "seat"             "morning"          "bright"          
## [21727] "clear"            "birds"            "singing"         
## [21730] "travellers"       "came"             "stream"          
## [21733] "ran"              "swiftly"          "plain"           
## [21736] "beyond"           "feet"             "hills"           
## [21739] "turned"           "across"           "path"            
## [21742] "wide"             "bend"             "flowing"         
## [21745] "away"             "east"             "feed"            
## [21748] "entwash"          "far"              "reed"            
## [21751] "choked"           "beds"             "land"            
## [21754] "green"            "wet"              "meads"           
## [21757] "along"            "grassy"           "borders"         
## [21760] "stream"           "grew"             "many"            
## [21763] "willow"           "trees"            "already"         
## [21766] "southern"         "land"             "blushing"        
## [21769] "red"              "fingertips"       "feeling"         
## [21772] "approach"         "spring"           "stream"          
## [21775] "ford"             "low"              "banks"           
## [21778] "much"             "trampled"         "passage"         
## [21781] "horses"           "travellers"       "passed"          
## [21784] "came"             "upon"             "wide"            
## [21787] "rutted"           "track"            "leading"         
## [21790] "towards"          "uplands"          "foot"            
## [21793] "walled"           "hill"             "way"             
## [21796] "ran"              "shadow"           "many"            
## [21799] "mounds"           "high"             "green"           
## [21802] "upon"             "western"          "sides"           
## [21805] "grass"            "white"            "drifted"         
## [21808] "snow"             "small"            "flowers"         
## [21811] "sprang"           "like"             "countless"       
## [21814] "stars"            "amid"             "turf"            
## [21817] "look"             "said"             "gandalf"         
## [21820] "fair"             "bright"           "eyes"            
## [21823] "grass"            "evermind"         "called"          
## [21826] "simbelmynë"       "land"             "men"             
## [21829] "blossom"          "seasons"          "year"            
## [21832] "grow"             "dead"             "men"             
## [21835] "rest"             "behold"           "come"            
## [21838] "great"            "barrows"          "sires"           
## [21841] "théoden"          "sleep"            "seven"           
## [21844] "mounds"           "upon"             "left"            
## [21847] "nine"             "upon"             "right"           
## [21850] "said"             "aragorn"          "many"            
## [21853] "long"             "lives"            "men"             
## [21856] "since"            "golden"           "hall"            
## [21859] "built"            "five"             "hundred"         
## [21862] "times"            "red"              "leaves"          
## [21865] "fallen"           "mirkwood"         "home"            
## [21868] "since"            "said"             "legolas"         
## [21871] "little"           "seem"             "us"              
## [21874] "riders"           "mark"             "seems"           
## [21877] "long"             "ago"              "said"            
## [21880] "aragorn"          "raising"          "house"           
## [21883] "memory"           "song"             "years"           
## [21886] "lost"             "mist"             "time"            
## [21889] "now"              "call"             "land"            
## [21892] "home"             "speech"           "sundered"        
## [21895] "northern"         "kin"              "began"           
## [21898] "chant"            "softly"           "slow"            
## [21901] "tongue"           "unknown"          "elf"             
## [21904] "dwarf"            "yet"              "listened"        
## [21907] "strong"           "music"            "guess"           
## [21910] "language"         "rohirrim"         "said"            
## [21913] "legolas"          "like"             "land"            
## [21916] "rich"             "rolling"          "part"            
## [21919] "else"             "hard"             "stern"           
## [21922] "mountains"        "guess"            "means"           
## [21925] "save"             "laden"            "sadness"         
## [21928] "mortal"           "men"              "runs"            
## [21931] "thus"             "common"           "speech"          
## [21934] "said"             "aragorn"          "near"            
## [21937] "can"              "make"             "now"             
## [21940] "horse"            "rider"            "horn"            
## [21943] "blowing"          "helm"             "hauberk"         
## [21946] "bright"           "hair"             "flowing"         
## [21949] "hand"             "harpstring"       "red"             
## [21952] "fire"             "glowing"          "spring"          
## [21955] "harvest"          "tall"             "corn"            
## [21958] "growing"          "passed"           "like"            
## [21961] "rain"             "mountain"         "like"            
## [21964] "wind"             "meadow"           "days"            
## [21967] "gone"             "west"             "behind"          
## [21970] "hills"            "shadow"           "shall"           
## [21973] "gather"           "smoke"            "dead"            
## [21976] "wood"             "burning"          "behold"          
## [21979] "flowing"          "years"            "sea"             
## [21982] "returning"        "thus"             "spoke"           
## [21985] "forgotten"        "poet"             "long"            
## [21988] "ago"              "rohan"            "recalling"       
## [21991] "tall"             "fair"             "eorl"            
## [21994] "young"            "rode"             "north"           
## [21997] "wings"            "upon"             "feet"            
## [22000] "steed"            "felaróf"          "father"          
## [22003] "horses"           "men"              "still"           
## [22006] "sing"             "evening"          "words"           
## [22009] "travellers"       "passed"           "silent"          
## [22012] "mounds"           "following"        "winding"         
## [22015] "way"              "green"            "shoulders"       
## [22018] "hills"            "came"             "last"            
## [22021] "wide"             "wind"             "swept"           
## [22024] "walls"            "gates"            "edoras"          
## [22027] "sat"              "many"             "men"             
## [22030] "bright"           "mail"             "sprang"          
## [22033] "feet"             "barred"           "way"             
## [22036] "spears"           "stay"             "strangers"       
## [22039] "unknown"          "cried"            "tongue"          
## [22042] "riddermark"       "demanding"        "names"           
## [22045] "errand"           "strangers"        "wonder"          
## [22048] "eyes"             "little"           "friendliness"    
## [22051] "looked"           "darkly"           "upon"            
## [22054] "gandalf"          "well"             "understand"      
## [22057] "speech"           "answered"         "language"        
## [22060] "yet"              "strangers"        "speak"           
## [22063] "common"           "tongue"           "custom"          
## [22066] "west"             "wish"             "answered"        
## [22069] "théoden"          "king"             "none"            
## [22072] "enter"            "gates"            "save"            
## [22075] "know"             "tongue"           "friends"         
## [22078] "replied"          "one"              "guards"          
## [22081] "none"             "welcome"          "days"            
## [22084] "war"              "folk"             "come"            
## [22087] "mundburg"         "land"             "gondor"          
## [22090] "come"             "heedless"         "plain"           
## [22093] "thus"             "strangely"        "clad"            
## [22096] "riding"           "horses"           "like"            
## [22099] "horses"           "long"             "kept"            
## [22102] "guard"            "watched"          "afar"            
## [22105] "never"            "seen"             "riders"          
## [22108] "strange"          "horse"            "proud"           
## [22111] "one"              "bear"             "one"             
## [22114] "mearas"           "unless"           "eyes"            
## [22117] "cheated"          "spell"            "say"             
## [22120] "wizard"           "spy"              "saruman"         
## [22123] "phantoms"         "craft"            "speak"           
## [22126] "now"              "swift"            "phantoms"        
## [22129] "said"             "aragorn"          "eyes"            
## [22132] "cheat"            "indeed"           "horses"          
## [22135] "ride"             "knew"             "well"            
## [22138] "asked"            "guess"            "seldom"          
## [22141] "thief"            "ride"             "home"            
## [22144] "stable"           "hasufel"          "arod"            
## [22147] "éomer"            "third"            "marshal"         
## [22150] "mark"             "lent"             "us"              
## [22153] "two"              "days"             "ago"             
## [22156] "bring"            "back"             "now"             
## [22159] "even"             "promised"         "éomer"           
## [22162] "returned"         "given"            "warning"         
## [22165] "coming"           "troubled"         "look"            
## [22168] "came"             "guards"           "eyes"            
## [22171] "éomer"            "naught"           "say"             
## [22174] "answered"         "tell"             "truth"           
## [22177] "doubtless"        "théoden"          "heard"           
## [22180] "maybe"            "coming"           "wholly"          
## [22183] "unlooked"         "two"              "nights"          
## [22186] "ago"              "wormtongue"       "came"            
## [22189] "us"               "said"             "théoden"         
## [22192] "stranger"         "pass"             "gates"           
## [22195] "wormtongue"       "said"             "gandalf"         
## [22198] "looking"          "sharply"          "guard"           
## [22201] "say"              "errand"           "wormtongue"      
## [22204] "lord"             "mark"             "haste"           
## [22207] "go"               "send"             "say"             
## [22210] "come"             "eyes"             "glinted"         
## [22213] "deep"             "brows"            "bent"            
## [22216] "gaze"             "upon"             "man"             
## [22219] "yes"              "go"               "answered"        
## [22222] "slowly"           "names"            "shall"           
## [22225] "report"           "shall"            "say"             
## [22228] "old"              "weary"            "seem"            
## [22231] "now"              "yet"              "fell"            
## [22234] "grim"             "beneath"          "deem"            
## [22237] "well"             "see"              "speak"           
## [22240] "said"             "wizard"           "gandalf"         
## [22243] "returned"         "behold"           "bring"           
## [22246] "back"             "horse"            "shadowfax"       
## [22249] "great"            "hand"             "can"             
## [22252] "tame"             "beside"           "aragorn"         
## [22255] "son"              "arathorn"         "heir"            
## [22258] "kings"            "mundburg"         "goes"            
## [22261] "also"             "legolas"          "elf"             
## [22264] "gimli"            "dwarf"            "comrades"        
## [22267] "go"               "now"              "say"             
## [22270] "master"           "gates"            "speech"          
## [22273] "permit"           "us"               "come"            
## [22276] "hall"             "strange"          "names"           
## [22279] "give"             "indeed"           "report"          
## [22282] "bid"              "learn"            "masters"         
## [22285] "said"             "guard"            "wait"            
## [22288] "little"           "bring"            "answer"          
## [22291] "seems"            "good"             "hope"            
## [22294] "much"             "dark"             "days"            
## [22297] "went"             "swiftly"          "away"            
## [22300] "leaving"          "strangers"        "watchful"        
## [22303] "keeping"          "comrades"         "time"            
## [22306] "returned"         "follow"           "said"            
## [22309] "théoden"          "gives"            "leave"           
## [22312] "enter"            "weapon"           "bear"            
## [22315] "staff"            "must"             "leave"           
## [22318] "threshold"        "doorwardens"      "keep"            
## [22321] "dark"             "gates"            "swung"           
## [22324] "open"             "travellers"       "entered"         
## [22327] "walking"          "file"             "behind"          
## [22330] "guide"            "found"            "broad"           
## [22333] "path"             "paved"            "hewn"            
## [22336] "stones"           "now"              "winding"         
## [22339] "upward"           "now"              "climbing"        
## [22342] "short"            "flights"          "well"            
## [22345] "laid"             "steps"            "many"            
## [22348] "houses"           "built"            "wood"            
## [22351] "many"             "dark"             "doors"           
## [22354] "passed"           "beside"           "way"             
## [22357] "stone"            "channel"          "stream"          
## [22360] "clear"            "water"            "flowed"          
## [22363] "sparkling"        "chattering"       "length"          
## [22366] "came"             "crown"            "hill"            
## [22369] "stood"            "high"             "platform"        
## [22372] "green"            "terrace"          "foot"            
## [22375] "bright"           "spring"           "gushed"          
## [22378] "stone"            "carved"           "likeness"        
## [22381] "horses"           "head"             "beneath"         
## [22384] "wide"             "basin"            "water"           
## [22387] "spilled"          "fed"              "falling"         
## [22390] "stream"           "green"            "terrace"         
## [22393] "went"             "stair"            "stone"           
## [22396] "high"             "broad"            "either"          
## [22399] "side"             "topmost"          "step"            
## [22402] "stone"            "hewn"             "sea"             
## [22405] "sat"              "guards"           "drawn"           
## [22408] "swords"           "laid"             "upon"            
## [22411] "knees"            "golden"           "hair"            
## [22414] "braided"          "shoulders"        "sun"             
## [22417] "blazoned"         "upon"             "green"           
## [22420] "shields"          "long"             "corslets"        
## [22423] "burnished"        "bright"           "rose"            
## [22426] "taller"           "seemed"           "mortal"          
## [22429] "men"              "doors"            "said"            
## [22432] "guide"            "must"             "return"          
## [22435] "now"              "duty"             "gate"            
## [22438] "farewell"         "may"              "lord"            
## [22441] "mark"             "gracious"         "turned"          
## [22444] "went"             "swiftly"          "back"            
## [22447] "road"             "others"           "climbed"         
## [22450] "long"             "stair"            "eyes"            
## [22453] "tall"             "watchmen"         "silent"          
## [22456] "stood"            "now"              "spoke"           
## [22459] "word"             "gandalf"          "stepped"         
## [22462] "upon"             "paved"            "terrace"         
## [22465] "stairs"           "head"             "suddenly"        
## [22468] "clear"            "voices"           "spoke"           
## [22471] "courteous"        "greeting"         "tongue"          
## [22474] "hail"             "corners"          "afar"            
## [22477] "said"             "turned"           "hilts"           
## [22480] "swords"           "towards"          "travellers"      
## [22483] "token"            "peace"            "green"           
## [22486] "gems"             "flashed"          "sunlight"        
## [22489] "one"              "guards"           "stepped"         
## [22492] "forward"          "spoke"            "common"          
## [22495] "speech"           "doorward"         "théoden"         
## [22498] "said"             "háma"             "name"            
## [22501] "must"             "bid"              "lay"             
## [22504] "aside"            "weapons"          "enter"           
## [22507] "legolas"          "gave"             "hand"            
## [22510] "silver"           "hafted"           "knife"           
## [22513] "quiver"           "bow"              "keep"            
## [22516] "well"             "said"             "come"            
## [22519] "golden"           "wood"             "lady"            
## [22522] "lothlórien"       "gave"             "wonder"          
## [22525] "came"             "mans"             "eyes"            
## [22528] "laid"             "weapons"          "hastily"         
## [22531] "wall"             "feared"           "handle"          
## [22534] "man"              "touch"            "promise"         
## [22537] "said"             "aragorn"          "stood"           
## [22540] "hesitating"       "said"             "put"             
## [22543] "aside"            "sword"            "deliver"         
## [22546] "andúril"          "hand"             "man"             
## [22549] "théoden"          "said"             "háma"            
## [22552] "clear"            "théoden"          "son"             
## [22555] "thengel"          "even"             "though"          
## [22558] "lord"             "mark"             "prevail"         
## [22561] "aragorn"          "son"              "arathorn"        
## [22564] "elendils"         "heir"             "gondor"          
## [22567] "house"            "théoden"          "aragorn"         
## [22570] "even"             "king"             "gondor"          
## [22573] "seat"             "denethor"         "said"            
## [22576] "háma"             "stepping"         "swiftly"         
## [22579] "doors"            "barring"          "way"             
## [22582] "sword"            "now"              "hand"            
## [22585] "point"            "towards"          "strangers"       
## [22588] "idle"             "talk"             "said"            
## [22591] "gandalf"          "needless"         "théodens"        
## [22594] "demand"           "useless"          "refuse"          
## [22597] "king"             "way"              "hall"            
## [22600] "folly"            "wisdom"           "truly"           
## [22603] "said"             "aragorn"          "master"          
## [22606] "house"            "bade"             "woodmans"        
## [22609] "cot"              "bore"             "now"             
## [22612] "sword"            "andúril"          "whatever"        
## [22615] "name"             "may"              "said"            
## [22618] "háma"             "shall"            "lay"             
## [22621] "fight"            "alone"            "men"             
## [22624] "edoras"           "alone"            "said"            
## [22627] "gimli"            "fingering"        "blade"           
## [22630] "axe"              "looking"          "darkly"          
## [22633] "guard"            "young"            "tree"            
## [22636] "gimli"            "mind"             "fell"            
## [22639] "alone"            "come"             "come"            
## [22642] "said"             "gandalf"          "friends"         
## [22645] "laughter"         "mordor"           "reward"          
## [22648] "quarrel"          "errand"           "pressing"        
## [22651] "least"            "sword"            "goodman"         
## [22654] "háma"             "keep"             "well"            
## [22657] "glamdring"        "called"           "elves"           
## [22660] "made"             "long"             "ago"             
## [22663] "now"              "let"              "pass"            
## [22666] "come"             "aragorn"          "slowly"          
## [22669] "aragorn"          "unbuckled"        "belt"            
## [22672] "set"              "sword"            "upright"         
## [22675] "wall"             "set"              "said"            
## [22678] "command"          "touch"            "permit"          
## [22681] "lay"              "hand"             "elvish"          
## [22684] "heath"            "dwells"           "blade"           
## [22687] "broken"           "made"             "telchar"         
## [22690] "first"            "wrought"          "deeps"           
## [22693] "time"             "death"            "shall"           
## [22696] "come"             "man"              "draws"           
## [22699] "elendils"         "sword"            "save"            
## [22702] "elendils"         "heir"             "guard"           
## [22705] "stepped"          "back"             "looked"          
## [22708] "amazement"        "aragorn"          "seems"           
## [22711] "come"             "wings"            "song"            
## [22714] "forgotten"        "days"             "said"            
## [22717] "shall"            "lord"             "command"         
## [22720] "well"             "said"             "gimli"           
## [22723] "andúril"          "keep"             "company"         
## [22726] "axe"              "may"              "stay"            
## [22729] "without"          "shame"            "laid"            
## [22732] "floor"            "now"              "wish"            
## [22735] "let"              "us"               "go"              
## [22738] "speak"            "master"           "guard"           
## [22741] "still"            "hesitated"        "staff"           
## [22744] "said"             "gandalf"          "forgive"         
## [22747] "must"             "left"             "doors"           
## [22750] "foolishness"      "said"             "gandalf"         
## [22753] "prudence"         "one"              "thing"           
## [22756] "discourtesy"      "another"          "old"             
## [22759] "may"              "lean"             "stick"           
## [22762] "go"               "sit"              "pleases"         
## [22765] "théoden"          "hobble"           "speak"           
## [22768] "aragorn"          "laughed"          "every"           
## [22771] "man"              "something"        "dear"            
## [22774] "trust"            "another"          "part"            
## [22777] "old"              "man"              "support"         
## [22780] "come"             "let"              "us"              
## [22783] "enter"            "staff"            "hand"            
## [22786] "wizard"           "may"              "prop"            
## [22789] "age"              "said"             "háma"            
## [22792] "looked"           "hard"             "ash"             
## [22795] "staff"            "gandalf"          "leaned"          
## [22798] "yet"              "doubt"            "man"             
## [22801] "worth"            "trust"            "wisdom"          
## [22804] "believe"          "friends"          "folk"            
## [22807] "worthy"           "honour"           "evil"            
## [22810] "purpose"          "may"              "go"              
## [22813] "guards"           "now"              "lifted"          
## [22816] "heavy"            "bars"             "doors"           
## [22819] "swung"            "slowly"           "inwards"         
## [22822] "grumbling"        "great"            "hinges"          
## [22825] "travellers"       "entered"          "inside"          
## [22828] "seemed"           "dark"             "warm"            
## [22831] "clear"            "air"              "upon"            
## [22834] "hill"             "hall"             "long"            
## [22837] "wide"             "filled"           "shadows"         
## [22840] "half"             "lights"           "mighty"          
## [22843] "pillars"          "upheld"           "lofty"           
## [22846] "roof"             "bright"           "sunbeams"        
## [22849] "fell"             "glimmering"       "shafts"          
## [22852] "eastern"          "windows"          "high"            
## [22855] "deep"             "eaves"            "louver"          
## [22858] "roof"             "thin"             "wisps"           
## [22861] "issuing"          "smoke"            "sky"             
## [22864] "showed"           "pale"             "blue"            
## [22867] "eyes"             "changed"          "travellers"      
## [22870] "perceived"        "floor"            "paved"           
## [22873] "stones"           "many"             "hues"            
## [22876] "branching"        "runes"            "strange"         
## [22879] "devices"          "intertwined"      "beneath"         
## [22882] "feet"             "saw"              "now"             
## [22885] "pillars"          "richly"           "carved"          
## [22888] "gleaming"         "dully"            "gold"            
## [22891] "half"             "seen"             "colours"         
## [22894] "many"             "woven"            "cloths"          
## [22897] "hung"             "upon"             "walls"           
## [22900] "wide"             "spaces"           "marched"         
## [22903] "figures"          "ancient"          "legend"          
## [22906] "dim"              "years"            "darkling"        
## [22909] "shade"            "upon"             "one"             
## [22912] "form"             "sunlight"         "fell"            
## [22915] "young"            "man"              "upon"            
## [22918] "white"            "horse"            "blowing"         
## [22921] "great"            "horn"             "yellow"          
## [22924] "hair"             "flying"           "wind"            
## [22927] "horses"           "head"             "lifted"          
## [22930] "nostrils"         "wide"             "red"             
## [22933] "neighed"          "smelling"         "battle"          
## [22936] "afar"             "foaming"          "water"           
## [22939] "green"            "white"            "rushed"          
## [22942] "curled"           "knees"            "behold"          
## [22945] "eorl"             "young"            "said"            
## [22948] "aragorn"          "thus"             "rode"            
## [22951] "north"            "battle"           "field"           
## [22954] "celebrant"        "now"              "four"            
## [22957] "companions"       "went"             "forward"         
## [22960] "past"             "clear"            "wood"            
## [22963] "fire"             "burning"          "upon"            
## [22966] "long"             "hearth"           "midst"           
## [22969] "hall"             "halted"           "far"             
## [22972] "end"              "house"            "beyond"          
## [22975] "hearth"           "facing"           "north"           
## [22978] "towards"          "doors"            "dais"            
## [22981] "three"            "steps"            "middle"          
## [22984] "dais"             "great"            "gilded"          
## [22987] "chair"            "upon"             "sat"             
## [22990] "man"              "bent"             "age"             
## [22993] "seemed"           "almost"           "dwarf"           
## [22996] "white"            "hair"             "long"            
## [22999] "thick"            "fell"             "great"           
## [23002] "braids"           "beneath"          "thin"            
## [23005] "golden"           "circle"           "set"             
## [23008] "upon"             "brow"             "centre"          
## [23011] "upon"             "forehead"         "shone"           
## [23014] "single"           "white"            "diamond"         
## [23017] "beard"            "laid"             "like"            
## [23020] "snow"             "upon"             "knees"           
## [23023] "eyes"             "still"            "burned"          
## [23026] "bright"           "light"            "glinting"        
## [23029] "gazed"            "strangers"        "behind"          
## [23032] "chair"            "stood"            "woman"           
## [23035] "clad"             "white"            "feet"            
## [23038] "upon"             "steps"            "sat"             
## [23041] "wizened"          "figure"           "man"             
## [23044] "pale"             "wise"             "face"            
## [23047] "heavy"            "lidded"           "eyes"            
## [23050] "silence"          "old"              "man"             
## [23053] "move"             "chair"            "length"          
## [23056] "gandalf"          "spoke"            "hail"            
## [23059] "théoden"          "son"              "thengel"         
## [23062] "returned"         "behold"           "storm"           
## [23065] "comes"            "now"              "friends"         
## [23068] "gather"           "together"         "lest"            
## [23071] "singly"           "destroyed"        "slowly"          
## [23074] "old"              "man"              "rose"            
## [23077] "feet"             "leaning"          "heavily"         
## [23080] "upon"             "short"            "black"           
## [23083] "staff"            "handle"           "white"           
## [23086] "bone"             "now"              "strangers"       
## [23089] "saw"              "bent"             "though"          
## [23092] "still"            "tall"             "must"            
## [23095] "youth"            "high"             "proud"           
## [23098] "indeed"           "greet"            "said"            
## [23101] "maybe"            "look"             "welcome"         
## [23104] "truth"            "tell"             "welcome"         
## [23107] "doubtful"         "master"           "gandalf"         
## [23110] "ever"             "herald"           "woe"             
## [23113] "troubles"         "follow"           "like"            
## [23116] "crows"            "ever"             "oftener"         
## [23119] "worse"            "deceive"          "heard"           
## [23122] "shadowfax"        "come"             "back"            
## [23125] "riderless"        "rejoiced"         "return"          
## [23128] "horse"            "still"            "lack"            
## [23131] "rider"            "éomer"            "brought"         
## [23134] "tidings"          "gone"             "last"            
## [23137] "long"             "home"             "mourn"           
## [23140] "news"             "afar"             "seldom"          
## [23143] "sooth"            "come"             "come"            
## [23146] "evils"            "worse"            "might"           
## [23149] "expected"         "welcome"          "gandalf"         
## [23152] "stormcrow"        "tell"             "slowly"          
## [23155] "sat"              "chair"            "speak"           
## [23158] "justly"           "lord"             "said"            
## [23161] "pale"             "man"              "sitting"         
## [23164] "upon"             "steps"            "dais"            
## [23167] "yet"              "five"             "days"            
## [23170] "since"            "bitter"           "tidings"         
## [23173] "came"             "théodred"         "son"             
## [23176] "slain"            "upon"             "west"            
## [23179] "marches"          "right"            "hand"            
## [23182] "second"           "marshal"          "mark"            
## [23185] "éomer"            "little"           "trust"           
## [23188] "men"              "left"             "guard"           
## [23191] "walls"            "allowed"          "rule"            
## [23194] "even"             "now"              "learn"           
## [23197] "gondor"           "dark"             "lord"            
## [23200] "stirring"         "east"             "hour"            
## [23203] "wanderer"         "chooses"          "return"          
## [23206] "indeed"           "welcome"          "master"          
## [23209] "stormcrow"        "láthspell"        "name"            
## [23212] "ill"              "news"             "ill"             
## [23215] "news"             "ill"              "guest"           
## [23218] "say"              "laughed"          "grimly"          
## [23221] "lifted"           "heavy"            "lids"            
## [23224] "moment"           "gazed"            "strangers"       
## [23227] "dark"             "eyes"             "held"            
## [23230] "wise"             "friend"           "wormtongue"      
## [23233] "doubtless"        "great"            "support"         
## [23236] "master"           "answered"         "gandalf"         
## [23239] "soft"             "voice"            "yet"             
## [23242] "two"              "ways"             "may"             
## [23245] "man"              "come"             "evil"            
## [23248] "tidings"          "lie"              "may"             
## [23251] "worker"           "evil"             "may"             
## [23254] "leaves"           "well"             "alone"           
## [23257] "comes"            "bring"            "aid"             
## [23260] "time"             "need"             "said"            
## [23263] "wormtongue"       "third"            "kind"            
## [23266] "pickers"          "bones"            "meddlers"        
## [23269] "mens"             "sorrows"          "carrion"         
## [23272] "fowl"             "grow"             "fat"             
## [23275] "war"              "aid"              "ever"            
## [23278] "brought"          "stormcrow"        "aid"             
## [23281] "bring"            "now"              "aid"             
## [23284] "us"               "sought"           "last"            
## [23287] "time"             "lord"             "bade"            
## [23290] "choose"           "horse"            "gone"            
## [23293] "wonder"           "took"             "shadowfax"       
## [23296] "insolence"        "lord"             "sorely"          
## [23299] "grieved"          "yet"              "seemed"          
## [23302] "speed"            "land"             "price"           
## [23305] "great"            "guess"            "likely"          
## [23308] "turn"             "seek"             "aid"             
## [23311] "rather"           "render"           "bring"           
## [23314] "men"              "bring"            "horses"          
## [23317] "swords"           "spears"           "call"            
## [23320] "aid"              "present"          "need"            
## [23323] "follow"           "tail"             "three"           
## [23326] "ragged"           "wanderers"        "grey"            
## [23329] "beggar"           "like"             "four"            
## [23332] "courtesy"         "hall"             "somewhat"        
## [23335] "lessened"         "late"             "théoden"         
## [23338] "son"              "thengel"          "said"            
## [23341] "gandalf"          "messenger"        "gate"            
## [23344] "reported"         "names"            "companions"      
## [23347] "seldom"           "lord"             "rohan"           
## [23350] "received"         "three"            "guests"          
## [23353] "weapons"          "laid"             "doors"           
## [23356] "worth"            "many"             "mortal"          
## [23359] "man"              "even"             "mightiest"       
## [23362] "grey"             "raiment"          "elves"           
## [23365] "clad"             "thus"             "passed"          
## [23368] "shadow"           "great"            "perils"          
## [23371] "hall"             "true"             "éomer"           
## [23374] "reported"         "league"           "sorceress"       
## [23377] "golden"           "wood"             "said"            
## [23380] "wormtongue"       "wondered"         "webs"            
## [23383] "deceit"           "ever"             "woven"           
## [23386] "dwimordene"       "gimli"            "strode"          
## [23389] "pace"             "forward"          "felt"            
## [23392] "suddenly"         "hand"             "gandalf"         
## [23395] "clutch"           "shoulder"         "halted"          
## [23398] "standing"         "stiff"            "stone"           
## [23401] "dwimordene"       "lórien"           "seldom"          
## [23404] "walked"           "feet"             "men"             
## [23407] "mortal"           "eyes"             "seen"            
## [23410] "light"            "lies"             "ever"            
## [23413] "long"             "bright"           "galadriel"       
## [23416] "galadriel"        "clear"            "water"           
## [23419] "well"             "white"            "star"            
## [23422] "white"            "hand"             "unmarred"        
## [23425] "unstained"        "leaf"             "land"            
## [23428] "dwimordene"       "lórien"           "fair"            
## [23431] "thoughts"         "mortal"           "men"             
## [23434] "thus"             "gandalf"          "softly"          
## [23437] "sang"             "suddenly"         "changed"         
## [23440] "casting"          "tattered"         "cloak"           
## [23443] "aside"            "stood"            "leaned"          
## [23446] "longer"           "staff"            "spoke"           
## [23449] "clear"            "cold"             "voice"           
## [23452] "wise"             "speak"            "know"            
## [23455] "gríma"            "son"              "gálmód"          
## [23458] "witless"          "worm"             "become"          
## [23461] "therefore"        "silent"           "keep"            
## [23464] "forked"           "tongue"           "behind"          
## [23467] "teeth"            "passed"           "fire"            
## [23470] "death"            "bandy"            "crooked"         
## [23473] "words"            "serving"          "man"             
## [23476] "till"             "lightning"        "falls"           
## [23479] "raised"           "staff"            "roll"            
## [23482] "thunder"          "sunlight"         "blotted"         
## [23485] "eastern"          "windows"          "whole"           
## [23488] "hall"             "became"           "suddenly"        
## [23491] "dark"             "night"            "fire"            
## [23494] "faded"            "sullen"           "embers"          
## [23497] "gandalf"          "seen"             "standing"        
## [23500] "white"            "tall"             "blackened"       
## [23503] "hearth"           "gloom"            "heard"           
## [23506] "hiss"             "wormtongues"      "voice"           
## [23509] "counsel"          "lord"             "forbid"          
## [23512] "staff"            "fool"             "háma"            
## [23515] "betrayed"         "us"               "flash"           
## [23518] "lightning"        "cloven"           "roof"            
## [23521] "silent"           "wormtongue"       "sprawled"        
## [23524] "face"             "now"              "théoden"         
## [23527] "son"              "thengel"          "hearken"         
## [23530] "said"             "gandalf"          "ask"             
## [23533] "help"             "lifted"           "staff"           
## [23536] "pointed"          "high"             "window"          
## [23539] "darkness"         "seemed"           "clear"           
## [23542] "opening"          "seen"             "high"            
## [23545] "far"              "patch"            "shining"         
## [23548] "sky"              "dark"             "take"            
## [23551] "courage"          "lord"             "mark"            
## [23554] "better"           "help"             "find"            
## [23557] "counsel"          "give"             "despair"         
## [23560] "yet"              "counsel"          "give"            
## [23563] "words"            "speak"            "hear"            
## [23566] "ears"             "bid"              "come"            
## [23569] "doors"            "look"             "abroad"          
## [23572] "long"             "sat"              "shadows"         
## [23575] "trusted"          "twisted"          "tales"           
## [23578] "crooked"          "promptings"       "slowly"          
## [23581] "théoden"          "left"             "chair"           
## [23584] "faint"            "light"            "grew"            
## [23587] "hall"             "woman"            "hastened"        
## [23590] "kings"            "side"             "taking"          
## [23593] "arm"              "faltering"        "steps"           
## [23596] "old"              "man"              "came"            
## [23599] "dais"             "paced"            "softly"          
## [23602] "hall"             "wormtongue"       "remained"        
## [23605] "lying"            "floor"            "came"            
## [23608] "doors"            "gandalf"          "knocked"         
## [23611] "open"             "cried"            "lord"            
## [23614] "mark"             "comes"            "forth"           
## [23617] "doors"            "rolled"           "back"            
## [23620] "keen"             "air"              "came"            
## [23623] "whistling"        "wind"             "blowing"         
## [23626] "hill"             "send"             "guards"          
## [23629] "stairs"           "foot"             "said"            
## [23632] "gandalf"          "lady"             "leave"           
## [23635] "care"             "go"               "éowyn"           
## [23638] "sister"           "daughter"         "said"            
## [23641] "old"              "king"             "time"            
## [23644] "fear"             "past"             "woman"           
## [23647] "turned"           "went"             "slowly"          
## [23650] "house"            "passed"           "doors"           
## [23653] "turned"           "looked"           "back"            
## [23656] "grave"            "thoughtful"       "glance"          
## [23659] "looked"           "king"             "cool"            
## [23662] "pity"             "eyes"             "fair"            
## [23665] "face"             "long"             "hair"            
## [23668] "like"             "river"            "gold"            
## [23671] "slender"          "tall"             "white"           
## [23674] "robe"             "girt"             "silver"          
## [23677] "strong"           "seemed"           "stern"           
## [23680] "steel"            "daughter"         "kings"           
## [23683] "thus"             "aragorn"          "first"           
## [23686] "time"             "full"             "light"           
## [23689] "day"              "beheld"           "éowyn"           
## [23692] "lady"             "rohan"            "thought"         
## [23695] "fair"             "fair"             "cold"            
## [23698] "like"             "morning"          "pale"            
## [23701] "spring"           "yet"              "come"            
## [23704] "womanhood"        "now"              "suddenly"        
## [23707] "aware"            "tall"             "heir"            
## [23710] "kings"            "wise"             "many"            
## [23713] "winters"          "greycloaked"      "hiding"          
## [23716] "power"            "yet"              "felt"            
## [23719] "moment"           "still"            "stone"           
## [23722] "stood"            "turning"          "swiftly"         
## [23725] "gone"             "now"              "lord"            
## [23728] "said"             "gandalf"          "look"            
## [23731] "upon"             "land"             "breathe"         
## [23734] "free"             "air"              "porch"           
## [23737] "upon"             "top"              "high"            
## [23740] "terrace"          "see"              "beyond"          
## [23743] "stream"           "green"            "fields"          
## [23746] "rohan"            "fading"           "distant"         
## [23749] "grey"             "curtains"         "wind"            
## [23752] "blown"            "rain"             "slanting"        
## [23755] "sky"              "west"             "still"           
## [23758] "dark"             "thunder"          "lightning"       
## [23761] "far"              "away"             "flickered"       
## [23764] "among"            "tops"             "hidden"          
## [23767] "hills"            "wind"             "shifted"         
## [23770] "north"            "already"          "storm"           
## [23773] "come"             "east"             "receding"        
## [23776] "rolling"          "away"             "southward"       
## [23779] "sea"              "suddenly"         "rent"            
## [23782] "clouds"           "behind"           "shaft"           
## [23785] "sun"              "stabbed"          "falling"         
## [23788] "showers"          "gleamed"          "like"            
## [23791] "silver"           "far"              "away"            
## [23794] "river"            "glittered"        "like"            
## [23797] "shimmering"       "glass"            "dark"            
## [23800] "said"             "théoden"          "said"            
## [23803] "gandalf"          "age"              "lie"             
## [23806] "heavily"          "shoulders"        "think"           
## [23809] "cast"             "aside"            "prop"            
## [23812] "kings"            "hand"             "black"           
## [23815] "staff"            "fell"             "clattering"      
## [23818] "stones"           "drew"             "slowly"          
## [23821] "man"              "stiff"            "long"            
## [23824] "bending"          "dull"             "toil"            
## [23827] "now"              "tall"             "straight"        
## [23830] "stood"            "eyes"             "blue"            
## [23833] "looked"           "opening"          "sky"             
## [23836] "dark"             "dreams"           "late"            
## [23839] "said"             "feel"             "one"             
## [23842] "new"              "awakened"         "now"             
## [23845] "come"             "gandalf"          "fear"            
## [23848] "already"          "come"             "late"            
## [23851] "see"              "last"             "days"            
## [23854] "house"            "long"             "now"             
## [23857] "shall"            "stand"            "high"            
## [23860] "hall"             "brego"            "son"             
## [23863] "eorl"             "built"            "fire"            
## [23866] "shall"            "devour"           "high"            
## [23869] "seat"             "done"             "much"            
## [23872] "said"             "gandalf"          "first"           
## [23875] "send"             "éomer"            "guess"           
## [23878] "rightly"          "hold"             "prisoner"        
## [23881] "counsel"          "gríma"            "save"            
## [23884] "name"             "wormtongue"       "true"            
## [23887] "said"             "théoden"          "rebelled"        
## [23890] "commands"         "threatened"       "death"           
## [23893] "gríma"            "hall"             "man"             
## [23896] "may"              "love"             "yet"             
## [23899] "love"             "wormtongue"       "counsels"        
## [23902] "said"             "gandalf"          "may"             
## [23905] "ask"              "call"             "háma"            
## [23908] "since"            "proved"           "untrusty"        
## [23911] "doorward"         "let"              "become"          
## [23914] "errand"           "runner"           "guilty"          
## [23917] "shall"            "bring"            "guilty"          
## [23920] "judgement"        "said"             "théoden"         
## [23923] "voice"            "grim"             "yet"             
## [23926] "looked"           "gandalf"          "smiled"          
## [23929] "many"             "lines"            "care"            
## [23932] "smoothed"         "away"             "return"          
## [23935] "háma"             "summoned"         "gone"            
## [23938] "gandalf"          "led"              "théoden"         
## [23941] "stone"            "seat"             "sat"             
## [23944] "king"             "upon"             "topmost"         
## [23947] "stair"            "aragorn"          "companions"      
## [23950] "stood"            "nearby"           "time"            
## [23953] "tell"             "hear"             "said"            
## [23956] "gandalf"          "yet"              "hope"            
## [23959] "cheated"          "time"             "come"            
## [23962] "ere"              "long"             "can"             
## [23965] "speak"            "fully"            "behold"          
## [23968] "come"             "peril"            "greater"         
## [23971] "even"             "wit"              "wormtongue"      
## [23974] "weave"            "dreams"           "see"             
## [23977] "dream"            "longer"           "live"            
## [23980] "gondor"           "rohan"            "stand"           
## [23983] "alone"            "enemy"            "strong"          
## [23986] "beyond"           "reckoning"        "yet"             
## [23989] "hope"             "guessed"          "quickly"         
## [23992] "now"              "gandalf"          "spoke"           
## [23995] "voice"            "low"              "secret"          
## [23998] "none"             "save"             "king"            
## [24001] "heard"            "said"             "ever"            
## [24004] "spoke"            "light"            "shone"           
## [24007] "brighter"         "théodens"         "eye"             
## [24010] "last"             "rose"             "seat"            
## [24013] "full"             "height"           "gandalf"         
## [24016] "beside"           "together"         "looked"          
## [24019] "high"             "place"            "towards"         
## [24022] "east"             "verily"           "said"            
## [24025] "gandalf"          "now"              "loud"            
## [24028] "voice"            "keen"             "clear"           
## [24031] "way"              "lies"             "hope"            
## [24034] "sits"             "greatest"         "fear"            
## [24037] "doom"             "hangs"            "still"           
## [24040] "thread"           "yet"              "hope"            
## [24043] "still"            "can"              "stand"           
## [24046] "unconquered"      "little"           "others"          
## [24049] "now"              "turned"           "eyes"            
## [24052] "eastward"         "sundering"        "leagues"         
## [24055] "land"             "far"              "away"            
## [24058] "gazed"            "edge"             "sight"           
## [24061] "hope"             "fear"             "bore"            
## [24064] "thoughts"         "still"            "beyond"          
## [24067] "dark"             "mountains"        "land"            
## [24070] "shadow"           "now"              "ring"            
## [24073] "bearer"           "thin"             "indeed"          
## [24076] "thread"           "upon"             "doom"            
## [24079] "still"            "hung"             "seemed"          
## [24082] "legolas"          "strained"         "farseeing"       
## [24085] "eyes"             "caught"           "glint"           
## [24088] "white"            "far"              "away"            
## [24091] "perchance"        "sun"              "twinkled"        
## [24094] "pinnacle"         "tower"            "guard"           
## [24097] "still"            "endlessly"        "remote"          
## [24100] "yet"              "present"          "threat"          
## [24103] "tiny"             "tongue"           "flame"           
## [24106] "slowly"           "théoden"          "sat"             
## [24109] "weariness"        "still"            "struggled"       
## [24112] "master"           "gandalf"          "turned"          
## [24115] "looked"           "great"            "house"           
## [24118] "alas"             "said"             "evil"            
## [24121] "days"             "mine"             "come"            
## [24124] "old"              "age"              "instead"         
## [24127] "peace"            "earned"           "alas"            
## [24130] "boromir"          "brave"            "young"           
## [24133] "perish"           "old"              "linger"          
## [24136] "withering"        "clutched"         "knees"           
## [24139] "wrinkled"         "hands"            "fingers"         
## [24142] "remember"         "old"              "strength"        
## [24145] "better"           "grasped"          "sword"           
## [24148] "hilt"             "said"             "gandalf"         
## [24151] "théoden"          "rose"             "put"             
## [24154] "hand"             "side"             "sword"           
## [24157] "hung"             "belt"             "gríma"           
## [24160] "stowed"           "muttered"         "breath"          
## [24163] "take"             "dear"             "lord"            
## [24166] "said"             "clear"            "voice"           
## [24169] "ever"             "service"          "two"             
## [24172] "men"              "come"             "softly"          
## [24175] "stair"            "stood"            "now"             
## [24178] "steps"            "top"              "éomer"           
## [24181] "helm"             "head"             "mail"            
## [24184] "breast"           "hand"             "held"            
## [24187] "drawn"            "sword"            "knelt"           
## [24190] "offered"          "hilt"             "master"          
## [24193] "comes"            "said"             "théoden"         
## [24196] "sternly"          "turned"           "towards"         
## [24199] "éomer"            "men"              "looked"          
## [24202] "wonder"           "standing"         "now"             
## [24205] "proud"            "erect"            "old"             
## [24208] "man"              "left"             "crouching"       
## [24211] "chair"            "leaning"          "stick"           
## [24214] "lord"             "said"             "háma"            
## [24217] "trembling"        "understood"       "éomer"           
## [24220] "set"              "free"             "joy"             
## [24223] "heart"            "maybe"            "erred"           
## [24226] "yet"              "since"            "free"            
## [24229] "marshal"          "mark"             "brought"         
## [24232] "sword"            "bade"             "lay"             
## [24235] "feet"             "lord"             "said"            
## [24238] "éomer"            "moment"           "silence"         
## [24241] "théoden"          "stood"            "looking"         
## [24244] "éomer"            "knelt"            "still"           
## [24247] "neither"          "moved"            "take"            
## [24250] "sword"            "said"             "gandalf"         
## [24253] "slowly"           "théoden"          "stretched"       
## [24256] "forth"            "hand"             "fingers"         
## [24259] "took"             "hilt"             "seemed"          
## [24262] "watchers"         "firmness"         "strength"        
## [24265] "returned"         "thin"             "arm"             
## [24268] "suddenly"         "lifted"           "blade"           
## [24271] "swung"            "shimmering"       "whistling"       
## [24274] "air"              "gave"             "great"           
## [24277] "cry"              "voice"            "rang"            
## [24280] "clear"            "chanted"          "tongue"          
## [24283] "rohan"            "call"             "arms"            
## [24286] "arise"            "now"              "arise"           
## [24289] "riders"           "théoden"          "dire"            
## [24292] "deeds"            "awake"            "dark"            
## [24295] "eastward"         "let"              "horse"           
## [24298] "bridled"          "horn"             "sounded"         
## [24301] "forth"            "eorlingas"        "guards"          
## [24304] "thinking"         "summoned"         "sprang"          
## [24307] "stair"            "looked"           "lord"            
## [24310] "amazement"        "one"              "man"             
## [24313] "drew"             "swords"           "laid"            
## [24316] "feet"             "command"          "us"              
## [24319] "said"             "westu"            "théoden"         
## [24322] "hál"              "cried"            "éomer"           
## [24325] "joy"              "us"               "see"             
## [24328] "return"           "never"            "shall"           
## [24331] "said"             "gandalf"          "come"            
## [24334] "grief"            "take"             "back"            
## [24337] "sword"            "éomer"            "sister"          
## [24340] "son"              "said"             "king"            
## [24343] "go"               "háma"             "seek"            
## [24346] "sword"            "gríma"            "keeping"         
## [24349] "bring"            "also"             "now"             
## [24352] "gandalf"          "said"             "counsel"         
## [24355] "give"             "hear"             "counsel"         
## [24358] "already"          "taken"            "answered"        
## [24361] "gandalf"          "put"              "trust"           
## [24364] "éomer"            "rather"           "man"             
## [24367] "crooked"          "mind"             "cast"            
## [24370] "aside"            "regret"           "fear"            
## [24373] "deed"             "hand"             "every"           
## [24376] "man"              "can"              "ride"            
## [24379] "sent"             "west"             "éomer"           
## [24382] "counselled"       "must"             "first"           
## [24385] "destroy"          "threat"           "saruman"         
## [24388] "time"             "fail"             "fall"            
## [24391] "succeed"          "face"             "next"            
## [24394] "task"             "meanwhile"        "people"          
## [24397] "left"             "women"            "children"        
## [24400] "old"              "stay"             "refuges"         
## [24403] "mountains"        "prepared"         "just"            
## [24406] "evil"             "day"              "let"             
## [24409] "take"             "provision"        "delay"           
## [24412] "burden"           "treasures"        "great"           
## [24415] "small"            "lives"            "stake"           
## [24418] "counsel"          "seems"            "good"            
## [24421] "now"              "said"             "théoden"         
## [24424] "let"              "folk"             "get"             
## [24427] "ready"            "guests"           "truly"           
## [24430] "said"             "gandalf"          "courtesy"        
## [24433] "hall"             "lessened"         "ridden"          
## [24436] "night"            "morning"          "wears"           
## [24439] "away"             "neither"          "sleep"           
## [24442] "food"             "guest"            "house"           
## [24445] "shall"            "made"             "ready"           
## [24448] "shall"            "sleep"            "eaten"           
## [24451] "nay"              "lord"             "said"            
## [24454] "aragorn"          "rest"             "yet"             
## [24457] "weary"            "men"              "rohan"           
## [24460] "must"             "ride"             "forth"           
## [24463] "today"            "ride"             "axe"             
## [24466] "sword"            "bow"              "bring"           
## [24469] "rest"             "wall"             "lord"            
## [24472] "mark"             "promised"         "éomer"           
## [24475] "sword"            "drawn"            "together"        
## [24478] "now"              "indeed"           "hope"            
## [24481] "victory"          "said"             "éomer"           
## [24484] "hope"             "yes"              "said"            
## [24487] "gandalf"          "isengard"         "strong"          
## [24490] "perils"           "draw"             "ever"            
## [24493] "nearer"           "delay"            "théoden"         
## [24496] "gone"             "lead"             "people"          
## [24499] "swiftly"          "hold"             "dunharrow"       
## [24502] "hills"            "nay"              "gandalf"         
## [24505] "said"             "king"             "know"            
## [24508] "skill"            "healing"          "shall"           
## [24511] "go"               "war"              "fall"            
## [24514] "front"            "battle"           "must"            
## [24517] "thus"             "shall"            "sleep"           
## [24520] "better"           "even"             "defeat"          
## [24523] "rohan"            "glorious"         "song"            
## [24526] "said"             "aragorn"          "armed"           
## [24529] "men"              "stood"            "near"            
## [24532] "clashed"          "weapons"          "crying"          
## [24535] "lord"             "mark"             "ride"            
## [24538] "forth"            "eorlingas"        "people"          
## [24541] "must"             "unarmed"          "shepherdless"    
## [24544] "said"             "gandalf"          "shall"           
## [24547] "guide"            "govern"           "place"           
## [24550] "take"             "thought"          "ere"             
## [24553] "go"               "answered"         "théoden"         
## [24556] "comes"            "counsellor"       "moment"          
## [24559] "háma"             "came"             "hall"            
## [24562] "behind"           "cringing"         "two"             
## [24565] "men"              "came"             "gríma"           
## [24568] "wormtongue"       "face"             "white"           
## [24571] "eyes"             "blinked"          "sunlight"        
## [24574] "háma"             "knelt"            "presented"       
## [24577] "théoden"          "long"             "sword"           
## [24580] "scabbard"         "clasped"          "gold"            
## [24583] "set"              "green"            "gems"            
## [24586] "lord"             "herugrim"         "ancient"         
## [24589] "blade"            "said"             "found"           
## [24592] "chest"            "loth"             "render"          
## [24595] "keys"             "many"             "things"          
## [24598] "men"              "missed"           "lie"             
## [24601] "said"             "wormtongue"       "sword"           
## [24604] "master"           "gave"             "keeping"         
## [24607] "now"              "requires"         "said"            
## [24610] "théoden"          "displease"        "assuredly"       
## [24613] "lord"             "said"             "wormtongue"      
## [24616] "care"             "best"             "may"             
## [24619] "weary"            "tax"              "heavily"         
## [24622] "strength"         "let"              "others"          
## [24625] "deal"             "irksome"          "guests"          
## [24628] "meat"             "set"              "board"           
## [24631] "go"               "said"             "théoden"         
## [24634] "let"              "food"             "guests"          
## [24637] "set"              "board"            "beside"          
## [24640] "host"             "rides"            "today"           
## [24643] "send"             "heralds"          "forth"           
## [24646] "let"              "summon"           "dwell"           
## [24649] "nigh"             "every"            "man"             
## [24652] "strong"           "lad"              "able"            
## [24655] "bear"             "arms"             "horses"          
## [24658] "let"              "ready"            "saddle"          
## [24661] "gate"             "ere"              "second"          
## [24664] "hour"             "noon"             "dear"            
## [24667] "lord"             "cried"            "wormtongue"      
## [24670] "feared"           "wizard"           "bewitched"       
## [24673] "none"             "left"             "defend"          
## [24676] "golden"           "hall"             "fathers"         
## [24679] "treasure"         "none"             "guard"           
## [24682] "lord"             "mark"             "bewitchment"     
## [24685] "said"             "théoden"          "seems"           
## [24688] "wholesome"        "whisperings"      "leechcraft"      
## [24691] "ere"              "long"             "walking"         
## [24694] "fours"            "like"             "beast"           
## [24697] "one"              "shall"            "left"            
## [24700] "even"             "gríma"            "gríma"           
## [24703] "shall"            "ride"             "go"              
## [24706] "yet"              "time"             "clean"           
## [24709] "rust"             "sword"            "mercy"           
## [24712] "lord"             "whined"           "wormtongue"      
## [24715] "grovelling"       "ground"           "pity"            
## [24718] "one"              "worn"             "service"         
## [24721] "send"             "side"             "least"           
## [24724] "stand"            "others"           "gone"            
## [24727] "send"             "faithful"         "gríma"           
## [24730] "away"             "pity"             "said"            
## [24733] "théoden"          "send"             "side"            
## [24736] "go"               "war"              "men"             
## [24739] "bid"              "come"             "prove"           
## [24742] "faith"            "wormtongue"       "looked"          
## [24745] "face"             "face"             "eyes"            
## [24748] "hunted"           "look"             "beast"           
## [24751] "seeking"          "gap"              "ring"            
## [24754] "enemies"          "licked"           "lips"            
## [24757] "long"             "pale"             "tongue"          
## [24760] "resolve"          "might"            "expected"        
## [24763] "lord"             "house"            "eorl"            
## [24766] "old"              "though"           "said"            
## [24769] "truly"            "love"             "spare"           
## [24772] "failing"          "years"            "yet"             
## [24775] "see"              "come"             "late"            
## [24778] "others"           "death"            "lord"            
## [24781] "perhaps"          "grieve"           "less"            
## [24784] "already"          "persuaded"        "undo"            
## [24787] "work"             "hear"             "least"           
## [24790] "lord"             "one"              "knows"           
## [24793] "mind"             "honours"          "commands"        
## [24796] "left"             "edoras"           "appoint"         
## [24799] "faithful"         "steward"          "let"             
## [24802] "counsellor"       "gríma"            "keep"            
## [24805] "things"           "till"             "return"          
## [24808] "pray"             "may"              "see"             
## [24811] "though"           "wise"             "man"             
## [24814] "deem"             "hopeful"          "éomer"           
## [24817] "laughed"          "plea"             "excuse"          
## [24820] "war"              "noble"            "wormtongue"      
## [24823] "said"             "office"           "less"            
## [24826] "honour"           "accept"           "carry"           
## [24829] "sack"             "meal"             "mountains"       
## [24832] "man"              "trust"            "nay"             
## [24835] "éomer"            "fully"            "understand"      
## [24838] "mind"             "master"           "wormtongue"      
## [24841] "said"             "gandalf"          "turning"         
## [24844] "piercing"         "glance"           "upon"            
## [24847] "bold"             "cunning"          "even"            
## [24850] "now"              "plays"            "game"            
## [24853] "peril"            "wins"             "throw"           
## [24856] "hours"            "precious"         "time"            
## [24859] "wasted"           "already"          "snake"           
## [24862] "said"             "suddenly"         "terrible"        
## [24865] "voice"            "belly"            "long"            
## [24868] "since"            "saruman"          "bought"          
## [24871] "promised"         "price"            "men"             
## [24874] "dead"             "pick"             "share"           
## [24877] "treasure"         "take"             "woman"           
## [24880] "desire"           "long"             "watched"         
## [24883] "eyelids"          "haunted"          "steps"           
## [24886] "éomer"            "grasped"          "sword"           
## [24889] "knew"             "already"          "muttered"        
## [24892] "reason"           "slain"            "forgetting"      
## [24895] "law"              "hall"             "reasons"         
## [24898] "stepped"          "forward"          "gandalf"         
## [24901] "stayed"           "hand"             "éowyn"           
## [24904] "safe"             "now"              "said"            
## [24907] "wormtongue"       "done"             "true"            
## [24910] "master"           "reward"           "earned"          
## [24913] "least"            "yet"              "saruman"         
## [24916] "apt"              "overlook"         "bargains"        
## [24919] "advise"           "go"               "quickly"         
## [24922] "remind"           "lest"             "forget"          
## [24925] "faithful"         "service"          "lie"             
## [24928] "said"             "wormtongue"       "word"            
## [24931] "comes"            "oft"              "easy"            
## [24934] "lips"             "said"             "gandalf"         
## [24937] "lie"              "see"              "théoden"         
## [24940] "snake"            "safety"           "take"            
## [24943] "can"              "leave"            "behind"          
## [24946] "slay"             "just"             "always"          
## [24949] "now"              "man"              "service"         
## [24952] "fashion"          "give"             "horse"           
## [24955] "let"              "go"               "wherever"        
## [24958] "chooses"          "choice"           "shall"           
## [24961] "judge"            "hear"             "wormtongue"      
## [24964] "said"             "théoden"          "choice"          
## [24967] "ride"             "war"              "let"             
## [24970] "us"               "see"              "battle"          
## [24973] "whether"          "true"             "go"              
## [24976] "now"              "whither"          "ever"            
## [24979] "meet"             "shall"            "merciful"        
## [24982] "slowly"           "wormtongue"       "rose"            
## [24985] "looked"           "half"             "closed"          
## [24988] "eyes"             "last"             "scanned"         
## [24991] "théodens"         "face"             "opened"          
## [24994] "mouth"            "speak"            "suddenly"        
## [24997] "drew"             "hands"            "worked"          
## [25000] "eyes"             "glittered"        "malice"          
## [25003] "men"              "stepped"          "back"            
## [25006] "bared"            "teeth"            "hissing"         
## [25009] "breath"           "spat"             "kings"           
## [25012] "feet"             "darting"          "one"             
## [25015] "side"             "fled"             "stair"           
## [25018] "said"             "théoden"          "see"             
## [25021] "harm"             "hurt"             "hinder"          
## [25024] "give"             "horse"            "wishes"          
## [25027] "bear"             "said"             "éomer"           
## [25030] "one"              "guards"           "ran"             
## [25033] "stair"            "another"          "went"            
## [25036] "well"             "foot"             "terrace"         
## [25039] "helm"             "drew"             "water"           
## [25042] "washed"           "clean"            "stones"          
## [25045] "wormtongue"       "defiled"          "now"             
## [25048] "guests"           "come"             "said"            
## [25051] "théoden"          "come"             "take"            
## [25054] "refreshment"      "haste"            "allows"          
## [25057] "passed"           "back"             "great"           
## [25060] "house"            "already"          "heard"           
## [25063] "town"             "heralds"          "crying"          
## [25066] "war"              "horns"            "blowing"         
## [25069] "king"             "ride"             "forth"           
## [25072] "soon"             "men"              "town"            
## [25075] "dwelling"         "near"             "armed"           
## [25078] "assembled"        "kings"            "board"           
## [25081] "sat"              "éomer"            "four"            
## [25084] "guests"           "also"             "waiting"         
## [25087] "upon"             "king"             "lady"            
## [25090] "éowyn"            "ate"              "drank"           
## [25093] "swiftly"          "others"           "silent"          
## [25096] "théoden"          "questioned"       "gandalf"         
## [25099] "concerning"       "saruman"          "far"             
## [25102] "back"             "treachery"        "goes"            
## [25105] "can"              "guess"            "said"            
## [25108] "gandalf"          "always"           "evil"            
## [25111] "doubt"            "friend"           "rohan"           
## [25114] "even"             "heart"            "grew"            
## [25117] "colder"           "found"            "useful"          
## [25120] "still"            "long"             "now"             
## [25123] "plotted"          "ruin"             "wearing"         
## [25126] "mask"             "friendship"       "ready"           
## [25129] "years"            "wormtongues"      "task"            
## [25132] "easy"             "swiftly"          "known"           
## [25135] "isengard"         "land"             "open"            
## [25138] "strangers"        "came"             "went"            
## [25141] "ever"             "wormtongues"      "whispering"      
## [25144] "ears"             "poisoning"        "thought"         
## [25147] "chilling"         "heart"            "weakening"       
## [25150] "limbs"            "others"           "watched"         
## [25153] "nothing"          "keeping"          "escaped"         
## [25156] "warned"           "mask"             "torn"            
## [25159] "see"              "wormtongue"       "played"          
## [25162] "dangerously"      "always"           "seeking"         
## [25165] "delay"            "prevent"          "full"            
## [25168] "strength"         "gathered"         "crafty"          
## [25171] "dulling"          "mens"             "wariness"        
## [25174] "working"          "fears"            "served"          
## [25177] "occasion"         "remember"         "eagerly"         
## [25180] "urged"            "man"              "spared"          
## [25183] "wildgoose"        "chase"            "northward"       
## [25186] "immediate"        "peril"            "westward"        
## [25189] "persuaded"        "forbid"           "éomer"           
## [25192] "pursue"           "raiding"          "orcs"            
## [25195] "éomer"            "defied"           "wormtongues"     
## [25198] "voice"            "speaking"         "mouth"           
## [25201] "orcs"             "reached"          "isengard"        
## [25204] "now"              "bearing"          "great"           
## [25207] "prize"            "indeed"           "prize"           
## [25210] "saruman"          "desires"          "else"            
## [25213] "least"            "two"              "members"         
## [25216] "company"          "sharers"          "secret"          
## [25219] "hope"             "even"             "lord"            
## [25222] "yet"              "speak"            "openly"          
## [25225] "dare"             "think"            "might"           
## [25228] "now"              "suffering"        "saruman"         
## [25231] "might"            "now"              "learned"         
## [25234] "destruction"      "owe"              "much"            
## [25237] "éomer"            "said"             "théoden"         
## [25240] "faithful"         "heart"            "may"             
## [25243] "forward"          "tongue"           "say"             
## [25246] "also"             "said"             "gandalf"         
## [25249] "crooked"          "eyes"             "truth"           
## [25252] "may"              "wear"             "wry"             
## [25255] "face"             "indeed"           "eyes"            
## [25258] "almost"           "blind"            "said"            
## [25261] "théoden"          "owe"              "guest"           
## [25264] "come"             "time"             "give"            
## [25267] "gift"             "ere"              "go"              
## [25270] "choosing"         "name"             "aught"           
## [25273] "mine"             "reserve"          "now"             
## [25276] "sword"            "whether"          "came"            
## [25279] "time"             "yet"              "seen"            
## [25282] "said"             "gandalf"          "gift"            
## [25285] "lord"             "choose"           "one"             
## [25288] "fit"              "need"             "swift"           
## [25291] "sure"             "give"             "shadowfax"       
## [25294] "lent"             "loan"             "may"             
## [25297] "call"             "now"              "shall"           
## [25300] "ride"             "great"            "hazard"          
## [25303] "setting"          "silver"           "black"           
## [25306] "risk"             "anything"         "already"         
## [25309] "bond"             "love"             "us"              
## [25312] "choose"           "well"             "said"            
## [25315] "théoden"          "give"             "now"             
## [25318] "gladly"           "yet"              "great"           
## [25321] "gift"             "none"             "like"            
## [25324] "shadowfax"        "one"              "mighty"          
## [25327] "steeds"           "old"              "returned"        
## [25330] "none"             "shall"            "return"          
## [25333] "guests"           "offer"            "things"          
## [25336] "may"              "found"            "armoury"         
## [25339] "swords"           "need"             "helms"           
## [25342] "coats"            "mail"             "cunning"         
## [25345] "work"             "gifts"            "fathers"         
## [25348] "gondor"           "choose"           "ere"             
## [25351] "go"               "may"              "serve"           
## [25354] "well"             "now"              "men"             
## [25357] "came"             "bearing"          "raiment"         
## [25360] "war"              "kings"            "hoard"           
## [25363] "arrayed"          "aragorn"          "legolas"         
## [25366] "shining"          "mail"             "helms"           
## [25369] "chose"            "round"            "shields"         
## [25372] "bosses"           "overlaid"         "gold"            
## [25375] "set"              "gems"             "green"           
## [25378] "red"              "white"            "gandalf"         
## [25381] "took"             "armour"           "gimli"           
## [25384] "needed"           "coat"             "rings"           
## [25387] "even"             "one"              "found"           
## [25390] "match"            "stature"          "hauberk"         
## [25393] "hoards"           "edoras"           "better"          
## [25396] "make"             "short"            "corslet"         
## [25399] "forged"           "beneath"          "mountain"        
## [25402] "north"            "chose"            "cap"             
## [25405] "iron"             "leather"          "fitted"          
## [25408] "well"             "upon"             "round"           
## [25411] "head"             "small"            "shield"          
## [25414] "also"             "took"             "bore"            
## [25417] "running"          "horse"            "white"           
## [25420] "upon"             "green"            "emblem"          
## [25423] "house"            "eorl"             "may"             
## [25426] "keep"             "well"             "said"            
## [25429] "théoden"          "made"             "thengels"        
## [25432] "day"              "still"            "boy"             
## [25435] "gimli"            "bowed"            "proud"           
## [25438] "lord"             "mark"             "bear"            
## [25441] "device"           "said"             "indeed"          
## [25444] "sooner"           "bear"             "horse"           
## [25447] "borne"            "one"              "love"            
## [25450] "feet"             "better"           "maybe"           
## [25453] "shall"            "come"             "yet"             
## [25456] "can"              "stand"            "fight"           
## [25459] "may"              "well"             "said"            
## [25462] "théoden"          "king"             "now"             
## [25465] "rose"             "éowyn"            "came"            
## [25468] "forward"          "bearing"          "wine"            
## [25471] "ferthu"           "théoden"          "hál"             
## [25474] "said"             "receive"          "now"             
## [25477] "cup"              "drink"            "happy"           
## [25480] "hour"             "health"           "thee"            
## [25483] "thy"              "going"            "coming"          
## [25486] "théoden"          "drank"            "cup"             
## [25489] "proffered"        "guests"           "stood"           
## [25492] "aragorn"          "paused"           "suddenly"        
## [25495] "looked"           "upon"             "eyes"            
## [25498] "shining"          "looked"           "upon"            
## [25501] "fair"             "face"             "smiled"          
## [25504] "took"             "cup"              "hand"            
## [25507] "met"              "knew"             "trembled"        
## [25510] "touch"            "hail"             "aragorn"         
## [25513] "son"              "arathorn"         "said"            
## [25516] "hail"             "lady"             "rohan"           
## [25519] "answered"         "face"             "now"             
## [25522] "troubled"         "smile"            "drunk"           
## [25525] "king"             "went"             "hall"            
## [25528] "doors"            "guards"           "awaited"         
## [25531] "heralds"          "stood"            "lords"           
## [25534] "chiefs"           "gathered"         "together"        
## [25537] "remained"         "edoras"           "dwelt"           
## [25540] "nearby"           "behold"           "go"              
## [25543] "forth"            "seems"            "like"            
## [25546] "last"             "riding"           "said"            
## [25549] "théoden"          "child"            "théodred"        
## [25552] "son"              "slain"            "name"            
## [25555] "éomer"            "sister"           "son"             
## [25558] "heir"             "neither"          "us"              
## [25561] "return"           "choose"           "new"             
## [25564] "lord"             "one"              "must"            
## [25567] "now"              "entrust"          "people"          
## [25570] "leave"            "behind"           "rule"            
## [25573] "place"            "stay"             "man"             
## [25576] "spoke"            "none"             "name"            
## [25579] "people"           "trust"            "house"           
## [25582] "eorl"             "answered"         "háma"            
## [25585] "éomer"            "spare"            "stay"            
## [25588] "said"             "king"             "last"            
## [25591] "house"            "said"             "éomer"           
## [25594] "answered"         "háma"             "last"            
## [25597] "éowyn"            "daughter"         "éomund"          
## [25600] "sister"           "fearless"         "high"            
## [25603] "hearted"          "love"             "let"             
## [25606] "lord"             "eorlingas"        "gone"            
## [25609] "shall"            "said"             "théoden"         
## [25612] "let"              "heralds"          "announce"        
## [25615] "folk"             "lady"             "éowyn"           
## [25618] "lead"             "king"             "sat"             
## [25621] "upon"             "seat"             "doors"           
## [25624] "éowyn"            "knelt"            "received"        
## [25627] "sword"            "fair"             "corslet"         
## [25630] "farewell"         "sister"           "daughter"        
## [25633] "said"             "dark"             "hour"            
## [25636] "yet"              "maybe"            "shall"           
## [25639] "return"           "golden"           "hall"            
## [25642] "dunharrow"        "people"           "may"             
## [25645] "long"             "defend"           "battle"          
## [25648] "go"               "ill"              "thither"         
## [25651] "come"             "escape"           "speak"           
## [25654] "answered"         "year"             "shall"           
## [25657] "endure"           "every"            "day"             
## [25660] "passes"           "return"           "spoke"           
## [25663] "eyes"             "went"             "aragorn"         
## [25666] "stood"            "nearby"           "king"            
## [25669] "shall"            "come"             "said"            
## [25672] "fear"             "west"             "east"            
## [25675] "doom"             "await"            "us"              
## [25678] "king"             "now"              "went"            
## [25681] "stair"            "gandalf"          "beside"          
## [25684] "others"           "followed"         "aragorn"         
## [25687] "looked"           "back"             "passed"          
## [25690] "towards"          "gate"             "alone"           
## [25693] "éowyn"            "stood"            "doors"           
## [25696] "house"            "stairs"           "head"            
## [25699] "sword"            "set"              "upright"         
## [25702] "hands"            "laid"             "upon"            
## [25705] "hilt"             "clad"             "now"             
## [25708] "mail"             "shone"            "like"            
## [25711] "silver"           "sun"              "gimli"           
## [25714] "walked"           "legolas"          "axe"             
## [25717] "shoulder"         "well"             "last"            
## [25720] "set"              "said"             "men"             
## [25723] "need"             "many"             "words"           
## [25726] "deeds"            "axe"              "restless"        
## [25729] "hands"            "though"           "doubt"           
## [25732] "rohirrim"         "fell"             "handed"          
## [25735] "come"             "nonetheless"      "warfare"         
## [25738] "suits"            "shall"            "come"            
## [25741] "battle"           "wish"             "walk"            
## [25744] "bump"             "like"             "sack"            
## [25747] "gandalfs"         "saddlebow"        "safer"           
## [25750] "seat"             "many"             "guess"           
## [25753] "said"             "legolas"          "yet"             
## [25756] "doubtless"        "gandalf"          "gladly"          
## [25759] "put"              "feet"             "blows"           
## [25762] "begin"            "shadowfax"        "axe"             
## [25765] "weapon"           "rider"            "dwarf"           
## [25768] "horseman"         "orc"              "necks"           
## [25771] "hew"              "shave"            "scalps"          
## [25774] "men"              "said"             "gimli"           
## [25777] "patting"          "haft"             "axe"             
## [25780] "gate"             "found"            "great"           
## [25783] "host"             "men"              "old"             
## [25786] "young"            "ready"            "saddle"          
## [25789] "thousand"         "mustered"         "spears"          
## [25792] "like"             "springing"        "wood"            
## [25795] "loudly"           "joyously"         "shouted"         
## [25798] "théoden"          "came"             "forth"           
## [25801] "held"             "readiness"        "kings"           
## [25804] "horse"            "snowmane"         "others"          
## [25807] "held"             "horses"           "aragorn"         
## [25810] "legolas"          "gimli"            "stood"           
## [25813] "ill"              "ease"             "frowning"        
## [25816] "éomer"            "came"             "leading"         
## [25819] "horse"            "hail"             "gimli"           
## [25822] "glóins"           "son"              "cried"           
## [25825] "time"             "learn"            "gentle"          
## [25828] "speech"           "rod"              "promised"        
## [25831] "shall"            "put"              "aside"           
## [25834] "quarrel"          "least"            "speak"           
## [25837] "evil"             "lady"             "wood"            
## [25840] "forget"           "wrath"            "éomer"           
## [25843] "son"              "éomund"           "said"            
## [25846] "gimli"            "ever"             "chance"          
## [25849] "see"              "lady"             "galadriel"       
## [25852] "eyes"             "shall"            "acknowledge"     
## [25855] "fairest"          "ladies"           "friendship"      
## [25858] "end"              "said"             "éomer"           
## [25861] "time"             "pardon"           "token"           
## [25864] "pardon"           "ride"             "beg"             
## [25867] "gandalf"          "head"             "lord"            
## [25870] "mark"             "firefoot"         "horse"           
## [25873] "bear"             "us"               "thank"           
## [25876] "indeed"           "said"             "gimli"           
## [25879] "greatly"          "pleased"          "gladly"          
## [25882] "go"               "legolas"          "comrade"         
## [25885] "may"              "ride"             "beside"          
## [25888] "us"               "shall"            "said"            
## [25891] "éomer"            "legolas"          "upon"            
## [25894] "left"             "aragorn"          "upon"            
## [25897] "right"            "none"             "dare"            
## [25900] "stand"            "us"               "shadowfax"       
## [25903] "said"             "gandalf"          "running"         
## [25906] "wild"             "grass"            "answered"        
## [25909] "let"              "man"              "handle"          
## [25912] "goes"             "away"             "ford"            
## [25915] "like"             "shadow"           "among"           
## [25918] "willows"          "gandalf"          "whistled"        
## [25921] "called"           "aloud"            "horses"          
## [25924] "name"             "far"              "away"            
## [25927] "tossed"           "head"             "neighed"         
## [25930] "turning"          "sped"             "towards"         
## [25933] "host"             "like"             "arrow"           
## [25936] "breath"           "west"             "wind"            
## [25939] "take"             "body"             "visible"         
## [25942] "even"             "appear"           "said"            
## [25945] "éomer"            "great"            "horse"           
## [25948] "ran"              "stood"            "wizard"          
## [25951] "gift"             "seems"            "already"         
## [25954] "given"            "said"             "théoden"         
## [25957] "hearken"          "now"              "name"            
## [25960] "guest"            "gandalf"          "greyhame"        
## [25963] "wisest"           "counsellors"      "welcome"         
## [25966] "wanderers"        "lord"             "mark"            
## [25969] "chieftain"        "eorlingas"        "kin"             
## [25972] "shall"            "last"             "give"            
## [25975] "shadowfax"        "prince"           "horses"          
## [25978] "thank"            "théoden"          "king"            
## [25981] "said"             "gandalf"          "suddenly"        
## [25984] "threw"            "back"             "grey"            
## [25987] "cloak"            "cast"             "aside"           
## [25990] "hat"              "leaped"           "horseback"       
## [25993] "wore"             "helm"             "mail"            
## [25996] "snowy"            "hair"             "flew"            
## [25999] "free"             "wind"             "white"           
## [26002] "robes"            "shone"            "dazzling"        
## [26005] "sun"              "behold"           "white"           
## [26008] "rider"            "cried"            "aragorn"         
## [26011] "took"             "words"            "king"            
## [26014] "white"            "rider"            "shouted"         
## [26017] "forth"            "eorlingas"        "trumpets"        
## [26020] "sounded"          "horses"           "reared"          
## [26023] "neighed"          "spear"            "clashed"         
## [26026] "shield"           "king"             "raised"          
## [26029] "hand"             "rush"             "like"            
## [26032] "sudden"           "onset"            "great"           
## [26035] "wind"             "last"             "host"            
## [26038] "rohan"            "rode"             "thundering"      
## [26041] "west"             "far"              "plain"           
## [26044] "éowyn"            "saw"              "glitter"         
## [26047] "spears"           "stood"            "still"           
## [26050] "alone"            "doors"            "silent"          
## [26053] "house"            "chapter"          "helms"           
## [26056] "deep"             "sun"              "already"         
## [26059] "westering"        "rode"             "edoras"          
## [26062] "light"            "eyes"             "turning"         
## [26065] "rolling"          "fields"           "rohan"           
## [26068] "golden"           "haze"             "beaten"          
## [26071] "way"              "north"            "westward"        
## [26074] "along"            "foot"             "hills"           
## [26077] "white"            "mountains"        "followed"        
## [26080] "green"            "country"          "crossing"        
## [26083] "small"            "swift"            "streams"         
## [26086] "many"             "fords"            "far"             
## [26089] "ahead"            "right"            "misty"           
## [26092] "mountains"        "loomed"           "ever"            
## [26095] "darker"           "taller"           "grew"            
## [26098] "miles"            "went"             "sun"             
## [26101] "went"             "slowly"           "evening"         
## [26104] "came"             "behind"           "host"            
## [26107] "rode"             "need"             "drove"           
## [26110] "fearing"          "come"             "late"            
## [26113] "rode"             "speed"            "pausing"         
## [26116] "seldom"           "swift"            "enduring"        
## [26119] "steeds"           "rohan"            "many"            
## [26122] "leagues"          "go"               "forty"           
## [26125] "leagues"          "bird"             "flies"           
## [26128] "edoras"           "fords"            "isen"            
## [26131] "hoped"            "find"             "kings"           
## [26134] "men"              "held"             "back"            
## [26137] "hosts"            "saruman"          "night"           
## [26140] "closed"           "last"             "halted"          
## [26143] "make"             "camp"             "ridden"          
## [26146] "five"             "hours"            "far"             
## [26149] "upon"             "western"          "plain"           
## [26152] "yet"              "half"             "journey"         
## [26155] "lay"              "still"            "great"           
## [26158] "circle"           "starry"           "sky"             
## [26161] "waxing"           "moon"             "now"             
## [26164] "made"             "bivouac"          "lit"             
## [26167] "fires"            "uncertain"        "events"          
## [26170] "set"              "ring"             "mounted"         
## [26173] "guards"           "scouts"           "rode"            
## [26176] "far"              "ahead"            "passing"         
## [26179] "like"             "shadows"          "folds"           
## [26182] "land"             "slow"             "night"           
## [26185] "passed"           "without"          "tidings"         
## [26188] "alarm"            "dawn"             "horns"           
## [26191] "sounded"          "within"           "hour"            
## [26194] "took"             "road"             "clouds"          
## [26197] "overhead"         "yet"              "heaviness"       
## [26200] "air"              "hot"              "season"          
## [26203] "year"             "rising"           "sun"             
## [26206] "hazy"             "behind"           "following"       
## [26209] "slowly"           "sky"              "growing"         
## [26212] "darkness"         "great"            "storm"           
## [26215] "moving"           "east"             "away"            
## [26218] "north"            "west"             "seemed"          
## [26221] "another"          "darkness"         "brooding"        
## [26224] "feet"             "misty"            "mountains"       
## [26227] "shadow"           "crept"            "slowly"          
## [26230] "wizards"          "vale"             "gandalf"         
## [26233] "dropped"          "back"             "legolas"         
## [26236] "rode"             "beside"           "éomer"           
## [26239] "keen"             "eyes"             "fair"            
## [26242] "kindred"          "legolas"          "said"            
## [26245] "can"              "tell"             "sparrow"         
## [26248] "finch"            "league"           "tell"            
## [26251] "can"              "sec"              "anything"        
## [26254] "away"             "yonder"           "towards"         
## [26257] "isengard"         "many"             "miles"           
## [26260] "lie"              "said"             "legolas"         
## [26263] "gazing"           "thither"          "shading"         
## [26266] "eyes"             "long"             "hand"            
## [26269] "can"              "see"              "darkness"        
## [26272] "shapes"           "moving"           "great"           
## [26275] "shapes"           "far"              "away"            
## [26278] "upon"             "bank"             "river"           
## [26281] "tell"             "mist"             "cloud"           
## [26284] "defeats"          "eyes"             "veiling"         
## [26287] "shadow"           "power"            "lays"            
## [26290] "upon"             "land"             "marches"         
## [26293] "slowly"           "stream"           "twilight"        
## [26296] "endless"          "trees"            "flowing"         
## [26299] "downwards"        "hills"            "behind"          
## [26302] "us"               "comes"            "storm"           
## [26305] "mordor"           "said"             "gandalf"         
## [26308] "black"            "night"            "second"          
## [26311] "day"              "riding"           "drew"            
## [26314] "heaviness"        "air"              "increased"       
## [26317] "afternoon"        "dark"             "clouds"          
## [26320] "began"            "overtake"         "sombre"          
## [26323] "canopy"           "great"            "billowing"       
## [26326] "edges"            "flecked"          "dazzling"        
## [26329] "light"            "sun"              "went"            
## [26332] "blood"            "red"              "smoking"         
## [26335] "haze"             "spears"           "riders"          
## [26338] "tipped"           "fire"             "last"            
## [26341] "shafts"           "light"            "kindled"         
## [26344] "steep"            "faces"            "peaks"           
## [26347] "thrihyrne"        "now"              "near"            
## [26350] "stood"            "northernmost"     "arm"             
## [26353] "white"            "mountains"        "three"           
## [26356] "jagged"           "horns"            "staring"         
## [26359] "sunset"           "last"             "red"             
## [26362] "glow"             "men"              "vanguard"        
## [26365] "saw"              "black"            "speck"           
## [26368] "horseman"         "riding"           "back"            
## [26371] "towards"          "halted"           "awaiting"        
## [26374] "came"             "weary"            "man"             
## [26377] "dinted"           "helm"             "cloven"          
## [26380] "shield"           "slowly"           "climbed"         
## [26383] "horse"            "stood"            "gasping"         
## [26386] "length"           "spoke"            "éomer"           
## [26389] "asked"            "come"             "last"            
## [26392] "late"             "little"           "strength"        
## [26395] "things"           "gone"             "evilly"          
## [26398] "since"            "théodred"         "fell"            
## [26401] "driven"           "back"             "yesterday"       
## [26404] "isen"             "great"            "loss"            
## [26407] "many"             "perished"         "crossing"        
## [26410] "night"            "fresh"            "forces"          
## [26413] "came"             "river"            "camp"            
## [26416] "isengard"         "must"             "emptied"         
## [26419] "saruman"          "armed"            "wild"            
## [26422] "hillmen"          "herd"             "folk"            
## [26425] "dunland"          "beyond"           "rivers"          
## [26428] "also"             "loosed"           "upon"            
## [26431] "us"               "overmastered"     "shield"          
## [26434] "wall"             "broken"           "erkenbrand"      
## [26437] "westfold"         "drawn"            "men"             
## [26440] "gather"           "towards"          "fastness"        
## [26443] "helms"            "deep"             "rest"            
## [26446] "scattered"        "éomer"            "tell"            
## [26449] "hope"             "ahead"            "return"          
## [26452] "edoras"           "wolves"           "isengard"        
## [26455] "come"             "théoden"          "sat"             
## [26458] "silent"           "hidden"           "mans"            
## [26461] "sight"            "behind"           "guards"          
## [26464] "now"              "urged"            "horse"           
## [26467] "forward"          "come"             "stand"           
## [26470] "ceorl"            "said"             "last"            
## [26473] "host"             "eorlingas"        "ridden"          
## [26476] "forth"            "return"           "without"         
## [26479] "battle"           "mans"             "face"            
## [26482] "lightened"        "joy"              "wonder"          
## [26485] "drew"             "knelt"            "offering"        
## [26488] "notched"          "sword"            "king"            
## [26491] "command"          "lord"             "cried"           
## [26494] "pardon"           "thought"          "thought"         
## [26497] "remained"         "meduseld"         "bent"            
## [26500] "like"             "old"              "tree"            
## [26503] "winter"           "snow"             "rode"            
## [26506] "war"              "west"             "wind"            
## [26509] "shaken"           "boughs"           "said"            
## [26512] "théoden"          "give"             "man"             
## [26515] "fresh"            "horse"            "let"             
## [26518] "us"               "ride"             "help"            
## [26521] "erkenbrand"       "théoden"          "speaking"        
## [26524] "gandalf"          "rode"             "short"           
## [26527] "way"              "ahead"            "sat"             
## [26530] "alone"            "gazing"           "north"           
## [26533] "isengard"         "west"             "setting"         
## [26536] "sun"              "now"              "came"            
## [26539] "back"             "ride"             "théoden"         
## [26542] "said"             "ride"             "helms"           
## [26545] "deep"             "go"               "fords"           
## [26548] "isen"             "tarry"            "plain"           
## [26551] "must"             "leave"            "shadowfax"       
## [26554] "must"             "bear"             "now"             
## [26557] "swift"            "errand"           "turning"         
## [26560] "aragorn"          "éomer"            "men"             
## [26563] "kings"            "household"        "cried"           
## [26566] "keep"             "well"             "lord"            
## [26569] "mark"             "till"             "return"          
## [26572] "await"            "helms"            "gate"            
## [26575] "farewell"         "spoke"            "word"            
## [26578] "shadowfax"        "like"             "arrow"           
## [26581] "bow"              "great"            "horse"           
## [26584] "sprang"           "away"             "even"            
## [26587] "looked"           "gone"             "flash"           
## [26590] "silver"           "sunset"           "wind"            
## [26593] "grass"            "shadow"           "fled"            
## [26596] "passed"           "sight"            "snowmane"        
## [26599] "snorted"          "reared"           "eager"           
## [26602] "follow"           "swift"            "bird"            
## [26605] "wing"             "overtaken"        "mean"            
## [26608] "said"             "one"              "guard"           
## [26611] "háma"             "gandalf"          "greyhame"        
## [26614] "need"             "haste"            "answered"        
## [26617] "háma"             "ever"             "goes"            
## [26620] "comes"            "unlooked"         "wormtongue"      
## [26623] "find"             "hard"             "explain"         
## [26626] "said"             "true"             "enough"          
## [26629] "said"             "háma"             "wait"            
## [26632] "see"              "gandalf"          "maybe"           
## [26635] "wait"             "long"             "said"            
## [26638] "host"             "turned"           "away"            
## [26641] "now"              "road"             "fords"           
## [26644] "isen"             "bent"             "course"          
## [26647] "southward"        "night"            "fell"            
## [26650] "still"            "rode"             "hills"           
## [26653] "drew"             "near"             "tall"            
## [26656] "peaks"            "thrihyrne"        "already"         
## [26659] "dim"              "darkening"        "sky"             
## [26662] "still"            "miles"            "away"            
## [26665] "far"              "side"             "westfold"        
## [26668] "vale"             "lay"              "green"           
## [26671] "coomb"            "great"            "bay"             
## [26674] "mountains"        "gorge"            "opened"          
## [26677] "hills"            "men"              "land"            
## [26680] "called"           "helms"            "deep"            
## [26683] "hero"             "old"              "wars"            
## [26686] "made"             "refuge"           "ever"            
## [26689] "steeper"          "narrower"         "wound"           
## [26692] "inward"           "north"            "shadow"          
## [26695] "thrihyrne"        "till"             "crow"            
## [26698] "haunted"          "cliffs"           "rose"            
## [26701] "like"             "mighty"           "towers"          
## [26704] "either"           "side"             "shutting"        
## [26707] "light"            "helms"            "gate"            
## [26710] "mouth"            "deep"             "heel"            
## [26713] "rock"             "thrust"           "outward"         
## [26716] "northern"         "cliff"            "upon"            
## [26719] "spur"             "stood"            "high"            
## [26722] "walls"            "ancient"          "stone"           
## [26725] "within"           "lofty"            "tower"           
## [26728] "men"              "said"             "far"             
## [26731] "days"             "glory"            "gondor"          
## [26734] "sea"              "kings"            "built"           
## [26737] "fastness"         "hands"            "giants"          
## [26740] "hornburg"         "called"           "trumpet"         
## [26743] "sounded"          "upon"             "tower"           
## [26746] "echoed"           "deep"             "behind"          
## [26749] "armies"           "long"             "forgotten"       
## [26752] "issuing"          "war"              "caves"           
## [26755] "beneath"          "hills"            "wall"            
## [26758] "men"              "old"              "made"            
## [26761] "hornburg"         "southern"         "cliff"           
## [26764] "barring"          "entrance"         "gorge"           
## [26767] "beneath"          "wide"             "culvert"         
## [26770] "deeping"          "stream"           "passed"          
## [26773] "feet"             "hornrock"         "wound"           
## [26776] "flowed"           "gully"            "midst"           
## [26779] "wide"             "green"            "gore"            
## [26782] "sloping"          "gently"           "helms"           
## [26785] "gate"             "helms"            "dike"            
## [26788] "thence"           "fell"             "deeping"         
## [26791] "coomb"            "westfold"         "vale"            
## [26794] "hornburg"         "helms"            "gate"            
## [26797] "erkenbrand"       "master"           "westfold"        
## [26800] "borders"          "mark"             "now"             
## [26803] "dwelt"            "days"             "darkened"        
## [26806] "threat"           "war"              "wise"            
## [26809] "repaired"         "wall"             "made"            
## [26812] "fastness"         "strong"           "riders"          
## [26815] "still"            "low"              "valley"          
## [26818] "mouth"            "coomb"            "cries"           
## [26821] "hornblasts"       "heard"            "scouts"          
## [26824] "went"             "front"            "darkness"        
## [26827] "arrows"           "whistled"         "swiftly"         
## [26830] "scout"            "rode"             "back"            
## [26833] "reported"         "wolf"             "riders"          
## [26836] "abroad"           "valley"           "host"            
## [26839] "orcs"             "wild"             "men"             
## [26842] "hurrying"         "southward"        "fords"           
## [26845] "isen"             "seemed"           "making"          
## [26848] "helms"            "deep"             "found"           
## [26851] "many"             "folk"             "lying"           
## [26854] "slain"            "fled"             "thither"         
## [26857] "said"             "scout"            "met"             
## [26860] "scattered"        "companies"        "going"           
## [26863] "way"              "leaderless"       "become"          
## [26866] "erkenbrand"       "none"             "seem"            
## [26869] "know"             "likely"           "overtaken"       
## [26872] "ere"              "can"              "reach"           
## [26875] "helms"            "gate"             "already"         
## [26878] "perished"         "aught"            "seen"            
## [26881] "gandalf"          "asked"            "théoden"         
## [26884] "yes"              "lord"             "many"            
## [26887] "seen"             "old"              "man"             
## [26890] "white"            "upon"             "horse"           
## [26893] "passing"          "hither"           "thither"         
## [26896] "plains"           "like"             "wind"            
## [26899] "grass"            "thought"          "saruman"         
## [26902] "said"             "went"             "away"            
## [26905] "ere"              "nightfall"        "towards"         
## [26908] "isengard"         "say"              "also"            
## [26911] "wormtongue"       "seen"             "earlier"         
## [26914] "going"            "northward"        "company"         
## [26917] "orcs"             "go"               "ill"             
## [26920] "wormtongue"       "gandalf"          "comes"           
## [26923] "upon"             "said"             "théoden"         
## [26926] "nonetheless"      "miss"             "now"             
## [26929] "counsellors"      "old"              "new"             
## [26932] "need"             "better"           "choice"          
## [26935] "go"               "gandalf"          "said"            
## [26938] "helms"            "gate"             "whether"         
## [26941] "erkenbrand"       "known"            "great"           
## [26944] "host"             "comes"            "north"           
## [26947] "great"            "said"             "scout"           
## [26950] "flies"            "counts"           "every"           
## [26953] "foeman"           "twice"            "yet"             
## [26956] "spoken"           "stouthearted"     "men"             
## [26959] "doubt"            "main"             "strength"        
## [26962] "enemy"            "many"             "times"           
## [26965] "great"            "let"              "us"              
## [26968] "swift"            "said"             "éomer"           
## [26971] "let"              "us"               "drive"           
## [26974] "foes"             "already"          "us"              
## [26977] "fastness"         "caves"            "helms"           
## [26980] "deep"             "hundreds"         "may"             
## [26983] "lie"              "hid"              "secret"          
## [26986] "ways"             "lead"             "thence"          
## [26989] "hills"            "trust"            "secret"          
## [26992] "ways"             "said"             "king"            
## [26995] "saruman"          "long"             "spied"           
## [26998] "land"             "still"            "place"           
## [27001] "defence"          "may"              "last"            
## [27004] "long"             "let"              "us"              
## [27007] "go"               "aragorn"          "legolas"         
## [27010] "went"             "now"              "éomer"           
## [27013] "van"              "dark"             "night"           
## [27016] "rode"             "ever"             "slower"          
## [27019] "darkness"         "deepened"         "way"             
## [27022] "climbed"          "southward"        "higher"          
## [27025] "higher"           "dim"              "folds"           
## [27028] "mountains"        "feet"             "found"           
## [27031] "enemy"            "came"             "upon"            
## [27034] "roving"           "bands"            "orcs"            
## [27037] "fled"             "ere"              "riders"          
## [27040] "take"             "slay"             "long"            
## [27043] "fear"             "said"             "éomer"           
## [27046] "ere"              "coming"           "kings"           
## [27049] "host"             "known"            "leader"          
## [27052] "enemies"          "saruman"          "whatever"        
## [27055] "captain"          "sent"             "forth"           
## [27058] "rumour"           "war"              "grew"            
## [27061] "behind"           "now"              "hear"            
## [27064] "borne"            "dark"             "sound"           
## [27067] "harsh"            "singing"          "climbed"         
## [27070] "far"              "deeping"          "coomb"           
## [27073] "looked"           "back"             "saw"             
## [27076] "torches"          "countless"        "points"          
## [27079] "fiery"            "light"            "upon"            
## [27082] "black"            "fields"           "behind"          
## [27085] "scattered"        "like"             "red"             
## [27088] "flowers"          "winding"          "lowlands"        
## [27091] "long"             "flickering"       "lines"           
## [27094] "larger"           "blaze"            "leapt"           
## [27097] "great"            "host"             "follows"         
## [27100] "us"               "hard"             "said"            
## [27103] "aragorn"          "bring"            "fire"            
## [27106] "said"             "théoden"          "burning"         
## [27109] "come"             "rick"             "cot"             
## [27112] "tree"             "rich"             "vale"            
## [27115] "many"             "homesteads"       "alas"            
## [27118] "folk"             "day"              "might"           
## [27121] "ride"             "upon"             "like"            
## [27124] "storm"            "mountains"        "said"            
## [27127] "aragorn"          "grieves"          "fly"             
## [27130] "need"             "fly"              "much"            
## [27133] "said"             "éomer"            "far"             
## [27136] "ahead"            "now"              "lies"            
## [27139] "helms"            "dike"             "ancient"         
## [27142] "trench"           "rampart"          "scored"          
## [27145] "across"           "coomb"            "two"             
## [27148] "furlongs"         "helms"            "gate"            
## [27151] "can"              "turn"             "give"            
## [27154] "battle"           "nay"              "defend"          
## [27157] "dike"             "said"             "théoden"         
## [27160] "mile"             "long"             "breach"          
## [27163] "wide"             "breach"           "rearguard"       
## [27166] "must"             "stand"            "pressed"         
## [27169] "said"             "éomer"            "neither"         
## [27172] "star"             "moon"             "riders"          
## [27175] "came"             "breach"           "dike"            
## [27178] "stream"           "passed"           "road"            
## [27181] "beside"           "ran"              "hornburg"        
## [27184] "rampart"          "loomed"           "suddenly"        
## [27187] "high"             "shadow"           "beyond"          
## [27190] "dark"             "pit"              "rode"            
## [27193] "sentinel"         "challenged"       "lord"            
## [27196] "mark"             "rides"            "helms"           
## [27199] "gate"             "éomer"            "answered"        
## [27202] "éomer"            "son"              "éomund"          
## [27205] "speak"            "good"             "tidings"         
## [27208] "beyond"           "hope"             "said"            
## [27211] "sentinel"         "hasten"           "enemy"           
## [27214] "heels"            "host"             "passed"          
## [27217] "breach"           "halted"           "sloping"         
## [27220] "sward"            "now"              "learned"         
## [27223] "joy"              "erkenbrand"       "left"            
## [27226] "many"             "men"              "hold"            
## [27229] "helms"            "gate"             "since"           
## [27232] "escaped"          "thither"          "maybe"           
## [27235] "thousand"         "fit"              "fight"           
## [27238] "foot"             "said"             "gamling"         
## [27241] "old"              "man"              "leader"          
## [27244] "watched"          "dike"             "seen"            
## [27247] "many"             "winters"          "sons"            
## [27250] "son"              "news"             "erkenbrand"      
## [27253] "word"             "came"             "yesterday"       
## [27256] "retreating"       "hither"           "left"            
## [27259] "best"             "riders"           "westfold"        
## [27262] "come"             "fear"             "come"            
## [27265] "now"              "said"             "éomer"           
## [27268] "scouts"           "gained"           "news"            
## [27271] "enemy"            "fills"            "valley"          
## [27274] "behind"           "us"               "escaped"         
## [27277] "said"             "théoden"          "mighty"          
## [27280] "man"              "lived"            "valour"          
## [27283] "helm"             "hammerhand"       "await"           
## [27286] "must"             "draw"             "forces"          
## [27289] "now"              "behind"           "walls"           
## [27292] "well"             "stored"           "bring"           
## [27295] "little"           "provision"        "rode"            
## [27298] "forth"            "open"             "battle"          
## [27301] "siege"            "behind"           "us"              
## [27304] "caves"            "deep"             "three"           
## [27307] "parts"            "folk"             "westfold"        
## [27310] "old"              "young"            "children"        
## [27313] "women"            "said"             "gamling"         
## [27316] "great"            "store"            "food"            
## [27319] "many"             "beasts"           "fodder"          
## [27322] "also"             "gathered"         "well"            
## [27325] "said"             "éomer"            "burning"         
## [27328] "despoiling"       "left"             "vale"            
## [27331] "come"             "bargain"          "goods"           
## [27334] "helms"            "gate"             "pay"             
## [27337] "high"             "price"            "said"            
## [27340] "gamling"          "king"             "riders"          
## [27343] "passed"           "causeway"         "crossed"         
## [27346] "stream"           "dismounted"       "long"            
## [27349] "file"             "led"              "horses"          
## [27352] "ramp"             "passed"           "within"          
## [27355] "gates"            "hornburg"         "welcomed"        
## [27358] "joy"              "renewed"          "hope"            
## [27361] "now"              "men"              "enough"          
## [27364] "man"              "burg"             "barrier"         
## [27367] "wall"             "quickly"          "éomer"           
## [27370] "set"              "men"              "readiness"       
## [27373] "king"             "men"              "household"       
## [27376] "hornburg"         "also"             "many"            
## [27379] "westfold"         "men"              "deeping"         
## [27382] "wall"             "tower"            "behind"          
## [27385] "éomer"            "arrayed"          "strength"        
## [27388] "defence"          "seemed"           "doubtful"        
## [27391] "assault"          "determined"       "great"           
## [27394] "force"            "horses"           "led"             
## [27397] "far"              "deep"             "guard"           
## [27400] "spared"           "deeping"          "wall"            
## [27403] "twenty"           "feet"             "high"            
## [27406] "thick"            "four"             "men"             
## [27409] "walk"             "abreast"          "along"           
## [27412] "top"              "sheltered"        "parapet"         
## [27415] "tall"             "man"              "look"            
## [27418] "clefts"           "stone"            "men"             
## [27421] "shoot"            "battlement"       "reached"         
## [27424] "stair"            "running"          "door"            
## [27427] "outer"            "court"            "hornburg"        
## [27430] "three"            "flights"          "steps"           
## [27433] "led"              "also"             "wall"            
## [27436] "deep"             "behind"           "front"           
## [27439] "smooth"           "great"            "stones"          
## [27442] "set"              "skill"            "foothold"        
## [27445] "found"            "joints"           "top"             
## [27448] "hung"             "like"             "sea"             
## [27451] "delved"           "cliff"            "gimli"           
## [27454] "stood"            "leaning"          "breastwork"      
## [27457] "upon"             "wall"             "legolas"         
## [27460] "sat"              "parapet"          "fingering"       
## [27463] "bow"              "peering"          "gloom"           
## [27466] "liking"           "said"             "dwarf"           
## [27469] "stamping"         "stones"           "ever"            
## [27472] "heart"            "rises"            "draw"            
## [27475] "near"             "mountains"        "good"            
## [27478] "rock"             "country"          "tough"           
## [27481] "bones"            "felt"             "feet"            
## [27484] "came"             "dike"             "give"            
## [27487] "year"             "hundred"          "kin"             
## [27490] "make"             "place"            "armies"          
## [27493] "break"            "upon"             "like"            
## [27496] "water"            "doubt"            "said"            
## [27499] "legolas"          "dwarf"            "dwarves"         
## [27502] "strange"          "folk"             "like"            
## [27505] "place"            "shall"            "like"            
## [27508] "light"            "day"              "comfort"         
## [27511] "gimli"            "glad"             "standing"        
## [27514] "nigh"             "stout"            "legs"            
## [27517] "hard"             "axe"              "wish"            
## [27520] "kin"              "among"            "us"              
## [27523] "even"             "give"             "hundred"         
## [27526] "good"             "archers"          "mirkwood"        
## [27529] "shall"            "need"             "rohirrim"        
## [27532] "good"             "bowmen"           "fashion"         
## [27535] "dark"             "archery"          "said"            
## [27538] "gimli"            "indeed"           "time"            
## [27541] "sleep"            "sleep"            "feel"            
## [27544] "need"             "never"            "thought"         
## [27547] "dwarf"            "riding"           "tiring"          
## [27550] "work"             "yet"              "axe"             
## [27553] "restless"         "hand"             "give"            
## [27556] "row"              "orc"              "necks"           
## [27559] "room"             "swing"            "weariness"       
## [27562] "fall"             "slow"             "time"            
## [27565] "passed"           "far"              "valley"          
## [27568] "scattered"        "fires"            "still"           
## [27571] "burned"           "hosts"            "isengard"        
## [27574] "advancing"        "silence"          "now"             
## [27577] "torches"          "seen"             "winding"         
## [27580] "coomb"            "many"             "lines"           
## [27583] "suddenly"         "dike"             "yells"           
## [27586] "screams"          "fierce"           "battle"          
## [27589] "cries"            "men"              "broke"           
## [27592] "flaming"          "brands"           "appeared"        
## [27595] "brink"            "clustered"        "thickly"         
## [27598] "breach"           "scattered"        "vanished"        
## [27601] "men"              "came"             "galloping"       
## [27604] "back"             "field"            "ramp"            
## [27607] "gate"             "hornburg"         "rearguard"       
## [27610] "westfolders"      "driven"           "enemy"           
## [27613] "hand"             "said"             "loosed"          
## [27616] "every"            "arrow"            "filled"          
## [27619] "dike"             "orcs"             "halt"            
## [27622] "long"             "already"          "scaling"         
## [27625] "bank"             "many"             "points"          
## [27628] "thick"            "marching"         "ants"            
## [27631] "taught"           "carry"            "torches"         
## [27634] "now"              "past"             "midnight"        
## [27637] "sky"              "utterly"          "dark"            
## [27640] "stillness"        "heavy"            "air"             
## [27643] "foreboded"        "storm"            "suddenly"        
## [27646] "clouds"           "seared"           "blinding"        
## [27649] "flash"            "branched"         "lightning"       
## [27652] "smote"            "upon"             "eastward"        
## [27655] "hills"            "staring"          "moment"          
## [27658] "watchers"         "walls"            "saw"             
## [27661] "space"            "dike"             "lit"             
## [27664] "white"            "light"            "boiling"         
## [27667] "crawling"         "black"            "shapes"          
## [27670] "squat"            "broad"            "tall"            
## [27673] "grim"             "high"             "helms"           
## [27676] "sable"            "shields"          "hundreds"        
## [27679] "hundreds"         "pouring"          "dike"            
## [27682] "breach"           "dark"             "tide"            
## [27685] "flowed"           "walls"            "cliff"           
## [27688] "cliff"            "thunder"          "rolled"          
## [27691] "valley"           "rain"             "came"            
## [27694] "lashing"          "arrows"           "thick"           
## [27697] "rain"             "came"             "whistling"       
## [27700] "battlements"      "fell"             "clinking"        
## [27703] "glancing"         "stones"           "found"           
## [27706] "mark"             "assault"          "helms"           
## [27709] "deep"             "begun"            "sound"           
## [27712] "challenge"        "heard"            "within"          
## [27715] "answering"        "arrows"           "came"            
## [27718] "assailing"        "hosts"            "halted"          
## [27721] "foiled"           "silent"           "menace"          
## [27724] "rock"             "wall"             "ever"            
## [27727] "lightning"        "tore"             "aside"           
## [27730] "darkness"         "orcs"             "screamed"        
## [27733] "waving"           "spear"            "sword"           
## [27736] "shooting"         "cloud"            "arrows"          
## [27739] "stood"            "revealed"         "upon"            
## [27742] "battlements"      "men"              "mark"            
## [27745] "amazed"           "looked"           "seemed"          
## [27748] "upon"             "great"            "field"           
## [27751] "dark"             "corn"             "tossed"          
## [27754] "tempest"          "war"              "every"           
## [27757] "ear"              "glinted"          "barbed"          
## [27760] "light"            "brazen"           "trumpets"        
## [27763] "sounded"          "enemy"            "surged"          
## [27766] "forward"          "deeping"          "wall"            
## [27769] "towards"          "causeway"         "ramp"            
## [27772] "led"              "hornburg"         "gates"           
## [27775] "hugest"           "orcs"             "mustered"        
## [27778] "wild"             "men"              "dunland"         
## [27781] "fells"            "moment"           "hesitated"       
## [27784] "came"             "lightning"        "flashed"         
## [27787] "blazoned"         "upon"             "every"           
## [27790] "helm"             "shield"           "ghastly"         
## [27793] "hand"             "isengard"         "seen"            
## [27796] "reached"          "summit"           "rock"            
## [27799] "drove"            "towards"          "gates"           
## [27802] "last"             "answer"           "came"            
## [27805] "storm"            "arrows"           "met"             
## [27808] "hail"             "stones"           "wavered"         
## [27811] "broke"            "fled"             "back"            
## [27814] "charged"          "broke"            "charged"         
## [27817] "time"             "like"             "incoming"        
## [27820] "sea"              "halted"           "higher"          
## [27823] "point"            "trumpets"         "rang"            
## [27826] "press"            "roaring"          "men"             
## [27829] "leaped"           "forth"            "held"            
## [27832] "great"            "shields"          "like"            
## [27835] "roof"             "midst"            "bore"            
## [27838] "two"              "trunks"           "mighty"          
## [27841] "trees"            "behind"           "orc"             
## [27844] "archers"          "crowded"          "sending"         
## [27847] "hail"             "darts"            "bowmen"          
## [27850] "walls"            "gained"           "gates"           
## [27853] "trees"            "swung"            "strong"          
## [27856] "arms"             "smote"            "timbers"         
## [27859] "rending"          "boom"             "man"             
## [27862] "fell"             "crushed"          "stone"           
## [27865] "hurtling"         "two"              "others"          
## [27868] "sprang"           "take"             "place"           
## [27871] "great"            "rams"             "swung"           
## [27874] "crashed"          "éomer"            "aragorn"         
## [27877] "stood"            "together"         "deeping"         
## [27880] "wall"             "heard"            "roar"            
## [27883] "voices"           "thudding"         "rams"            
## [27886] "sudden"           "flash"            "light"           
## [27889] "beheld"           "peril"            "gates"           
## [27892] "come"             "said"             "aragorn"         
## [27895] "hour"             "draw"             "swords"          
## [27898] "together"         "running"          "like"            
## [27901] "fire"             "sped"             "along"           
## [27904] "wall"             "steps"            "passed"          
## [27907] "outer"            "court"            "upon"            
## [27910] "rock"             "ran"              "gathered"        
## [27913] "handful"          "stout"            "swordsmen"       
## [27916] "small"            "postern"          "door"            
## [27919] "opened"           "angle"            "burg"            
## [27922] "wall"             "west"             "cliff"           
## [27925] "stretched"        "meet"             "side"            
## [27928] "narrow"           "path"             "ran"             
## [27931] "round"            "towards"          "great"           
## [27934] "gate"             "wall"             "sheer"           
## [27937] "brink"            "rock"             "together"        
## [27940] "éomer"            "aragorn"          "sprang"          
## [27943] "door"             "men"              "close"           
## [27946] "behind"           "swords"           "flashed"         
## [27949] "sheath"           "one"              "gúthwinë"        
## [27952] "cried"            "éomer"            "gúthwinë"        
## [27955] "mark"             "andúril"          "cried"           
## [27958] "aragorn"          "andúril"          "dúnedain"        
## [27961] "charging"         "side"             "hurled"          
## [27964] "upon"             "wild"             "men"             
## [27967] "andúril"          "rose"             "fell"            
## [27970] "gleaming"         "white"            "fire"            
## [27973] "shout"            "went"             "wall"            
## [27976] "tower"            "andúril"          "andúril"         
## [27979] "goes"             "war"              "blade"           
## [27982] "broken"           "shines"           "dismayed"        
## [27985] "rammers"          "let"              "fall"            
## [27988] "trees"            "turned"           "fight"           
## [27991] "wall"             "shields"          "broken"          
## [27994] "lightning"        "stroke"           "swept"           
## [27997] "away"             "hewn"             "cast"            
## [28000] "rock"             "stony"            "stream"          
## [28003] "orc"              "archers"          "shot"            
## [28006] "wildly"           "fled"             "moment"          
## [28009] "éomer"            "aragorn"          "halted"          
## [28012] "gates"            "thunder"          "rumbling"        
## [28015] "distance"         "now"              "lightning"       
## [28018] "flickered"        "still"            "far"             
## [28021] "among"            "mountains"        "south"           
## [28024] "keen"             "wind"             "blowing"         
## [28027] "north"            "clouds"           "torn"            
## [28030] "drifting"         "stars"            "peeped"          
## [28033] "hills"            "coomb"            "side"            
## [28036] "westering"        "moon"             "rode"            
## [28039] "glimmering"       "yellow"           "storm"           
## [28042] "wrack"            "come"             "soon"            
## [28045] "said"             "aragorn"          "looking"         
## [28048] "gates"            "great"            "hinges"          
## [28051] "iron"             "bars"             "wrenched"        
## [28054] "bent"             "many"             "timbers"         
## [28057] "cracked"          "yet"              "stay"            
## [28060] "beyond"           "walls"            "defend"          
## [28063] "said"             "éomer"            "look"            
## [28066] "pointed"          "causeway"         "already"         
## [28069] "great"            "press"            "orcs"            
## [28072] "men"              "gathering"        "beyond"          
## [28075] "stream"           "arrows"           "whined"          
## [28078] "skipped"          "stones"           "come"            
## [28081] "must"             "get"              "back"            
## [28084] "see"              "can"              "pile"            
## [28087] "stone"            "beam"             "across"          
## [28090] "gates"            "within"           "come"            
## [28093] "now"              "turned"           "ran"             
## [28096] "moment"           "dozen"            "orcs"            
## [28099] "lain"             "motionless"       "among"           
## [28102] "slain"            "leaped"           "feet"            
## [28105] "came"             "silently"         "swiftly"         
## [28108] "behind"           "two"              "flung"           
## [28111] "ground"           "éomers"           "heels"           
## [28114] "tripped"          "moment"           "top"             
## [28117] "small"            "dark"             "figure"          
## [28120] "none"             "observed"         "sprang"          
## [28123] "shadows"          "gave"             "hoarse"          
## [28126] "shout"            "baruk"            "khazâd"          
## [28129] "khazâd"           "ai"               "mênu"            
## [28132] "axe"              "swung"            "swept"           
## [28135] "back"             "two"              "orcs"            
## [28138] "fell"             "headless"         "rest"            
## [28141] "fled"             "éomer"            "struggled"       
## [28144] "feet"             "even"             "aragorn"         
## [28147] "ran"              "back"             "aid"             
## [28150] "postern"          "closed"           "iron"            
## [28153] "door"             "barred"           "piled"           
## [28156] "inside"           "stones"           "safe"            
## [28159] "within"           "éomer"            "turned"          
## [28162] "thank"            "gimli"            "son"             
## [28165] "glóin"            "said"             "know"            
## [28168] "us"               "sortie"           "oft"             
## [28171] "unbidden"         "guest"            "proves"          
## [28174] "best"             "company"          "came"            
## [28177] "followed"         "shake"            "sleep"           
## [28180] "said"             "gimli"            "looked"          
## [28183] "hillmen"          "seemed"           "large"           
## [28186] "sat"              "beside"           "stone"           
## [28189] "see"              "sword"            "play"            
## [28192] "shall"            "find"             "easy"            
## [28195] "repay"            "said"             "éomer"           
## [28198] "may"              "many"             "chance"          
## [28201] "ere"              "night"            "laughed"         
## [28204] "dwarf"            "content"          "till"            
## [28207] "now"              "hewn"             "naught"          
## [28210] "wood"             "since"            "left"            
## [28213] "moria"            "two"              "said"            
## [28216] "gimli"            "patting"          "axe"             
## [28219] "returned"         "place"            "wall"            
## [28222] "two"              "said"             "legolas"         
## [28225] "done"             "better"           "though"          
## [28228] "now"              "must"             "grope"           
## [28231] "spent"            "arrows"           "mine"            
## [28234] "gone"             "yet"              "make"            
## [28237] "tale"             "twenty"           "least"           
## [28240] "leaves"           "forest"           "sky"             
## [28243] "now"              "quickly"          "clearing"        
## [28246] "sinking"          "moon"             "shining"         
## [28249] "brightly"         "light"            "brought"         
## [28252] "little"           "hope"             "riders"          
## [28255] "mark"             "enemy"            "seemed"          
## [28258] "grown"            "rather"           "diminished"      
## [28261] "still"            "pressing"         "valley"          
## [28264] "breach"           "sortie"           "upon"            
## [28267] "rock"             "gained"           "brief"           
## [28270] "respite"          "assault"          "gates"           
## [28273] "redoubled"        "deeping"          "wall"            
## [28276] "hosts"            "isengard"         "roared"          
## [28279] "like"             "sea"              "orcs"            
## [28282] "hillmen"          "swarmed"          "feet"            
## [28285] "end"              "end"              "ropes"           
## [28288] "grappling"        "hooks"            "hurled"          
## [28291] "parapet"          "faster"           "men"             
## [28294] "cut"              "fling"            "back"            
## [28297] "hundreds"         "long"             "ladders"         
## [28300] "lifted"           "many"             "cast"            
## [28303] "ruin"             "many"             "replaced"        
## [28306] "orcs"             "sprang"           "like"            
## [28309] "apes"             "dark"             "forests"         
## [28312] "south"            "walls"            "foot"            
## [28315] "dead"             "broken"           "piled"           
## [28318] "like"             "shingle"          "storm"           
## [28321] "ever"             "higher"           "rose"            
## [28324] "hideous"          "mounds"           "still"           
## [28327] "enemy"            "came"             "men"             
## [28330] "rohan"            "grew"             "weary"           
## [28333] "arrows"           "spent"            "every"           
## [28336] "shaft"            "shot"             "swords"          
## [28339] "notched"          "shields"          "riven"           
## [28342] "three"            "times"            "aragorn"         
## [28345] "éomer"            "rallied"          "three"           
## [28348] "times"            "andúril"          "flamed"          
## [28351] "desperate"        "charge"           "drove"           
## [28354] "enemy"            "wall"             "clamour"         
## [28357] "arose"            "deep"             "behind"          
## [28360] "orcs"             "crept"            "like"            
## [28363] "rats"             "culvert"          "stream"          
## [28366] "flowed"           "gathered"         "shadow"          
## [28369] "cliffs"           "assault"          "hottest"         
## [28372] "nearly"           "men"              "defence"         
## [28375] "rushed"           "walls"            "top"             
## [28378] "sprang"           "already"          "passed"          
## [28381] "jaws"             "deep"             "among"           
## [28384] "horses"           "fighting"         "guards"          
## [28387] "wall"             "leapt"            "gimli"           
## [28390] "fierce"           "cry"              "echoed"          
## [28393] "cliffs"           "khazâd"           "khazâd"          
## [28396] "soon"             "work"             "enough"          
## [28399] "ai"               "oi"               "shouted"         
## [28402] "orcs"             "behind"           "wall"            
## [28405] "ai"               "oi"               "come"            
## [28408] "legolas"          "enough"           "us"              
## [28411] "khazâd"           "ai"               "mênu"            
## [28414] "gamling"          "old"              "looked"          
## [28417] "hornburg"         "hearing"          "great"           
## [28420] "voice"            "dwarf"            "tumult"          
## [28423] "orcs"             "deep"             "cried"           
## [28426] "helm"             "helm"             "forth"           
## [28429] "helmingas"        "shouted"          "leaped"          
## [28432] "stair"            "rock"             "many"            
## [28435] "men"              "westfold"         "back"            
## [28438] "onset"            "fierce"           "sudden"          
## [28441] "orcs"             "gave"             "way"             
## [28444] "ere"              "long"             "hemmed"          
## [28447] "narrows"          "gorge"            "slain"           
## [28450] "driven"           "shrieking"        "chasm"           
## [28453] "deep"             "fall"             "guardians"       
## [28456] "hidden"           "caves"            "twenty"          
## [28459] "one"              "cried"            "gimli"           
## [28462] "hewed"            "two"              "handed"          
## [28465] "stroke"           "laid"             "last"            
## [28468] "orc"              "feet"             "now"             
## [28471] "count"            "passes"           "master"          
## [28474] "legolas"          "must"             "stop"            
## [28477] "rat"              "hole"             "said"            
## [28480] "gamling"          "dwarves"          "said"            
## [28483] "cunning"          "folk"             "stone"           
## [28486] "lend"             "us"               "aid"             
## [28489] "master"           "shape"            "stone"           
## [28492] "battle"           "axes"             "finger"          
## [28495] "nails"            "said"             "gimli"           
## [28498] "help"             "may"              "gathered"        
## [28501] "small"            "boulders"         "broken"          
## [28504] "stones"           "find"             "hand"            
## [28507] "gimlis"           "direction"        "westfold"        
## [28510] "men"              "blocked"          "inner"           
## [28513] "end"              "culvert"          "narrow"          
## [28516] "outlet"           "remained"         "deeping"         
## [28519] "stream"           "swollen"          "rain"            
## [28522] "churned"          "fretted"          "choked"          
## [28525] "path"             "spread"           "slowly"          
## [28528] "cold"             "pools"            "cliff"           
## [28531] "cliff"            "drier"            "said"            
## [28534] "gimli"            "come"             "gamling"         
## [28537] "let"              "us"               "see"             
## [28540] "things"           "go"               "wall"            
## [28543] "climbed"          "found"            "legolas"         
## [28546] "beside"           "aragorn"          "éomer"           
## [28549] "elf"              "whetting"         "long"            
## [28552] "knife"            "lull"             "assault"         
## [28555] "since"            "attempt"          "break"           
## [28558] "culvert"          "foiled"           "twenty"          
## [28561] "one"              "said"             "gimli"           
## [28564] "good"             "said"             "legolas"         
## [28567] "count"            "now"              "two"             
## [28570] "dozen"            "knife"            "work"            
## [28573] "éomer"            "aragorn"          "leant"           
## [28576] "wearily"          "swords"           "away"            
## [28579] "left"             "crash"            "clamour"         
## [28582] "battle"           "rock"             "rose"            
## [28585] "loud"             "hornburg"         "still"           
## [28588] "held"             "fast"             "like"            
## [28591] "island"           "sea"              "gates"           
## [28594] "lay"              "ruin"             "barricade"       
## [28597] "beams"            "stones"           "within"          
## [28600] "enemy"            "yet"              "passed"          
## [28603] "aragorn"          "looked"           "pale"            
## [28606] "stars"            "moon"             "now"             
## [28609] "sloping"          "behind"           "western"         
## [28612] "hills"            "enclosed"         "valley"          
## [28615] "night"            "long"             "years"           
## [28618] "said"             "long"             "day"             
## [28621] "tarry"            "dawn"             "far"             
## [28624] "said"             "gamling"          "now"             
## [28627] "climbed"          "beside"           "dawn"            
## [28630] "help"             "us"               "fear"            
## [28633] "yet"              "dawn"             "ever"            
## [28636] "hope"             "men"              "said"            
## [28639] "aragorn"          "creatures"        "isengard"        
## [28642] "half"             "orcs"             "goblin"          
## [28645] "men"              "foul"             "craft"           
## [28648] "saruman"          "bred"             "quail"           
## [28651] "sun"              "said"             "gamling"         
## [28654] "neither"          "wild"             "men"             
## [28657] "hills"            "hear"             "voices"          
## [28660] "hear"             "said"             "éomer"           
## [28663] "scream"           "birds"            "bellowing"       
## [28666] "beasts"           "ears"             "yet"             
## [28669] "many"             "cry"              "dunland"         
## [28672] "tongue"           "said"             "gamling"         
## [28675] "know"             "tongue"           "ancient"         
## [28678] "speech"           "men"              "spoken"          
## [28681] "many"             "western"          "valleys"         
## [28684] "mark"             "hark"             "hate"            
## [28687] "us"               "glad"             "doom"            
## [28690] "seems"            "certain"          "king"            
## [28693] "king"             "cry"              "take"            
## [28696] "king"             "death"            "forgoil"         
## [28699] "death"            "strawheads"       "death"           
## [28702] "robbers"          "north"            "names"           
## [28705] "us"               "half"             "thousand"        
## [28708] "years"            "forgotten"        "grievance"       
## [28711] "lords"            "gondor"           "gave"            
## [28714] "mark"             "eorl"             "young"           
## [28717] "made"             "alliance"         "old"             
## [28720] "hatred"           "saruman"          "inflamed"        
## [28723] "fierce"           "folk"             "roused"          
## [28726] "give"             "way"              "now"             
## [28729] "dusk"             "dawn"             "théoden"         
## [28732] "taken"            "slain"            "nonetheless"     
## [28735] "day"              "bring"            "hope"            
## [28738] "said"             "aragorn"          "said"            
## [28741] "foe"              "ever"             "taken"           
## [28744] "hornburg"         "men"              "defended"        
## [28747] "minstrels"        "say"              "said"            
## [28750] "éomer"            "let"              "us"              
## [28753] "defend"           "hope"             "said"            
## [28756] "aragorn"          "even"             "spoke"           
## [28759] "came"             "blare"            "trumpets"        
## [28762] "crash"            "flash"            "flame"           
## [28765] "smoke"            "waters"           "deeping"         
## [28768] "stream"           "poured"           "hissing"         
## [28771] "foaming"          "choked"           "longer"          
## [28774] "gaping"           "hole"             "blasted"         
## [28777] "wall"             "host"             "dark"            
## [28780] "shapes"           "poured"           "devilry"         
## [28783] "saruman"          "cried"            "aragorn"         
## [28786] "crept"            "culvert"          "talked"          
## [28789] "lit"              "fire"             "orthanc"         
## [28792] "beneath"          "feet"             "elendil"         
## [28795] "elendil"          "shouted"          "leaped"          
## [28798] "breach"           "even"             "hundred"         
## [28801] "ladders"          "raised"           "battlements"     
## [28804] "wall"             "wall"             "last"            
## [28807] "assault"          "came"             "sweeping"        
## [28810] "like"             "dark"             "wave"            
## [28813] "upon"             "hill"             "sand"            
## [28816] "defence"          "swept"            "away"            
## [28819] "riders"           "driven"           "back"            
## [28822] "deep"             "falling"          "fighting"        
## [28825] "gave"             "way"              "step"            
## [28828] "step"             "towards"          "caves"           
## [28831] "others"           "cut"              "way"             
## [28834] "back"             "towards"          "citadel"         
## [28837] "broad"            "stairway"         "climbed"         
## [28840] "deep"             "rock"             "rear"            
## [28843] "gate"             "hornburg"         "near"            
## [28846] "bottom"           "stood"            "aragorn"         
## [28849] "hand"             "still"            "andúril"         
## [28852] "gleamed"          "terror"           "sword"           
## [28855] "held"             "back"             "enemy"           
## [28858] "one"              "one"              "gain"            
## [28861] "stair"            "passed"           "towards"         
## [28864] "gate"             "behind"           "upper"           
## [28867] "steps"            "knelt"            "legolas"         
## [28870] "bow"              "bent"             "one"             
## [28873] "gleaned"          "arrow"            "left"            
## [28876] "peered"           "now"              "ready"           
## [28879] "shoot"            "first"            "orc"             
## [28882] "dare"             "approach"         "stair"           
## [28885] "can"              "now"              "got"             
## [28888] "safe"             "within"           "aragorn"         
## [28891] "called"           "come"             "back"            
## [28894] "aragorn"          "turned"           "sped"            
## [28897] "stair"            "ran"              "stumbled"        
## [28900] "weariness"        "enemies"          "leapt"           
## [28903] "forward"          "came"             "orcs"            
## [28906] "yelling"          "long"             "arms"            
## [28909] "stretched"        "seize"            "foremost"        
## [28912] "fell"             "legolas"          "last"            
## [28915] "arrow"            "throat"           "rest"            
## [28918] "sprang"           "great"            "boulder"         
## [28921] "cast"             "outer"            "wall"            
## [28924] "crashed"          "upon"             "stair"           
## [28927] "hurled"           "back"             "deep"            
## [28930] "aragorn"          "gained"           "door"            
## [28933] "swiftly"          "clanged"          "behind"          
## [28936] "things"           "go"               "ill"             
## [28939] "friends"          "said"             "wiping"          
## [28942] "sweat"            "brow"             "arm"             
## [28945] "ill"              "enough"           "said"            
## [28948] "legolas"          "yet"              "hopeless"        
## [28951] "us"               "gimli"            "know"            
## [28954] "said"             "aragorn"          "last"            
## [28957] "saw"              "fighting"         "ground"          
## [28960] "behind"           "wall"             "enemy"           
## [28963] "swept"            "us"               "apart"           
## [28966] "alas"             "evil"             "news"            
## [28969] "said"             "legolas"          "stout"           
## [28972] "strong"           "said"             "aragorn"         
## [28975] "let"              "us"               "hope"            
## [28978] "escape"           "back"             "caves"           
## [28981] "safe"             "safer"            "refuge"          
## [28984] "liking"           "dwarf"            "must"            
## [28987] "hope"             "said"             "legolas"         
## [28990] "wish"             "come"             "way"             
## [28993] "desired"          "tell"             "master"          
## [28996] "gimli"            "tale"             "now"             
## [28999] "thirty"           "nine"             "wins"            
## [29002] "back"             "caves"            "pass"            
## [29005] "count"            "laughed"          "aragorn"         
## [29008] "never"            "see"              "axe"             
## [29011] "wielded"          "must"             "go"              
## [29014] "seek"             "arrows"           "said"            
## [29017] "legolas"          "night"            "end"             
## [29020] "better"           "light"            "shooting"        
## [29023] "aragorn"          "now"              "passed"          
## [29026] "citadel"          "dismay"           "learned"         
## [29029] "éomer"            "reached"          "hornburg"        
## [29032] "nay"              "come"             "rock"            
## [29035] "said"             "one"              "westfold"        
## [29038] "men"              "last"             "saw"             
## [29041] "gathering"        "men"              "fighting"        
## [29044] "mouth"            "deep"             "gamling"         
## [29047] "dwarf"            "come"             "aragorn"         
## [29050] "strode"           "inner"            "court"           
## [29053] "mounted"          "high"             "chamber"         
## [29056] "tower"            "stood"            "king"            
## [29059] "dark"             "narrow"           "window"          
## [29062] "looking"          "upon"             "vale"            
## [29065] "news"             "aragorn"          "said"            
## [29068] "deeping"          "wall"             "taken"           
## [29071] "lord"             "defence"          "swept"           
## [29074] "away"             "many"             "escaped"         
## [29077] "hither"           "rock"             "éomer"           
## [29080] "lord"             "many"             "men"             
## [29083] "retreated"        "deep"             "say"             
## [29086] "éomer"            "amongst"          "narrows"         
## [29089] "may"              "hold"             "back"            
## [29092] "enemy"            "come"             "within"          
## [29095] "caves"            "hope"             "may"             
## [29098] "know"             "good"             "provision"       
## [29101] "said"             "air"              "wholesome"       
## [29104] "outlets"          "fissures"         "rock"            
## [29107] "far"              "none"             "can"             
## [29110] "force"            "entrance"         "determined"      
## [29113] "men"              "may"              "hold"            
## [29116] "long"             "orcs"             "brought"         
## [29119] "devilry"          "orthanc"          "said"            
## [29122] "aragorn"          "blasting"         "fire"            
## [29125] "took"             "wall"             "come"            
## [29128] "caves"            "may"              "seal"            
## [29131] "inside"           "now"              "must"            
## [29134] "turn"             "thoughts"         "defence"         
## [29137] "fret"             "prison"           "said"            
## [29140] "théoden"          "set"              "spear"           
## [29143] "rest"             "riding"           "men"             
## [29146] "upon"             "field"            "maybe"           
## [29149] "felt"             "joy"              "battle"          
## [29152] "ended"            "serve"            "little"          
## [29155] "purpose"          "least"            "guarded"         
## [29158] "strongest"        "fastness"         "mark"            
## [29161] "said"             "aragorn"          "hope"            
## [29164] "defend"           "hornburg"         "edoras"          
## [29167] "even"             "dunharrow"        "mountains"       
## [29170] "said"             "hornburg"         "never"           
## [29173] "fallen"           "assault"          "said"            
## [29176] "théoden"          "now"              "heart"           
## [29179] "doubtful"         "world"            "changes"         
## [29182] "strong"           "now"              "proves"          
## [29185] "unsure"           "shall"            "tower"           
## [29188] "withstand"        "numbers"          "reckless"        
## [29191] "hate"             "known"            "strength"        
## [29194] "isengard"         "grown"            "great"           
## [29197] "maybe"            "rashly"           "ridden"          
## [29200] "forth"            "meet"             "arts"            
## [29203] "gandalf"          "counsel"          "seems"           
## [29206] "now"              "good"             "morning"         
## [29209] "sun"              "judge"            "counsel"         
## [29212] "gandalf"          "lord"             "said"            
## [29215] "aragorn"          "end"              "long"            
## [29218] "said"             "king"             "end"             
## [29221] "taken"            "like"             "old"             
## [29224] "badger"           "trap"             "snowmane"        
## [29227] "hasufel"          "horses"           "guard"           
## [29230] "inner"            "court"            "dawn"            
## [29233] "comes"            "bid"              "men"             
## [29236] "sound"            "helms"            "horn"            
## [29239] "ride"             "forth"            "ride"            
## [29242] "son"              "arathorn"         "maybe"           
## [29245] "shall"            "cleave"           "road"            
## [29248] "make"             "end"              "worth"           
## [29251] "song"             "left"             "sing"            
## [29254] "us"               "hereafter"        "ride"            
## [29257] "said"             "aragorn"          "taking"          
## [29260] "leave"            "returned"         "walls"           
## [29263] "passed"           "round"            "circuit"         
## [29266] "enheartening"     "men"              "lending"         
## [29269] "aid"              "wherever"         "assault"         
## [29272] "hot"              "legolas"          "went"            
## [29275] "blasts"           "fire"             "leaped"          
## [29278] "shaking"          "stones"           "grappling"       
## [29281] "hooks"            "hurled"           "ladders"         
## [29284] "raised"           "orcs"             "gained"          
## [29287] "summit"           "outer"            "wall"            
## [29290] "defenders"        "cast"             "last"            
## [29293] "aragorn"          "stood"            "great"           
## [29296] "gates"            "heedless"         "darts"           
## [29299] "enemy"            "looked"           "forth"           
## [29302] "saw"              "eastern"          "sky"             
## [29305] "grow"             "pale"             "raised"          
## [29308] "empty"            "hand"             "palm"            
## [29311] "outward"          "token"            "parley"          
## [29314] "orcs"             "yelled"           "jeered"          
## [29317] "come"             "come"             "cried"           
## [29320] "wish"             "speak"            "us"              
## [29323] "come"             "bring"            "king"            
## [29326] "fighting"         "uruk"             "hai"             
## [29329] "fetch"            "hole"             "come"            
## [29332] "bring"            "skulking"         "king"            
## [29335] "king"             "stays"            "comes"           
## [29338] "said"             "aragorn"          "answered"        
## [29341] "look"             "wish"             "see"             
## [29344] "greatness"        "army"             "fighting"        
## [29347] "uruk"             "hai"              "looked"          
## [29350] "see"              "dawn"             "said"            
## [29353] "aragorn"          "dawn"             "jeered"          
## [29356] "uruk"             "hai"              "stop"            
## [29359] "fight"            "night"            "day"             
## [29362] "fair"             "weather"          "storm"           
## [29365] "come"             "kill"             "sun"             
## [29368] "moon"             "dawn"             "none"            
## [29371] "knows"            "new"              "day"             
## [29374] "shall"            "bring"            "said"            
## [29377] "aragorn"          "get"              "gone"            
## [29380] "ere"              "turn"             "evil"            
## [29383] "get"              "shoot"            "wall"            
## [29386] "cried"            "parley"           "nothing"         
## [29389] "say"              "still"            "say"             
## [29392] "answered"         "aragorn"          "enemy"           
## [29395] "yet"              "taken"            "hornburg"        
## [29398] "depart"           "one"              "spared"          
## [29401] "one"              "left"             "alive"           
## [29404] "take"             "back"             "tidings"         
## [29407] "north"            "know"             "peril"           
## [29410] "great"            "power"            "royalty"         
## [29413] "revealed"         "aragorn"          "stood"           
## [29416] "alone"            "ruined"           "gates"           
## [29419] "host"             "enemies"          "many"            
## [29422] "wild"             "men"              "paused"          
## [29425] "looked"           "back"             "shoulders"       
## [29428] "valley"           "looked"           "doubtfully"      
## [29431] "sky"              "orcs"             "laughed"         
## [29434] "loud"             "voices"           "hail"            
## [29437] "darts"            "arrows"           "whistled"        
## [29440] "wall"             "aragorn"          "leaped"          
## [29443] "roar"             "blast"            "fire"            
## [29446] "archway"          "gate"             "stood"           
## [29449] "moment"           "crumbled"         "crashed"         
## [29452] "smoke"            "dust"             "barricade"       
## [29455] "scattered"        "thunderbolt"      "aragorn"         
## [29458] "ran"              "kings"            "tower"           
## [29461] "even"             "gate"             "fell"            
## [29464] "orcs"             "yelled"           "preparing"       
## [29467] "charge"           "murmur"           "arose"           
## [29470] "behind"           "like"             "wind"            
## [29473] "distance"         "grew"             "clamour"         
## [29476] "many"             "voices"           "crying"          
## [29479] "strange"          "news"             "dawn"            
## [29482] "orcs"             "upon"             "rock"            
## [29485] "hearing"          "rumour"           "dismay"          
## [29488] "wavered"          "looked"           "back"            
## [29491] "sudden"           "terrible"         "tower"           
## [29494] "sound"            "great"            "horn"            
## [29497] "helm"             "rang"             "heard"           
## [29500] "sound"            "trembled"         "many"            
## [29503] "orcs"             "cast"             "faces"           
## [29506] "covered"          "ears"             "claws"           
## [29509] "back"             "deep"             "echoes"          
## [29512] "came"             "blast"            "upon"            
## [29515] "blast"            "every"            "cliff"           
## [29518] "hill"             "mighty"           "herald"          
## [29521] "stood"            "walls"            "men"             
## [29524] "looked"           "listening"        "wonder"          
## [29527] "echoes"           "die"              "ever"            
## [29530] "horn"             "blasts"           "wound"           
## [29533] "among"            "hills"            "nearer"          
## [29536] "now"              "louder"           "answered"        
## [29539] "one"              "another"          "blowing"         
## [29542] "fierce"           "free"             "helm"            
## [29545] "helm"             "riders"           "shouted"         
## [29548] "helm"             "arisen"           "comes"           
## [29551] "back"             "war"              "helm"            
## [29554] "théoden"          "king"             "shout"           
## [29557] "king"             "came"             "horse"           
## [29560] "white"            "snow"             "golden"          
## [29563] "shield"           "spear"            "long"            
## [29566] "right"            "hand"             "aragorn"         
## [29569] "elendils"         "heir"             "behind"          
## [29572] "rode"             "lords"            "house"           
## [29575] "eorl"             "young"            "light"           
## [29578] "sprang"           "sky"              "night"           
## [29581] "departed"         "forth"            "eorlingas"       
## [29584] "cry"              "great"            "noise"           
## [29587] "charged"          "gates"            "roared"          
## [29590] "causeway"         "swept"            "drove"           
## [29593] "hosts"            "isengard"         "wind"            
## [29596] "among"            "grass"            "behind"          
## [29599] "deep"             "came"             "stern"           
## [29602] "cries"            "men"              "issuing"         
## [29605] "caves"            "driving"          "forth"           
## [29608] "enemy"            "poured"           "men"             
## [29611] "left"             "upon"             "rock"            
## [29614] "ever"             "sound"            "blowing"         
## [29617] "horns"            "echoed"           "hills"           
## [29620] "rode"             "king"             "companions"      
## [29623] "captains"         "champions"        "fell"            
## [29626] "fled"             "neither"          "orc"             
## [29629] "man"              "withstood"        "backs"           
## [29632] "swords"           "spears"           "riders"          
## [29635] "faces"            "valley"           "cried"           
## [29638] "wailed"           "fear"             "great"           
## [29641] "wonder"           "come"             "upon"            
## [29644] "rising"           "day"              "king"            
## [29647] "théoden"          "rode"             "helms"           
## [29650] "gate"             "clove"            "path"            
## [29653] "great"            "dike"             "company"         
## [29656] "halted"           "light"            "grew"            
## [29659] "bright"           "shafts"           "sun"             
## [29662] "flared"           "eastern"          "hills"           
## [29665] "glimmered"        "spears"           "sat"             
## [29668] "silent"           "horses"           "gazed"           
## [29671] "upon"             "deeping"          "coomb"           
## [29674] "land"             "changed"          "green"           
## [29677] "dale"             "lain"             "grassy"          
## [29680] "slopes"           "lapping"          "ever"            
## [29683] "mounting"         "hills"            "now"             
## [29686] "forest"           "loomed"           "great"           
## [29689] "trees"            "bare"             "silent"          
## [29692] "stood"            "rank"             "rank"            
## [29695] "tangled"          "bough"            "hoary"           
## [29698] "head"             "twisted"          "roots"           
## [29701] "buried"           "long"             "green"           
## [29704] "grass"            "darkness"         "dike"            
## [29707] "eaves"            "nameless"         "wood"            
## [29710] "two"              "open"             "furlongs"        
## [29713] "lay"              "now"              "cowered"         
## [29716] "proud"            "hosts"            "saruman"         
## [29719] "terror"           "king"             "terror"          
## [29722] "trees"            "streamed"         "helms"           
## [29725] "gate"             "dike"             "empty"           
## [29728] "packed"           "like"             "swarming"        
## [29731] "flies"            "vainly"           "crawled"         
## [29734] "clambered"        "walls"            "coomb"           
## [29737] "seeking"          "escape"           "upon"            
## [29740] "east"             "sheer"            "stony"           
## [29743] "valleys"          "side"             "upon"            
## [29746] "left"             "west"             "final"           
## [29749] "doom"             "approached"       "suddenly"        
## [29752] "upon"             "ridge"            "appeared"        
## [29755] "rider"            "clad"             "white"           
## [29758] "shining"          "rising"           "sun"             
## [29761] "low"              "hills"            "horns"           
## [29764] "sounding"         "behind"           "hastening"       
## [29767] "long"             "slopes"           "thousand"        
## [29770] "men"              "foot"             "swords"          
## [29773] "hands"            "amid"             "strode"          
## [29776] "man"              "tall"             "strong"          
## [29779] "shield"           "red"              "came"            
## [29782] "valleys"          "brink"            "set"             
## [29785] "lips"             "great"            "black"           
## [29788] "horn"             "blew"             "ringing"         
## [29791] "blast"            "erkenbrand"       "riders"          
## [29794] "shouted"          "erkenbrand"       "behold"          
## [29797] "white"            "rider"            "cried"           
## [29800] "aragorn"          "gandalf"          "come"            
## [29803] "mithrandir"       "mithrandir"       "said"            
## [29806] "legolas"          "wizardry"         "indeed"          
## [29809] "come"             "look"             "forest"          
## [29812] "ere"              "spell"            "changes"         
## [29815] "hosts"            "isengard"         "roared"          
## [29818] "swaying"          "way"              "turning"         
## [29821] "fear"             "fear"             "horn"            
## [29824] "sounded"          "tower"            "breach"          
## [29827] "dike"             "charged"          "kings"           
## [29830] "company"          "hills"            "leaped"          
## [29833] "erkenbrand"       "lord"             "westfold"        
## [29836] "leaped"           "shadowfax"        "like"            
## [29839] "deer"             "runs"             "surefooted"      
## [29842] "mountains"        "white"            "rider"           
## [29845] "upon"             "terror"           "coming"          
## [29848] "filled"           "enemy"            "madness"         
## [29851] "wild"             "men"              "fell"            
## [29854] "faces"            "orcs"             "reeled"          
## [29857] "screamed"         "cast"             "aside"           
## [29860] "sword"            "spear"            "like"            
## [29863] "black"            "smoke"            "driven"          
## [29866] "mounting"         "wind"             "fled"            
## [29869] "wailing"          "passed"           "waiting"         
## [29872] "shadow"           "trees"            "shadow"          
## [29875] "none"             "ever"             "came"            
## [29878] "chapter"          "road"             "isengard"        
## [29881] "light"            "fair"             "morning"         
## [29884] "king"             "théoden"          "gandalf"         
## [29887] "white"            "rider"            "met"             
## [29890] "upon"             "green"            "grass"           
## [29893] "beside"           "deeping"          "stream"          
## [29896] "also"             "aragorn"          "son"             
## [29899] "arathorn"         "legolas"          "elf"             
## [29902] "erkenbrand"       "westfold"         "lords"           
## [29905] "golden"           "house"            "gathered"        
## [29908] "rohirrim"         "riders"           "mark"            
## [29911] "wonder"           "overcame"         "joy"             
## [29914] "victory"          "eyes"             "turned"          
## [29917] "towards"          "wood"             "suddenly"        
## [29920] "great"            "shout"            "dike"            
## [29923] "came"             "driven"           "back"            
## [29926] "deep"             "came"             "gamling"         
## [29929] "old"              "éomer"            "son"             
## [29932] "éomund"           "beside"           "walked"          
## [29935] "gimli"            "dwarf"            "helm"            
## [29938] "head"             "linen"            "band"            
## [29941] "stained"          "blood"            "voice"           
## [29944] "loud"             "strong"           "forty"           
## [29947] "two"              "master"           "legolas"         
## [29950] "cried"            "alas"             "axe"             
## [29953] "notched"          "forty"            "second"          
## [29956] "iron"             "collar"           "neck"            
## [29959] "passed"           "score"            "one"             
## [29962] "answered"         "legolas"          "grudge"          
## [29965] "game"             "glad"             "see"             
## [29968] "legs"             "welcome"          "éomer"           
## [29971] "sister"           "son"              "said"            
## [29974] "théoden"          "now"              "see"             
## [29977] "safe"             "glad"             "indeed"          
## [29980] "hail"             "lord"             "mark"            
## [29983] "said"             "éomer"            "dark"            
## [29986] "night"            "passed"           "day"             
## [29989] "come"             "day"              "brought"         
## [29992] "strange"          "tidings"          "turned"          
## [29995] "gazed"            "wonder"           "first"           
## [29998] "wood"             "gandalf"          "come"            
## [30001] "hour"             "need"             "unlooked"        
## [30004] "said"             "unlooked"         "said"            
## [30007] "gandalf"          "said"             "return"          
## [30010] "meet"             "name"             "hour"            
## [30013] "foretell"         "manner"           "coming"          
## [30016] "strange"          "help"             "bring"           
## [30019] "mighty"           "wizardry"         "gandalf"         
## [30022] "white"            "may"              "shown"           
## [30025] "yet"              "given"            "good"            
## [30028] "counsel"          "peril"            "made"            
## [30031] "use"              "speed"            "shadowfax"       
## [30034] "valour"           "done"             "stout"           
## [30037] "legs"             "westfold"         "men"             
## [30040] "marching"         "night"            "gazed"           
## [30043] "gandalf"          "still"            "greater"         
## [30046] "wonder"           "glanced"          "darkly"          
## [30049] "wood"             "passed"           "hands"           
## [30052] "brows"            "thought"          "eyes"            
## [30055] "saw"              "otherwise"        "gandalf"         
## [30058] "laughed"          "long"             "merrily"         
## [30061] "trees"            "said"             "nay"             
## [30064] "see"              "wood"             "plainly"         
## [30067] "deed"             "mine"             "thing"           
## [30070] "beyond"           "counsel"          "wise"            
## [30073] "better"           "design"           "better"          
## [30076] "even"             "hope"             "event"           
## [30079] "proved"           "whose"            "wizardry"        
## [30082] "said"             "théoden"          "sarumans"        
## [30085] "plain"            "mightier"         "sage"            
## [30088] "yet"              "learn"            "wizardry"        
## [30091] "power"            "far"              "older"           
## [30094] "said"             "gandalf"          "power"           
## [30097] "walked"           "earth"            "ere"             
## [30100] "elf"              "sang"             "hammer"          
## [30103] "rang"             "ere"              "iron"            
## [30106] "found"            "tree"             "hewn"            
## [30109] "young"            "mountain"         "moon"            
## [30112] "ere"              "ring"             "made"            
## [30115] "wrought"          "woe"              "walked"          
## [30118] "forests"          "long"             "ago"             
## [30121] "may"              "answer"           "riddle"          
## [30124] "said"             "théoden"          "learn"           
## [30127] "come"             "isengard"         "answered"        
## [30130] "gandalf"          "isengard"         "cried"           
## [30133] "yes"              "said"             "gandalf"         
## [30136] "shall"            "return"           "isengard"        
## [30139] "may"              "come"             "may"             
## [30142] "see"              "strange"          "things"          
## [30145] "men"              "enough"           "mark"            
## [30148] "gathered"         "together"         "healed"          
## [30151] "wounds"           "weariness"        "assault"         
## [30154] "stronghold"       "saruman"          "said"            
## [30157] "théoden"          "nevertheless"     "isengard"        
## [30160] "go"               "said"             "gandalf"         
## [30163] "shall"            "stay"             "long"            
## [30166] "way"              "lies"             "now"             
## [30169] "eastward"         "look"             "edoras"          
## [30172] "ere"              "waning"           "moon"            
## [30175] "nay"              "said"             "théoden"         
## [30178] "dark"             "hour"             "dawn"            
## [30181] "doubted"          "part"             "now"             
## [30184] "come"             "counsel"          "wish"            
## [30187] "speak"            "saruman"          "soon"            
## [30190] "may"              "now"              "said"            
## [30193] "gandalf"          "since"            "done"            
## [30196] "great"            "injury"           "fitting"         
## [30199] "soon"             "swiftly"          "ride"            
## [30202] "men"              "weary"            "battle"          
## [30205] "said"             "king"             "weary"           
## [30208] "also"             "ridden"           "far"             
## [30211] "slept"            "little"           "alas"            
## [30214] "old"              "age"              "feigned"         
## [30217] "due"              "whisperings"      "wormtongue"      
## [30220] "ill"              "leech"            "can"             
## [30223] "wholly"           "cure"             "even"            
## [30226] "gandalf"          "let"              "ride"            
## [30229] "rest"             "now"              "said"            
## [30232] "gandalf"          "journey"          "shadow"          
## [30235] "evening"          "well"             "counsel"         
## [30238] "comings"          "goings"           "secret"          
## [30241] "may"              "henceforth"       "command"         
## [30244] "many"             "men"              "go"              
## [30247] "théoden"          "go"               "parley"          
## [30250] "fight"            "king"             "chose"           
## [30253] "men"              "unhurt"           "swift"           
## [30256] "horses"           "sent"             "forth"           
## [30259] "tidings"          "victory"          "every"           
## [30262] "vale"             "mark"             "bore"            
## [30265] "summons"          "also"             "bidding"         
## [30268] "men"              "young"            "old"             
## [30271] "come"             "haste"            "edoras"          
## [30274] "lord"             "mark"             "hold"            
## [30277] "assembly"         "bear"             "arms"            
## [30280] "second"           "day"              "full"            
## [30283] "moon"             "ride"             "isengard"        
## [30286] "king"             "chose"            "éomer"           
## [30289] "twenty"           "men"              "household"       
## [30292] "gandalf"          "go"               "aragorn"         
## [30295] "legolas"          "gimli"            "spite"           
## [30298] "hurt"             "dwarf"            "stay"            
## [30301] "behind"           "feeble"           "blow"            
## [30304] "cap"              "turned"           "said"            
## [30307] "take"             "orc"              "scratch"         
## [30310] "keep"             "back"             "tend"            
## [30313] "rest"             "said"             "aragorn"         
## [30316] "king"             "now"              "returned"        
## [30319] "hornburg"         "slept"            "sleep"           
## [30322] "quiet"            "known"            "many"            
## [30325] "years"            "remainder"        "chosen"          
## [30328] "company"          "rested"           "also"            
## [30331] "others"           "hurt"             "wounded"         
## [30334] "began"            "great"            "labour"          
## [30337] "many"             "fallen"           "battle"          
## [30340] "lay"              "dead"             "upon"            
## [30343] "field"            "deep"             "orcs"            
## [30346] "remained"         "alive"            "bodies"          
## [30349] "uncounted"        "great"            "many"            
## [30352] "hillmen"          "given"            "afraid"          
## [30355] "cried"            "mercy"            "men"             
## [30358] "mark"             "took"             "weapons"         
## [30361] "set"              "work"             "help"            
## [30364] "now"              "repair"           "evil"            
## [30367] "joined"           "said"             "erkenbrand"      
## [30370] "afterwards"       "shall"            "take"            
## [30373] "oath"             "never"            "pass"            
## [30376] "fords"            "isen"             "arms"            
## [30379] "march"            "enemies"          "men"             
## [30382] "shall"            "go"               "free"            
## [30385] "back"             "land"             "deluded"         
## [30388] "saruman"          "many"             "got"             
## [30391] "death"            "reward"           "trust"           
## [30394] "conquered"        "little"           "better"          
## [30397] "wages"            "men"              "dunland"         
## [30400] "amazed"           "saruman"          "told"            
## [30403] "men"              "rohan"            "cruel"           
## [30406] "burned"           "captives"         "alive"           
## [30409] "midst"            "field"            "hornburg"        
## [30412] "two"              "mounds"           "raised"          
## [30415] "beneath"          "laid"             "riders"          
## [30418] "mark"             "fell"             "defence"         
## [30421] "east"             "dales"            "upon"            
## [30424] "one"              "side"             "westfold"        
## [30427] "upon"             "grave"            "alone"           
## [30430] "shadow"           "hornburg"         "lay"             
## [30433] "háma"             "captain"          "kings"           
## [30436] "guard"            "fell"             "gate"            
## [30439] "orcs"             "piled"            "great"           
## [30442] "heaps"            "away"             "mounds"          
## [30445] "men"              "far"              "eaves"           
## [30448] "forest"           "people"           "troubled"        
## [30451] "minds"            "heaps"            "carrion"         
## [30454] "great"            "burial"           "burning"         
## [30457] "little"           "wood"             "firing"          
## [30460] "none"             "dared"            "take"            
## [30463] "axe"              "strange"          "trees"           
## [30466] "even"             "gandalf"          "warned"          
## [30469] "hurt"             "neither"          "bark"            
## [30472] "bough"            "great"            "peril"           
## [30475] "let"              "orcs"             "lie"             
## [30478] "said"             "gandalf"          "morning"         
## [30481] "may"              "bring"            "new"             
## [30484] "counsel"          "afternoon"        "kings"           
## [30487] "company"          "prepared"         "depart"          
## [30490] "work"             "burial"           "beginning"       
## [30493] "théoden"          "mourned"          "loss"            
## [30496] "háma"             "captain"          "cast"            
## [30499] "first"            "earth"            "upon"            
## [30502] "grave"            "great"            "injury"          
## [30505] "indeed"           "saruman"          "done"            
## [30508] "land"             "said"             "remember"        
## [30511] "meet"             "sun"              "already"         
## [30514] "drawing"          "near"             "hills"           
## [30517] "upon"             "west"             "coomb"           
## [30520] "last"             "théoden"          "gandalf"         
## [30523] "companions"       "rode"             "dike"            
## [30526] "behind"           "gathered"         "great"           
## [30529] "host"             "riders"           "people"          
## [30532] "westfold"         "old"              "young"           
## [30535] "women"            "children"         "come"            
## [30538] "caves"            "song"             "victory"         
## [30541] "sang"             "clear"            "voices"          
## [30544] "fell"             "silent"           "wondering"       
## [30547] "chance"           "eyes"             "trees"           
## [30550] "feared"           "riders"           "came"            
## [30553] "wood"             "halted"           "horse"           
## [30556] "man"              "unwilling"        "pass"            
## [30559] "trees"            "grey"             "menacing"        
## [30562] "shadow"           "mist"             "ends"            
## [30565] "long"             "sweeping"         "boughs"          
## [30568] "hung"             "like"             "searching"       
## [30571] "fingers"          "roots"            "stood"           
## [30574] "ground"           "like"             "limbs"           
## [30577] "strange"          "monsters"         "dark"            
## [30580] "caverns"          "opened"           "beneath"         
## [30583] "gandalf"          "went"             "forward"         
## [30586] "leading"          "company"          "road"            
## [30589] "hornburg"         "met"              "trees"           
## [30592] "saw"              "now"              "opening"         
## [30595] "like"             "arched"           "gate"            
## [30598] "mighty"           "boughs"           "gandalf"         
## [30601] "passed"           "followed"         "amazement"       
## [30604] "found"            "road"             "ran"             
## [30607] "deeping"          "stream"           "beside"          
## [30610] "sky"              "open"             "full"            
## [30613] "golden"           "light"            "either"          
## [30616] "side"             "great"            "aisles"          
## [30619] "wood"             "already"          "wrapped"         
## [30622] "dusk"             "stretching"       "away"            
## [30625] "impenetrable"     "shadows"          "heard"           
## [30628] "creaking"         "groaning"         "boughs"          
## [30631] "far"              "cries"            "rumour"          
## [30634] "wordless"         "voices"           "murmuring"       
## [30637] "angrily"          "orc"              "living"          
## [30640] "creature"         "seen"             "legolas"         
## [30643] "gimli"            "now"              "riding"          
## [30646] "together"         "upon"             "one"             
## [30649] "horse"            "kept"             "close"           
## [30652] "beside"           "gandalf"          "gimli"           
## [30655] "afraid"           "wood"             "hot"             
## [30658] "said"             "legolas"          "gandalf"         
## [30661] "feel"             "great"            "wrath"           
## [30664] "feel"             "air"              "throb"           
## [30667] "ears"             "yes"              "said"            
## [30670] "gandalf"          "become"           "miserable"       
## [30673] "orcs"             "said"             "legolas"         
## [30676] "think"            "one"              "ever"            
## [30679] "know"             "said"             "gandalf"         
## [30682] "rode"             "silence"          "legolas"         
## [30685] "ever"             "glancing"         "side"            
## [30688] "side"             "often"            "halted"          
## [30691] "listen"           "sounds"           "wood"            
## [30694] "gimli"            "allowed"          "strangest"       
## [30697] "trees"            "ever"             "saw"             
## [30700] "said"             "seen"             "many"            
## [30703] "oak"              "grow"             "acorn"           
## [30706] "ruinous"          "age"              "wish"            
## [30709] "leisure"          "now"              "walk"            
## [30712] "among"            "voices"           "time"            
## [30715] "might"            "come"             "understand"      
## [30718] "thought"          "said"             "gimli"           
## [30721] "let"              "us"               "leave"           
## [30724] "guess"            "thought"          "already"         
## [30727] "hatred"           "go"               "two"             
## [30730] "legs"             "speech"           "crushing"        
## [30733] "strangling"       "go"               "two"             
## [30736] "legs"             "said"             "legolas"         
## [30739] "think"            "wrong"            "orcs"            
## [30742] "hate"             "belong"           "know"            
## [30745] "little"           "elves"            "men"             
## [30748] "far"              "away"             "valleys"         
## [30751] "sprang"           "deep"             "dales"           
## [30754] "fangorn"          "gimli"            "whence"          
## [30757] "come"             "guess"            "perilous"        
## [30760] "wood"             "middle"           "earth"           
## [30763] "said"             "gimli"            "grateful"        
## [30766] "part"             "played"           "love"            
## [30769] "may"              "think"            "wonderful"       
## [30772] "seen"             "greater"          "wonder"          
## [30775] "land"             "beautiful"        "grove"           
## [30778] "glade"            "ever"             "grew"            
## [30781] "heart"            "still"            "full"            
## [30784] "ft"               "strange"          "ways"            
## [30787] "men"              "legolas"          "one"             
## [30790] "marvels"          "northern"         "world"           
## [30793] "say"              "caves"            "say"             
## [30796] "caves"            "holes"            "fly"             
## [30799] "time"             "war"              "store"           
## [30802] "fodder"           "good"             "legolas"         
## [30805] "know"             "caverns"          "helms"           
## [30808] "deep"             "vast"             "beautiful"       
## [30811] "endless"          "pilgrimage"       "dwarves"         
## [30814] "merely"           "gaze"             "things"          
## [30817] "known"            "aye"              "indeed"          
## [30820] "pay"              "pure"             "gold"            
## [30823] "brief"            "glance"           "give"            
## [30826] "gold"             "excused"          "said"            
## [30829] "legolas"          "double"           "let"             
## [30832] "strayed"          "seen"             "forgive"         
## [30835] "jest"             "said"             "gimli"           
## [30838] "speak"            "like"             "fool"            
## [30841] "think"            "halls"            "fair"            
## [30844] "king"             "dwells"           "hill"            
## [30847] "mirkwood"         "dwarves"          "helped"          
## [30850] "making"           "long"             "ago"             
## [30853] "hovels"           "compared"         "caverns"         
## [30856] "seen"             "immeasurable"     "halls"           
## [30859] "filled"           "everlasting"      "music"           
## [30862] "water"            "tinkles"          "pools"           
## [30865] "fair"             "kheled"           "zâram"           
## [30868] "starlight"        "legolas"          "torches"         
## [30871] "kindled"          "men"              "walk"            
## [30874] "sandy"            "floors"           "echoing"         
## [30877] "domes"            "ah"               "legolas"         
## [30880] "gems"             "crystals"         "veins"           
## [30883] "precious"         "ore"              "glint"           
## [30886] "polished"         "walls"            "light"           
## [30889] "glows"            "folded"           "marbles"         
## [30892] "shell"            "like"             "translucent"     
## [30895] "living"           "hands"            "queen"           
## [30898] "galadriel"        "columns"          "white"           
## [30901] "saffron"          "dawn"             "rose"            
## [30904] "legolas"          "fluted"           "twisted"         
## [30907] "dreamlike"        "forms"            "spring"          
## [30910] "many"             "coloured"         "floors"          
## [30913] "meet"             "glistening"       "pendants"        
## [30916] "roof"             "wings"            "ropes"           
## [30919] "curtains"         "fine"             "frozen"          
## [30922] "clouds"           "spears"           "banners"         
## [30925] "pinnacles"        "suspended"        "palaces"         
## [30928] "still"            "lakes"            "mirror"          
## [30931] "glimmering"       "world"            "looks"           
## [30934] "dark"             "pools"            "covered"         
## [30937] "clear"            "glass"            "cities"          
## [30940] "mind"             "durin"            "scarce"          
## [30943] "imagined"         "sleep"            "stretch"         
## [30946] "avenues"          "pillared"         "courts"          
## [30949] "dark"             "recesses"         "light"           
## [30952] "can"              "come"             "plink"           
## [30955] "silver"           "drop"             "falls"           
## [30958] "round"            "wrinkles"         "glass"           
## [30961] "make"             "towers"           "bend"            
## [30964] "waver"            "like"             "weeds"           
## [30967] "corals"           "grotto"           "sea"             
## [30970] "evening"          "comes"            "fade"            
## [30973] "twinkle"          "torches"          "pass"            
## [30976] "another"          "chamber"          "another"         
## [30979] "dream"            "chamber"          "chamber"         
## [30982] "legolas"          "hall"             "opening"         
## [30985] "hall"             "dome"             "dome"            
## [30988] "stair"            "beyond"           "stair"           
## [30991] "still"            "winding"          "paths"           
## [30994] "lead"             "mountains"        "heart"           
## [30997] "caves"            "caverns"          "helms"           
## [31000] "deep"             "happy"            "chance"          
## [31003] "drove"            "makes"            "weep"            
## [31006] "leave"            "wish"             "fortune"         
## [31009] "comfort"          "gimli"            "said"            
## [31012] "elf"              "may"              "come"            
## [31015] "safe"             "war"              "return"          
## [31018] "see"              "tell"             "kindred"         
## [31021] "seems"            "little"           "left"            
## [31024] "account"          "maybe"            "men"             
## [31027] "land"             "wise"             "say"             
## [31030] "little"           "one"              "family"          
## [31033] "busy"             "dwarves"          "hammer"          
## [31036] "chisel"           "might"            "mar"             
## [31039] "made"             "understand"       "said"            
## [31042] "gimli"            "dwarf"            "unmoved"         
## [31045] "loveliness"       "none"             "durins"          
## [31048] "race"             "mine"             "caves"           
## [31051] "stones"           "ore"              "diamonds"        
## [31054] "gold"             "got"              "cut"             
## [31057] "groves"           "blossoming"       "trees"           
## [31060] "spring"           "time"             "firewood"        
## [31063] "tend"             "glades"           "flowering"       
## [31066] "stone"            "quarry"           "cautious"        
## [31069] "skill"            "tap"              "tap"             
## [31072] "small"            "chip"             "rock"            
## [31075] "perhaps"          "whole"            "anxious"         
## [31078] "day"              "work"             "years"           
## [31081] "went"             "open"             "new"             
## [31084] "ways"             "display"          "far"             
## [31087] "chambers"         "still"            "dark"            
## [31090] "glimpsed"         "void"             "beyond"          
## [31093] "fissures"         "rock"             "lights"          
## [31096] "legolas"          "make"             "lights"          
## [31099] "lamps"            "shone"            "khazad"          
## [31102] "dûm"              "wished"           "drive"           
## [31105] "away"             "night"            "lain"            
## [31108] "since"            "hills"            "made"            
## [31111] "desired"          "rest"             "let"             
## [31114] "night"            "return"           "move"            
## [31117] "gimli"            "said"             "legolas"         
## [31120] "never"            "heard"            "speak"           
## [31123] "like"             "almost"           "make"            
## [31126] "regret"           "seen"             "caves"           
## [31129] "come"             "let"              "us"              
## [31132] "make"             "bargain"          "return"          
## [31135] "safe"             "perils"           "await"           
## [31138] "us"               "journey"          "together"        
## [31141] "shall"            "visit"            "fangorn"         
## [31144] "come"             "see"              "helms"           
## [31147] "deep"             "way"              "return"          
## [31150] "choose"           "said"             "gimli"           
## [31153] "endure"           "fangorn"          "promise"         
## [31156] "come"             "back"             "caves"           
## [31159] "share"            "wonder"           "promise"         
## [31162] "said"             "legolas"          "alas"            
## [31165] "now"              "must"             "leave"           
## [31168] "behind"           "cave"             "wood"            
## [31171] "see"              "coming"           "end"             
## [31174] "trees"            "far"              "isengard"        
## [31177] "gandalf"          "fifteen"          "leagues"         
## [31180] "crows"            "saruman"          "make"            
## [31183] "said"             "gandalf"          "five"            
## [31186] "mouth"            "deeping"          "coomb"           
## [31189] "fords"            "ten"              "gates"           
## [31192] "isengard"         "shall"            "ride"            
## [31195] "way"              "night"            "come"            
## [31198] "shall"            "see"              "asked"           
## [31201] "gimli"            "may"              "know"            
## [31204] "guess"            "know"             "certain"         
## [31207] "answered"         "wizard"           "nightfall"       
## [31210] "yesterday"        "much"             "may"             
## [31213] "happened"         "since"            "yet"             
## [31216] "think"            "say"              "journey"         
## [31219] "vain"             "though"           "glittering"      
## [31222] "caves"            "aglarond"         "left"            
## [31225] "behind"           "last"             "company"         
## [31228] "passed"           "trees"            "found"           
## [31231] "come"             "bottom"           "coomb"           
## [31234] "road"             "helms"            "deep"            
## [31237] "branched"         "going"            "one"             
## [31240] "way"              "east"             "edoras"          
## [31243] "north"            "fords"            "isen"            
## [31246] "rode"             "eaves"            "wood"            
## [31249] "legolas"          "halted"           "looked"          
## [31252] "back"             "regret"           "gave"            
## [31255] "sudden"           "cry"              "eyes"            
## [31258] "said"             "eyes"             "looking"         
## [31261] "shadows"          "boughs"           "never"           
## [31264] "saw"              "eyes"             "others"          
## [31267] "surprised"        "cry"              "halted"          
## [31270] "turned"           "legolas"          "started"         
## [31273] "ride"             "back"             "cried"           
## [31276] "gimli"            "please"           "madness"         
## [31279] "let"              "first"            "get"             
## [31282] "horse"            "wish"             "see"             
## [31285] "eyes"             "stay"             "legolas"         
## [31288] "greenleaf"        "said"             "gandalf"         
## [31291] "go"               "back"             "wood"            
## [31294] "yet"              "now"              "time"            
## [31297] "even"             "spoke"            "came"            
## [31300] "forward"          "trees"            "three"           
## [31303] "strange"          "shapes"           "tall"            
## [31306] "trolls"           "twelve"           "feet"            
## [31309] "height"           "strong"           "bodies"          
## [31312] "stout"            "young"            "trees"           
## [31315] "seemed"           "clad"             "raiment"         
## [31318] "hide"             "close"            "fitting"         
## [31321] "grey"             "brown"            "limbs"           
## [31324] "long"             "hands"            "many"            
## [31327] "fingers"          "hair"             "stiff"           
## [31330] "beards"           "grey"             "green"           
## [31333] "moss"             "gazed"            "solemn"          
## [31336] "eyes"             "looking"          "riders"          
## [31339] "eyes"             "bent"             "northwards"      
## [31342] "suddenly"         "lifted"           "long"            
## [31345] "hands"            "mouths"           "sent"            
## [31348] "forth"            "ringing"          "calls"           
## [31351] "clear"            "notes"            "horn"            
## [31354] "musical"          "various"          "calls"           
## [31357] "answered"         "turning"          "riders"          
## [31360] "saw"              "creatures"        "kind"            
## [31363] "approaching"      "striding"         "grass"           
## [31366] "came"             "swiftly"          "north"           
## [31369] "walking"          "like"             "wading"          
## [31372] "herons"           "gait"             "speed"           
## [31375] "legs"             "long"             "paces"           
## [31378] "beat"             "quicker"          "herons"          
## [31381] "wings"            "riders"           "cried"           
## [31384] "aloud"            "wonder"           "set"             
## [31387] "hands"            "upon"             "sword"           
## [31390] "hilts"            "need"             "weapons"         
## [31393] "said"             "gandalf"          "herdsmen"        
## [31396] "enemies"          "indeed"           "concerned"       
## [31399] "us"               "seemed"           "spoke"           
## [31402] "tall"             "creatures"        "without"         
## [31405] "glance"           "riders"           "strode"          
## [31408] "wood"             "vanished"         "herdsmen"        
## [31411] "said"             "théoden"          "flocks"          
## [31414] "gandalf"          "plain"            "rate"            
## [31417] "strange"          "shepherds"        "trees"           
## [31420] "answered"         "gandalf"          "long"            
## [31423] "since"            "listened"         "tales"           
## [31426] "fireside"         "children"         "land"            
## [31429] "twisted"          "threads"          "story"           
## [31432] "pick"             "answer"           "question"        
## [31435] "seen"             "ents"             "king"            
## [31438] "ents"             "fangorn"          "forest"          
## [31441] "tongue"           "call"             "entwood"         
## [31444] "think"            "name"             "given"           
## [31447] "idle"             "fancy"            "nay"             
## [31450] "théoden"          "otherwise"        "passing"         
## [31453] "tale"             "years"            "eorl"            
## [31456] "young"            "théoden"          "old"             
## [31459] "little"           "count"            "deeds"           
## [31462] "house"            "small"            "matter"          
## [31465] "king"             "silent"           "ents"            
## [31468] "said"             "length"           "shadows"         
## [31471] "legend"           "begin"            "little"          
## [31474] "understand"       "marvel"           "trees"           
## [31477] "think"            "lived"            "see"             
## [31480] "strange"          "days"             "long"            
## [31483] "tended"           "beasts"           "fields"          
## [31486] "built"            "houses"           "wrought"         
## [31489] "tools"            "ridden"           "away"            
## [31492] "help"             "wars"             "minas"           
## [31495] "tirith"           "called"           "life"            
## [31498] "men"              "way"              "world"           
## [31501] "cared"            "little"           "lay"             
## [31504] "beyond"           "borders"          "land"            
## [31507] "songs"            "tell"             "things"          
## [31510] "forgetting"       "teaching"         "children"        
## [31513] "careless"         "custom"           "now"             
## [31516] "songs"            "come"             "among"           
## [31519] "us"               "strange"          "places"          
## [31522] "walk"             "visible"          "sun"             
## [31525] "glad"             "théoden"          "king"            
## [31528] "said"             "gandalf"          "little"          
## [31531] "life"             "men"              "now"             
## [31534] "endangered"       "life"             "also"            
## [31537] "things"           "deemed"           "matter"          
## [31540] "legend"           "without"          "allies"          
## [31543] "even"             "know"             "yet"             
## [31546] "also"             "sad"              "said"            
## [31549] "théoden"          "however"          "fortune"         
## [31552] "war"              "shall"            "go"              
## [31555] "may"              "end"              "much"            
## [31558] "fair"             "wonderful"        "shall"           
## [31561] "pass"             "ever"             "middle"          
## [31564] "earth"            "may"              "said"            
## [31567] "gandalf"          "evil"             "sauron"          
## [31570] "wholly"           "cured"            "made"            
## [31573] "days"             "doomed"           "let"             
## [31576] "us"               "now"              "go"              
## [31579] "journey"          "begun"            "company"         
## [31582] "turned"           "away"             "coomb"           
## [31585] "wood"             "took"             "road"            
## [31588] "towards"          "fords"            "legolas"         
## [31591] "followed"         "reluctantly"      "sun"             
## [31594] "set"              "already"          "sunk"            
## [31597] "behind"           "rim"              "world"           
## [31600] "rode"             "shadow"           "hills"           
## [31603] "looked"           "west"             "gap"             
## [31606] "rohan"            "sky"              "still"           
## [31609] "red"              "burning"          "light"           
## [31612] "floating"         "clouds"           "dark"            
## [31615] "wheeled"          "flew"             "many"            
## [31618] "black"            "winged"           "birds"           
## [31621] "passed"           "overhead"         "mournful"        
## [31624] "cries"            "returning"        "homes"           
## [31627] "among"            "rocks"            "carrion"         
## [31630] "fowl"             "busy"             "battle"          
## [31633] "field"            "said"             "éomer"           
## [31636] "rode"             "now"              "easy"            
## [31639] "pace"             "dark"             "came"            
## [31642] "upon"             "plains"           "slow"            
## [31645] "moon"             "mounted"          "now"             
## [31648] "waxing"           "towards"          "full"            
## [31651] "cold"             "silver"           "light"           
## [31654] "swelling"         "grass"            "lands"           
## [31657] "rose"             "fell"             "like"            
## [31660] "wide"             "grey"             "sea"             
## [31663] "ridden"           "four"             "hours"           
## [31666] "branching"        "roads"            "drew"            
## [31669] "near"             "fords"            "long"            
## [31672] "slopes"           "ran"              "swiftly"         
## [31675] "river"            "spread"           "stony"           
## [31678] "shoals"           "high"             "grassy"          
## [31681] "terraces"         "borne"            "upon"            
## [31684] "wind"             "heard"            "howling"         
## [31687] "wolves"           "hearts"           "heavy"           
## [31690] "remembering"      "many"             "men"             
## [31693] "fallen"           "battle"           "place"           
## [31696] "road"             "dipped"           "rising"          
## [31699] "turf"             "banks"            "carving"         
## [31702] "way"              "terraces"         "rivers"          
## [31705] "edge"             "upon"             "side"            
## [31708] "three"            "lines"            "flat"            
## [31711] "stepping"         "stones"           "across"          
## [31714] "stream"           "fords"            "horses"          
## [31717] "went"             "either"           "brink"           
## [31720] "bare"             "eyot"             "midst"           
## [31723] "riders"           "looked"           "upon"            
## [31726] "crossings"        "seemed"           "strange"         
## [31729] "fords"            "ever"             "place"           
## [31732] "full"             "rush"             "chatter"         
## [31735] "water"            "upon"             "stones"          
## [31738] "now"              "silent"           "beds"            
## [31741] "stream"           "almost"           "dry"             
## [31744] "bare"             "waste"            "shingles"        
## [31747] "grey"             "sand"             "become"          
## [31750] "dreary"           "place"            "said"            
## [31753] "éomer"            "sickness"         "befallen"        
## [31756] "river"            "many"             "fair"            
## [31759] "things"           "saruman"          "destroyed"       
## [31762] "devoured"         "springs"          "isen"            
## [31765] "seem"             "said"             "gandalf"         
## [31768] "alas"             "said"             "théoden"         
## [31771] "must"             "pass"             "way"             
## [31774] "carrion"          "beasts"           "devour"          
## [31777] "many"             "good"             "riders"          
## [31780] "mark"             "way"              "said"            
## [31783] "gandalf"          "grievous"         "fall"            
## [31786] "men"              "shall"            "see"             
## [31789] "least"            "wolves"           "mountains"       
## [31792] "devour"           "friends"          "orcs"            
## [31795] "hold"             "feast"            "indeed"          
## [31798] "friendship"       "kind"             "come"            
## [31801] "rode"             "river"            "came"            
## [31804] "wolves"           "ceased"           "howling"         
## [31807] "slunk"            "away"             "fear"            
## [31810] "fell"             "seeing"           "gandalf"         
## [31813] "moon"             "shadowfax"        "horse"           
## [31816] "shining"          "like"             "silver"          
## [31819] "riders"           "passed"           "islet"           
## [31822] "glittering"       "eyes"             "watched"         
## [31825] "wanly"            "shadows"          "banks"           
## [31828] "look"             "said"             "gandalf"         
## [31831] "friends"          "laboured"         "saw"             
## [31834] "midst"            "eyot"             "mound"           
## [31837] "piled"            "ringed"           "stones"          
## [31840] "set"              "many"             "spears"          
## [31843] "lie"              "men"              "mark"            
## [31846] "fell"             "near"             "place"           
## [31849] "said"             "gandalf"          "let"             
## [31852] "rest"             "said"             "éomer"           
## [31855] "spears"           "rotted"           "rusted"          
## [31858] "long"             "still"            "may"             
## [31861] "mound"            "stand"            "guard"           
## [31864] "fords"            "isen"             "work"            
## [31867] "also"             "gandalf"          "friend"          
## [31870] "said"             "théoden"          "accomplished"    
## [31873] "much"             "evening"          "night"           
## [31876] "help"             "shadowfax"        "others"          
## [31879] "said"             "gandalf"          "rode"            
## [31882] "fast"             "far"              "beside"          
## [31885] "mound"            "say"              "comfort"         
## [31888] "many"             "fell"             "battles"         
## [31891] "fords"            "fewer"            "rumour"          
## [31894] "made"             "scattered"        "slain"           
## [31897] "gathered"         "together"         "find"            
## [31900] "men"              "sent"             "grimbold"        
## [31903] "westfold"         "join"             "erkenbrand"      
## [31906] "set"              "make"             "burial"          
## [31909] "now"              "followed"         "marshal"         
## [31912] "elfhelm"          "sent"             "many"            
## [31915] "riders"           "edoras"           "saruman"         
## [31918] "knew"             "despatched"       "full"            
## [31921] "strength"         "servants"         "turned"          
## [31924] "aside"            "errands"          "gone"            
## [31927] "helms"            "deep"             "lands"           
## [31930] "seemed"           "empty"            "enemies"         
## [31933] "yet"              "feared"           "wolf"            
## [31936] "riders"           "plunderers"       "might"           
## [31939] "ride"             "nonetheless"      "meduseld"        
## [31942] "undefended"       "now"              "think"           
## [31945] "need"             "fear"             "find"            
## [31948] "house"            "welcome"          "return"          
## [31951] "glad"             "shall"            "see"             
## [31954] "said"             "théoden"          "though"          
## [31957] "brief"            "now"              "doubt"           
## [31960] "shall"            "abiding"          "company"         
## [31963] "said"             "farewell"         "island"          
## [31966] "mound"            "passed"           "river"           
## [31969] "climbed"          "bank"             "rode"            
## [31972] "glad"             "left"             "mournful"        
## [31975] "fords"            "went"             "howling"         
## [31978] "wolves"           "broke"            "anew"            
## [31981] "ancient"          "highway"          "ran"             
## [31984] "isengard"         "crossings"        "way"             
## [31987] "took"             "course"           "beside"          
## [31990] "river"            "bending"          "east"            
## [31993] "north"            "last"             "turned"          
## [31996] "away"             "went"             "straight"        
## [31999] "towards"          "gates"            "isengard"        
## [32002] "mountain"         "side"             "west"            
## [32005] "valley"           "sixteen"          "miles"           
## [32008] "mouth"            "road"             "followed"        
## [32011] "ride"             "upon"             "ground"          
## [32014] "beside"           "firm"             "level"           
## [32017] "covered"          "many"             "miles"           
## [32020] "short"            "springing"        "turf"            
## [32023] "rode"             "now"              "swiftly"         
## [32026] "midnight"         "fords"            "nearly"          
## [32029] "five"             "leagues"          "behind"          
## [32032] "halted"           "ending"           "nights"          
## [32035] "journey"          "king"             "weary"           
## [32038] "come"             "feet"             "misty"           
## [32041] "mountains"        "long"             "arms"            
## [32044] "nan"              "curunír"          "stretched"       
## [32047] "meet"             "dark"             "lay"             
## [32050] "vale"             "moon"             "passed"          
## [32053] "west"             "light"            "hidden"          
## [32056] "hills"            "deep"             "shadow"          
## [32059] "dale"             "rose"             "vast"            
## [32062] "spire"            "smoke"            "vapour"          
## [32065] "mounted"          "caught"           "rays"            
## [32068] "sinking"          "moon"             "spread"          
## [32071] "shimmering"       "billows"          "black"           
## [32074] "silver"           "starry"           "sky"             
## [32077] "think"            "gandalf"          "asked"           
## [32080] "aragorn"          "one"              "say"             
## [32083] "wizards"          "vale"             "burning"         
## [32086] "ever"             "fume"             "valley"          
## [32089] "days"             "said"             "éomer"           
## [32092] "never"            "seen"             "aught"           
## [32095] "like"             "steams"           "rather"          
## [32098] "smokes"           "saruman"          "brewing"         
## [32101] "devilry"          "greet"            "us"              
## [32104] "maybe"            "boiling"          "waters"          
## [32107] "isen"             "river"            "runs"            
## [32110] "dry"              "maybe"            "said"            
## [32113] "gandalf"          "tomorrow"         "shall"           
## [32116] "learn"            "now"              "let"             
## [32119] "us"               "rest"             "can"             
## [32122] "camped"           "beside"           "bed"             
## [32125] "isen"             "river"            "still"           
## [32128] "silent"           "empty"            "slept"           
## [32131] "little"           "late"             "night"           
## [32134] "watchmen"         "cried"            "awoke"           
## [32137] "moon"             "gone"             "stars"           
## [32140] "shining"          "ground"           "crept"           
## [32143] "darkness"         "blacker"          "night"           
## [32146] "sides"            "river"            "rolled"          
## [32149] "towards"          "going"            "northward"       
## [32152] "stay"             "said"             "gandalf"         
## [32155] "draw"             "weapons"          "wait"            
## [32158] "pass"             "mist"             "gathered"        
## [32161] "stars"            "still"            "glimmered"       
## [32164] "faintly"          "either"           "side"            
## [32167] "arose"            "walls"            "impenetrable"    
## [32170] "gloom"            "narrow"           "lane"            
## [32173] "moving"           "towers"           "shadow"          
## [32176] "voices"           "heard"            "whisperings"     
## [32179] "groanings"        "endless"          "rustling"        
## [32182] "sigh"             "earth"            "shook"           
## [32185] "long"             "seemed"           "sat"             
## [32188] "afraid"           "last"             "darkness"        
## [32191] "rumour"           "passed"           "vanished"        
## [32194] "mountains"        "arms"             "away"            
## [32197] "south"            "upon"             "hornburg"        
## [32200] "middle"           "night"            "men"             
## [32203] "heard"            "great"            "noise"           
## [32206] "wind"             "valley"           "ground"          
## [32209] "trembled"         "afraid"           "one"             
## [32212] "ventured"         "go"               "forth"           
## [32215] "morning"          "went"             "amazed"          
## [32218] "slain"            "orcs"             "gone"            
## [32221] "trees"            "also"             "far"             
## [32224] "valley"           "deep"             "grass"           
## [32227] "crushed"          "trampled"         "brown"           
## [32230] "giant"            "herdsmen"         "pastured"        
## [32233] "great"            "droves"           "cattle"          
## [32236] "mile"             "dike"             "huge"            
## [32239] "pit"              "delved"           "earth"           
## [32242] "stones"           "piled"            "hill"            
## [32245] "men"              "believed"         "orcs"            
## [32248] "slain"            "buried"           "whether"         
## [32251] "fled"             "wood"             "none"            
## [32254] "say"              "man"              "ever"            
## [32257] "set"              "foot"             "upon"            
## [32260] "hill"             "death"            "afterwards"      
## [32263] "called"           "grass"            "grow"            
## [32266] "strange"          "trees"            "never"           
## [32269] "seen"             "deeping"          "coomb"           
## [32272] "returned"         "night"            "gone"            
## [32275] "far"              "away"             "dark"            
## [32278] "dales"            "fangorn"          "thus"            
## [32281] "revenged"         "upon"             "orcs"            
## [32284] "king"             "company"          "slept"           
## [32287] "night"            "saw"              "heard"           
## [32290] "strange"          "thing"            "save"            
## [32293] "one"              "voice"            "river"           
## [32296] "beside"           "suddenly"         "awoke"           
## [32299] "rush"             "water"            "hurrying"        
## [32302] "among"            "stones"           "passed"          
## [32305] "isen"             "flowed"           "bubbled"         
## [32308] "bed"              "ever"             "done"            
## [32311] "dawn"             "made"             "ready"           
## [32314] "go"               "light"            "came"            
## [32317] "grey"             "pale"             "see"             
## [32320] "rising"           "sun"              "air"             
## [32323] "heavy"            "fog"              "reek"            
## [32326] "lay"              "land"             "went"            
## [32329] "slowly"           "riding"           "now"             
## [32332] "upon"             "highway"          "broad"           
## [32335] "hard"             "well"             "tended"          
## [32338] "dimly"            "mists"            "descry"          
## [32341] "long"             "arm"              "mountains"       
## [32344] "rising"           "left"             "passed"          
## [32347] "nan"              "curunír"          "wizards"         
## [32350] "vale"             "sheltered"        "valley"          
## [32353] "open"             "south"            "fair"            
## [32356] "green"            "isen"             "flowed"          
## [32359] "already"          "deep"             "strong"          
## [32362] "found"            "plains"           "fed"             
## [32365] "many"             "springs"          "lesser"          
## [32368] "streams"          "among"            "rain"            
## [32371] "washed"           "hills"            "lain"            
## [32374] "pleasant"         "fertile"          "land"            
## [32377] "now"              "beneath"          "walls"           
## [32380] "isengard"         "still"            "acres"           
## [32383] "tilled"           "slaves"           "saruman"         
## [32386] "valley"           "become"           "wilderness"      
## [32389] "weeds"            "thorns"           "brambles"        
## [32392] "trailed"          "upon"             "ground"          
## [32395] "clambering"       "bush"             "bank"            
## [32398] "made"             "shaggy"           "caves"           
## [32401] "small"            "beasts"           "housed"          
## [32404] "trees"            "grew"             "among"           
## [32407] "rank"             "grasses"          "still"           
## [32410] "seen"             "burned"           "axe"             
## [32413] "hewn"             "stumps"           "ancient"         
## [32416] "groves"           "sad"              "country"         
## [32419] "silent"           "now"              "stony"           
## [32422] "noise"            "quick"            "waters"          
## [32425] "smokes"           "steams"           "drifted"         
## [32428] "sullen"           "clouds"           "lurked"          
## [32431] "hollows"          "riders"           "speak"           
## [32434] "many"             "doubted"          "hearts"          
## [32437] "wondering"        "dismal"           "end"             
## [32440] "journey"          "led"              "ridden"          
## [32443] "miles"            "highway"          "became"          
## [32446] "wide"             "street"           "paved"           
## [32449] "great"            "flat"             "stones"          
## [32452] "squared"          "laid"             "skill"           
## [32455] "blade"            "grass"            "seen"            
## [32458] "joint"            "deep"             "gutters"         
## [32461] "filled"           "trickling"        "water"           
## [32464] "ran"              "either"           "side"            
## [32467] "suddenly"         "tall"             "pillar"          
## [32470] "loomed"           "black"            "set"             
## [32473] "upon"             "great"            "stone"           
## [32476] "carved"           "painted"          "likeness"        
## [32479] "long"             "white"            "hand"            
## [32482] "finger"           "pointed"          "north"           
## [32485] "far"              "now"              "knew"            
## [32488] "gates"            "isengard"         "must"            
## [32491] "stand"            "hearts"           "heavy"           
## [32494] "eyes"             "pierce"           "mists"           
## [32497] "ahead"            "beneath"          "mountains"       
## [32500] "arm"              "within"           "wizards"         
## [32503] "vale"             "years"            "uncounted"       
## [32506] "stood"            "ancient"          "place"           
## [32509] "men"              "called"           "isengard"        
## [32512] "partly"           "shaped"           "making"          
## [32515] "mountains"        "mighty"           "works"           
## [32518] "men"              "westernesse"      "wrought"         
## [32521] "old"              "saruman"          "dwelt"           
## [32524] "long"             "idle"             "fashion"         
## [32527] "saruman"          "height"           "accounted"       
## [32530] "many"             "chief"            "wizards"         
## [32533] "great"            "ring"             "wall"            
## [32536] "stone"            "like"             "towering"        
## [32539] "cliffs"           "stood"            "shelter"         
## [32542] "mountain"         "side"             "ran"             
## [32545] "returned"         "one"              "entrance"        
## [32548] "made"             "great"            "arch"            
## [32551] "delved"           "southern"         "wall"            
## [32554] "black"            "rock"             "long"            
## [32557] "tunnel"           "hewn"             "closed"          
## [32560] "either"           "end"              "mighty"          
## [32563] "doors"            "iron"             "wrought"         
## [32566] "poised"           "upon"             "huge"            
## [32569] "hinges"           "posts"            "steel"           
## [32572] "driven"           "living"           "stone"           
## [32575] "unbarred"         "moved"            "light"           
## [32578] "thrust"           "arms"             "noiselessly"     
## [32581] "one"              "passed"           "came"            
## [32584] "length"           "echoing"          "tunnel"          
## [32587] "beheld"           "plain"            "great"           
## [32590] "circle"           "somewhat"         "hollowed"        
## [32593] "like"             "vast"             "shallow"         
## [32596] "bowl"             "mile"             "measured"        
## [32599] "rim"              "rim"              "green"           
## [32602] "filled"           "avenues"          "groves"          
## [32605] "fruitful"         "trees"            "watered"         
## [32608] "streams"          "flowed"           "mountains"       
## [32611] "lake"             "green"            "thing"           
## [32614] "grew"             "latter"           "days"            
## [32617] "saruman"          "roads"            "paved"           
## [32620] "stone"            "flags"            "dark"            
## [32623] "hard"             "beside"           "borders"         
## [32626] "instead"          "trees"            "marched"         
## [32629] "long"             "lines"            "pillars"         
## [32632] "marble"           "copper"           "iron"            
## [32635] "joined"           "heavy"            "chains"          
## [32638] "many"             "houses"           "chambers"        
## [32641] "halls"            "passages"         "cut"             
## [32644] "tunnelled"        "back"             "walls"           
## [32647] "upon"             "inner"            "side"            
## [32650] "open"             "circle"           "overlooked"      
## [32653] "countless"        "windows"          "dark"            
## [32656] "doors"            "thousands"        "dwell"           
## [32659] "workers"          "servants"         "slaves"          
## [32662] "warriors"         "great"            "store"           
## [32665] "arms"             "wolves"           "fed"             
## [32668] "stabled"          "deep"             "dens"            
## [32671] "beneath"          "plain"            "bored"           
## [32674] "delved"           "shafts"           "driven"          
## [32677] "deep"             "ground"           "upper"           
## [32680] "ends"             "covered"          "low"             
## [32683] "mounds"           "domes"            "stone"           
## [32686] "moonlight"        "ring"             "isengard"        
## [32689] "looked"           "like"             "graveyard"       
## [32692] "unquiet"          "dead"             "ground"          
## [32695] "trembled"         "shafts"           "ran"             
## [32698] "many"             "slopes"           "spiral"          
## [32701] "stairs"           "caverns"          "far"             
## [32704] "saruman"          "treasuries"       "store"           
## [32707] "houses"           "armouries"        "smithies"        
## [32710] "great"            "furnaces"         "iron"            
## [32713] "wheels"           "revolved"         "endlessly"       
## [32716] "hammers"          "thudded"          "night"           
## [32719] "plumes"           "vapour"           "steamed"         
## [32722] "vents"            "lit"              "beneath"         
## [32725] "red"              "light"            "blue"            
## [32728] "venomous"         "green"            "centre"          
## [32731] "roads"            "ran"              "chains"          
## [32734] "stood"            "tower"            "marvellous"      
## [32737] "shape"            "fashioned"        "builders"        
## [32740] "old"              "smoothed"         "ring"            
## [32743] "isengard"         "yet"              "seemed"          
## [32746] "thing"            "made"             "craft"           
## [32749] "men"              "riven"            "bones"           
## [32752] "earth"            "ancient"          "torment"         
## [32755] "hills"            "peak"             "isle"            
## [32758] "rock"             "black"            "gleaming"        
## [32761] "hard"             "four"             "mighty"          
## [32764] "piers"            "many"             "sided"           
## [32767] "stone"            "welded"           "one"             
## [32770] "near"             "summit"           "opened"          
## [32773] "gaping"           "horns"            "pinnacles"       
## [32776] "sharp"            "points"           "spears"          
## [32779] "keen"             "edged"            "knives"          
## [32782] "narrow"           "space"            "upon"            
## [32785] "floor"            "polished"         "stone"           
## [32788] "written"          "strange"          "signs"           
## [32791] "man"              "might"            "stand"           
## [32794] "five"             "hundred"          "feet"            
## [32797] "plain"            "orthanc"          "citadel"         
## [32800] "saruman"          "name"             "design"          
## [32803] "chance"           "twofold"          "meaning"         
## [32806] "elvish"           "speech"           "orthanc"         
## [32809] "signifies"        "mount"            "fang"            
## [32812] "language"         "mark"             "old"             
## [32815] "cunning"          "mind"             "strong"          
## [32818] "place"            "wonderful"        "isengard"        
## [32821] "long"             "beautiful"        "great"           
## [32824] "lords"            "dwelt"            "wardens"         
## [32827] "gondor"           "upon"             "west"            
## [32830] "wise"             "men"              "watched"         
## [32833] "stars"            "saruman"          "slowly"          
## [32836] "shaped"           "shifting"         "purposes"        
## [32839] "made"             "better"           "thought"         
## [32842] "deceived"         "arts"             "subtle"          
## [32845] "devices"          "forsook"          "former"          
## [32848] "wisdom"           "fondly"           "imagined"        
## [32851] "came"             "mordor"           "made"            
## [32854] "naught"           "little"           "copy"            
## [32857] "childs"           "model"            "slaves"          
## [32860] "flattery"         "vast"             "fortress"        
## [32863] "armoury"          "prison"           "furnace"         
## [32866] "great"            "power"            "barad"           
## [32869] "dûr"              "dark"             "tower"           
## [32872] "suffered"         "rival"            "laughed"         
## [32875] "flattery"         "biding"           "time"            
## [32878] "secure"           "pride"            "immeasurable"    
## [32881] "strength"         "stronghold"       "saruman"         
## [32884] "fame"             "reported"         "within"          
## [32887] "living"           "memory"           "men"             
## [32890] "rohan"            "passed"           "gates"           
## [32893] "save"             "perhaps"          "wormtongue"      
## [32896] "came"             "secret"           "told"            
## [32899] "man"              "saw"              "now"             
## [32902] "gandalf"          "rode"             "great"           
## [32905] "pillar"           "hand"             "passed"          
## [32908] "riders"           "saw"              "wonder"          
## [32911] "hand"             "appeared"         "longer"          
## [32914] "white"            "stained"          "dried"           
## [32917] "blood"            "looking"          "closer"          
## [32920] "perceived"        "nails"            "red"             
## [32923] "unheeding"        "gandalf"          "rode"            
## [32926] "mist"             "reluctantly"      "followed"        
## [32929] "now"              "sudden"           "flood"           
## [32932] "wide"             "pools"            "water"           
## [32935] "lay"              "beside"           "road"            
## [32938] "filling"          "hollows"          "rills"           
## [32941] "went"             "trickling"        "among"           
## [32944] "stones"           "last"             "gandalf"         
## [32947] "halted"           "beckoned"         "came"            
## [32950] "saw"              "beyond"           "mists"           
## [32953] "cleared"          "pale"             "sunlight"        
## [32956] "shone"            "hour"             "noon"            
## [32959] "passed"           "come"             "doors"           
## [32962] "isengard"         "doors"            "lay"             
## [32965] "hurled"           "twisted"          "ground"          
## [32968] "stone"            "cracked"          "splintered"      
## [32971] "countless"        "jagged"           "shards"          
## [32974] "scattered"        "far"              "wide"            
## [32977] "piled"            "ruinous"          "heaps"           
## [32980] "great"            "arch"             "still"           
## [32983] "stood"            "opened"           "now"             
## [32986] "upon"             "roofless"         "chasm"           
## [32989] "tunnel"           "laid"             "bare"            
## [32992] "cliff"            "like"             "walls"           
## [32995] "either"           "side"             "great"           
## [32998] "rents"            "breaches"         "torn"            
## [33001] "towers"           "beaten"           "dust"            
## [33004] "great"            "sea"              "risen"           
## [33007] "wrath"            "fallen"           "hills"           
## [33010] "storm"            "worked"           "greater"         
## [33013] "ruin"             "ring"             "beyond"          
## [33016] "filled"           "steaming"         "water"           
## [33019] "bubbling"         "cauldron"         "heaved"          
## [33022] "floated"          "wreckage"         "beams"           
## [33025] "spars"            "chests"           "casks"           
## [33028] "broken"           "gear"             "twisted"         
## [33031] "leaning"          "pillars"          "reared"          
## [33034] "splintered"       "stems"            "flood"           
## [33037] "roads"            "drowned"          "far"             
## [33040] "seemed"           "half"             "veiled"          
## [33043] "winding"          "cloud"            "loomed"          
## [33046] "island"           "rock"             "still"           
## [33049] "dark"             "tall"             "unbroken"        
## [33052] "storm"            "tower"            "orthanc"         
## [33055] "stood"            "pale"             "waters"          
## [33058] "lapped"           "feet"             "king"            
## [33061] "company"          "sat"              "silent"          
## [33064] "horses"           "marvelling"       "perceiving"      
## [33067] "power"            "saruman"          "overthrown"      
## [33070] "guess"            "now"              "turned"          
## [33073] "eyes"             "towards"          "archway"         
## [33076] "ruined"           "gates"            "saw"             
## [33079] "close"            "beside"           "great"           
## [33082] "rubble"           "heap"             "suddenly"        
## [33085] "aware"            "two"              "small"           
## [33088] "figures"          "lying"            "ease"            
## [33091] "grey"             "clad"             "hardly"          
## [33094] "seen"             "among"            "stones"          
## [33097] "bottles"          "bowls"            "platters"        
## [33100] "laid"             "beside"           "just"            
## [33103] "eaten"            "well"             "now"             
## [33106] "rested"           "labour"           "one"             
## [33109] "seemed"           "asleep"           "crossed"         
## [33112] "legs"             "arms"             "behind"          
## [33115] "head"             "leaned"           "back"            
## [33118] "broken"           "rock"             "sent"            
## [33121] "mouth"            "long"             "wisps"           
## [33124] "little"           "rings"            "thin"            
## [33127] "blue"             "smoke"            "moment"          
## [33130] "théoden"          "éomer"            "men"             
## [33133] "stared"           "wonder"           "amid"            
## [33136] "wreck"            "isengard"         "seemed"          
## [33139] "strangest"        "sight"            "king"            
## [33142] "speak"            "small"            "smoke"           
## [33145] "breathing"        "figure"           "became"          
## [33148] "suddenly"         "aware"            "sat"             
## [33151] "silent"           "edge"             "mist"            
## [33154] "sprang"           "feet"             "young"           
## [33157] "man"              "looked"           "like"            
## [33160] "one"              "though"           "much"            
## [33163] "half"             "man"              "height"          
## [33166] "head"             "brown"            "curling"         
## [33169] "hair"             "uncovered"        "clad"            
## [33172] "travel"           "stained"          "cloak"           
## [33175] "hue"              "shape"            "companions"      
## [33178] "gandalf"          "worn"             "rode"            
## [33181] "edoras"           "bowed"            "low"             
## [33184] "putting"          "hand"             "upon"            
## [33187] "breast"           "seeming"          "observe"         
## [33190] "wizard"           "friends"          "turned"          
## [33193] "éomer"            "king"             "welcome"         
## [33196] "lords"            "isengard"         "said"            
## [33199] "doorwardens"      "meriadoc"         "son"             
## [33202] "saradoc"          "name"             "companion"       
## [33205] "alas"             "overcome"         "weariness"       
## [33208] "gave"             "dig"              "foot"            
## [33211] "peregrin"         "son"              "paladin"         
## [33214] "house"            "took"             "far"             
## [33217] "north"            "home"             "lord"            
## [33220] "saruman"          "within"           "moment"          
## [33223] "closeted"         "one"              "wormtongue"      
## [33226] "doubtless"        "welcome"          "honourable"      
## [33229] "guests"           "doubtless"        "laughed"         
## [33232] "gandalf"          "saruman"          "ordered"         
## [33235] "guard"            "damaged"          "doors"           
## [33238] "watch"            "arrival"          "guests"          
## [33241] "attention"        "spared"           "plate"           
## [33244] "bottle"           "good"             "sir"             
## [33247] "matter"           "escaped"          "answered"        
## [33250] "merry"            "gravely"          "much"            
## [33253] "occupied"         "orders"           "came"            
## [33256] "treebeard"        "taken"            "management"      
## [33259] "isengard"         "commanded"        "welcome"         
## [33262] "lord"             "rohan"            "fitting"         
## [33265] "words"            "done"             "best"            
## [33268] "companions"       "legolas"          "cried"           
## [33271] "gimli"            "unable"           "contain"         
## [33274] "longer"           "rascals"          "woolly"          
## [33277] "footed"           "wool"             "pated"           
## [33280] "truants"          "fine"             "hunt"            
## [33283] "led"              "us"               "two"             
## [33286] "hundred"          "leagues"          "fen"             
## [33289] "forest"           "battle"           "death"           
## [33292] "rescue"           "find"             "feasting"        
## [33295] "idling"           "smoking"          "smoking"         
## [33298] "come"             "weed"             "villains"        
## [33301] "hammer"           "tongs"            "torn"            
## [33304] "rage"             "joy"              "burst"           
## [33307] "marvel"           "speak"            "gimli"           
## [33310] "laughed"          "legolas"          "though"          
## [33313] "sooner"           "learn"            "came"            
## [33316] "wine"             "one"              "thing"           
## [33319] "found"            "hunting"          "thats"           
## [33322] "brighter"         "wits"             "said"            
## [33325] "pippin"           "opening"          "eye"             
## [33328] "find"             "us"               "sitting"         
## [33331] "field"            "victory"          "amid"            
## [33334] "plunder"          "armies"           "wonder"          
## [33337] "came"             "well"             "earned"          
## [33340] "comforts"         "well"             "earned"          
## [33343] "said"             "gimli"            "believe"         
## [33346] "riders"           "laughed"          "doubted"         
## [33349] "witness"          "meeting"          "dear"            
## [33352] "friends"          "said"             "théoden"         
## [33355] "lost"             "ones"             "company"         
## [33358] "gandalf"          "days"             "fated"           
## [33361] "filled"           "marvels"          "already"         
## [33364] "seen"             "many"             "since"           
## [33367] "left"             "house"            "now"             
## [33370] "eyes"             "stand"            "yet"             
## [33373] "another"          "folk"             "legend"          
## [33376] "halflings"        "among"            "us"              
## [33379] "call"             "holbytlan"        "hobbits"         
## [33382] "please"           "lord"             "said"            
## [33385] "pippin"           "hobbits"          "said"            
## [33388] "théoden"          "tongue"           "strangely"       
## [33391] "changed"          "name"             "sounds"          
## [33394] "unfitting"        "hobbits"          "report"          
## [33397] "heard"            "justice"          "truth"           
## [33400] "merry"            "bowed"            "pippin"          
## [33403] "got"              "bowed"            "low"             
## [33406] "gracious"         "lord"             "hope"            
## [33409] "may"              "take"             "words"           
## [33412] "said"             "another"          "marvel"          
## [33415] "wandered"         "many"             "lands"           
## [33418] "since"            "left"             "home"            
## [33421] "never"            "till"             "now"             
## [33424] "found"            "people"           "knew"            
## [33427] "story"            "concerning"       "hobbits"         
## [33430] "people"           "came"             "north"           
## [33433] "long"             "ago"              "said"            
## [33436] "théoden"          "deceive"          "know"            
## [33439] "tales"            "hobbits"          "said"            
## [33442] "among"            "us"               "far"             
## [33445] "away"             "many"             "hills"           
## [33448] "rivers"           "live"             "halfling"        
## [33451] "folk"             "dwell"            "holes"           
## [33454] "sand"             "dunes"            "legends"         
## [33457] "deeds"            "said"             "little"          
## [33460] "avoid"            "sight"            "men"             
## [33463] "able"             "vanish"           "twinkling"       
## [33466] "can"              "change"           "voices"          
## [33469] "resemble"         "piping"           "birds"           
## [33472] "seems"            "said"             "indeed"          
## [33475] "lord"             "said"             "merry"           
## [33478] "one"              "thing"            "said"            
## [33481] "théoden"          "heard"            "spouted"         
## [33484] "smoke"            "mouths"           "surprising"      
## [33487] "answered"         "merry"            "art"             
## [33490] "practised"        "generations"      "tobold"          
## [33493] "hornblower"       "longbottom"       "southfarthing"   
## [33496] "first"            "grew"             "true"            
## [33499] "pipe"             "weed"             "gardens"         
## [33502] "year"             "according"        "reckoning"       
## [33505] "old"              "toby"             "came"            
## [33508] "plant"            ""                 "know"            
## [33511] "danger"           "théoden"          "interrupted"     
## [33514] "gandalf"          "hobbits"          "sit"             
## [33517] "edge"             "ruin"             "discuss"         
## [33520] "pleasures"        "table"            "small"           
## [33523] "doings"           "fathers"          "grandfathers"    
## [33526] "great"            "grandfathers"     "remoter"         
## [33529] "cousins"          "ninth"            "degree"          
## [33532] "encourage"        "undue"            "patience"        
## [33535] "time"             "fitting"          "history"         
## [33538] "smoking"          "treebeard"        "merry"           
## [33541] "away"             "north"            "side"            
## [33544] "believe"          "went"             "get"             
## [33547] "drink"            "clean"            "water"           
## [33550] "ents"             "still"            "busy"            
## [33553] "work"             "merry"            "waved"           
## [33556] "hand"             "towards"          "steaming"        
## [33559] "lake"             "looked"           "heard"           
## [33562] "distant"          "rumbling"         "rattling"        
## [33565] "avalanche"        "falling"          "mountain"        
## [33568] "side"             "far"              "away"            
## [33571] "came"             "hoom"             "hom"             
## [33574] "horns"            "blowing"          "triumphantly"    
## [33577] "orthanc"          "left"             "unguarded"       
## [33580] "asked"            "gandalf"          "water"           
## [33583] "said"             "merry"            "quickbeam"       
## [33586] "others"           "watching"         "posts"           
## [33589] "pillars"          "plain"            "sarumans"        
## [33592] "planting"         "quickbeam"        "think"           
## [33595] "rock"             "near"             "foot"            
## [33598] "stair"            "yes"              "tall"            
## [33601] "grey"             "ent"              "said"            
## [33604] "legolas"          "arms"             "sides"           
## [33607] "stands"           "still"            "door"            
## [33610] "tree"             "past"             "noon"            
## [33613] "said"             "gandalf"          "rate"            
## [33616] "eaten"            "since"            "early"           
## [33619] "morning"          "yet"              "wish"            
## [33622] "see"              "treebeard"        "soon"            
## [33625] "may"              "leave"            "message"         
## [33628] "plate"            "bottle"           "driven"          
## [33631] "mind"             "left"             "message"         
## [33634] "said"             "merry"            "coming"          
## [33637] "hindered"         "many"             "questions"       
## [33640] "say"              "lord"             "mark"            
## [33643] "gandalf"          "ride"             "northern"        
## [33646] "wall"             "find"             "treebeard"       
## [33649] "welcome"          "may"              "add"             
## [33652] "also"             "find"             "food"            
## [33655] "best"             "discovered"       "selected"        
## [33658] "humble"           "servants"         "bowed"           
## [33661] "gandalf"          "laughed"          "better"          
## [33664] "said"             "well"             "théoden"         
## [33667] "ride"             "find"             "treebeard"       
## [33670] "must"             "go"               "round"           
## [33673] "far"              "see"              "treebeard"       
## [33676] "learn"            "much"             "treebeard"       
## [33679] "fangorn"          "eldest"           "chief"           
## [33682] "ents"             "speak"            "hear"            
## [33685] "speech"           "oldest"           "living"          
## [33688] "things"           "come"             "said"            
## [33691] "théoden"          "farewell"         "hobbits"         
## [33694] "may"              "meet"             "house"           
## [33697] "shall"            "sit"              "beside"          
## [33700] "tell"             "hearts"           "desire"          
## [33703] "deeds"            "grandsires"       "far"             
## [33706] "can"              "reckon"           "speak"           
## [33709] "also"             "tobold"           "old"             
## [33712] "herb"             "lore"             "farewell"        
## [33715] "hobbits"          "bowed"            "low"             
## [33718] "king"             "rohan"            "said"            
## [33721] "pippin"           "undertone"        "fine"            
## [33724] "old"              "fellow"           "polite"          
## [33727] "chapter"          "flotsam"          "jetsam"          
## [33730] "gandalf"          "kings"            "company"         
## [33733] "rode"             "away"             "turning"         
## [33736] "eastward"         "make"             "circuit"         
## [33739] "ruined"           "walls"            "isengard"        
## [33742] "aragorn"          "gimli"            "legolas"         
## [33745] "remained"         "behind"           "leaving"         
## [33748] "arod"             "hasufel"          "stray"           
## [33751] "search"           "grass"            "came"            
## [33754] "sat"              "beside"           "hobbits"         
## [33757] "well"             "well"             "hunt"            
## [33760] "meet"             "last"             "none"            
## [33763] "us"               "ever"             "thought"         
## [33766] "come"             "said"             "aragorn"         
## [33769] "now"              "great"            "ones"            
## [33772] "gone"             "discuss"          "high"            
## [33775] "matters"          "said"             "legolas"         
## [33778] "hunters"          "can"              "perhaps"         
## [33781] "learn"            "answers"          "small"           
## [33784] "riddles"          "tracked"          "far"             
## [33787] "forest"           "still"            "many"            
## [33790] "things"           "like"             "know"            
## [33793] "truth"            "great"            "deal"            
## [33796] "want"             "know"             "said"            
## [33799] "merry"            "learnt"           "things"          
## [33802] "treebeard"        "old"              "ent"             
## [33805] "nearly"           "enough"           "good"            
## [33808] "time"             "said"             "legolas"         
## [33811] "hunters"          "give"             "account"         
## [33814] "us"               "first"            "second"          
## [33817] "said"             "gimli"            "go"              
## [33820] "better"           "meal"             "sore"            
## [33823] "head"             "past"             "mid"             
## [33826] "day"              "truants"          "might"           
## [33829] "make"             "amends"           "finding"         
## [33832] "us"               "plunder"          "spoke"           
## [33835] "food"             "drink"            "pay"             
## [33838] "score"            "shall"            "said"            
## [33841] "pippin"           "comfort"          "whats"           
## [33844] "left"             "sarumans"         "guard"           
## [33847] "house"            "arch"             "picnic"          
## [33850] "keep"             "eye"              "road"            
## [33853] "less"             "eye"              "said"            
## [33856] "gimli"            "go"               "orc"             
## [33859] "house"            "touch"            "orcs"            
## [33862] "meat"             "anything"         "mauled"          
## [33865] "wouldnt"          "ask"              "said"            
## [33868] "merry"            "enough"           "orcs"            
## [33871] "last"             "life"             "time"            
## [33874] "many"             "folk"             "isengard"        
## [33877] "saruman"          "kept"             "enough"          
## [33880] "wisdom"           "trust"            "orcs"            
## [33883] "men"              "guard"            "gates"           
## [33886] "faithful"         "servants"         "suppose"         
## [33889] "anyway"           "favoured"         "got"             
## [33892] "good"             "provisions"       "pipe"            
## [33895] "weed"             "asked"            "gimli"           
## [33898] "dont"             "think"            "merry"           
## [33901] "laughed"          "another"          "story"           
## [33904] "can"              "wait"             "lunch"           
## [33907] "well"             "let"              "us"              
## [33910] "go"               "lunch"            "said"            
## [33913] "dwarf"            "hobbits"          "led"             
## [33916] "way"              "passed"           "arch"            
## [33919] "came"             "wide"             "door"            
## [33922] "upon"             "left"             "top"             
## [33925] "stair"            "opened"           "direct"          
## [33928] "large"            "chamber"          "smaller"         
## [33931] "doors"            "far"              "end"             
## [33934] "hearth"           "chimney"          "one"             
## [33937] "side"             "chamber"          "hewn"            
## [33940] "stone"            "must"             "dark"            
## [33943] "windows"          "looked"           "tunnel"          
## [33946] "light"            "came"             "now"             
## [33949] "broken"           "roof"             "hearth"          
## [33952] "wood"             "burning"          "lit"             
## [33955] "bit"              "fire"             "said"            
## [33958] "pippin"           "cheered"          "us"              
## [33961] "fogs"             "faggots"          "wood"            
## [33964] "find"             "wet"              "great"           
## [33967] "draught"          "chimney"          "seems"           
## [33970] "wind"             "away"             "rock"            
## [33973] "fortunately"      "blocked"          "fire"            
## [33976] "handy"            "make"             "toast"           
## [33979] "bread"            "three"            "four"            
## [33982] "days"             "old"              "afraid"          
## [33985] "aragorn"          "companions"       "sat"             
## [33988] "one"              "end"              "long"            
## [33991] "table"            "hobbits"          "disappeared"     
## [33994] "one"              "inner"            "doors"           
## [33997] "store"            "room"             "woods"           
## [34000] "luckily"          "said"             "pippin"          
## [34003] "came"             "back"             "laden"           
## [34006] "dishes"           "bowls"            "cups"            
## [34009] "knives"           "food"             "various"         
## [34012] "sorts"            "need"             "turn"            
## [34015] "nose"             "provender"        "master"          
## [34018] "gimli"            "said"             "merry"           
## [34021] "orc"              "stuff"            "man"             
## [34024] "food"             "treebeard"        "calls"           
## [34027] "wine"             "beer"             "theres"          
## [34030] "barrel"           "inside"           "passable"        
## [34033] "first"            "rate"             "salted"          
## [34036] "pork"             "can"              "cut"             
## [34039] "rashers"          "bacon"            "broil"           
## [34042] "like"             "sorry"            "green"           
## [34045] "stuff"            "deliveries"       "rather"          
## [34048] "interrupted"      "last"             "days"            
## [34051] "offer"            "anything"         "follow"          
## [34054] "butter"           "honey"            "bread"           
## [34057] "content"          "indeed"           "yes"             
## [34060] "said"             "gimli"            "score"           
## [34063] "much"             "reduced"          "three"           
## [34066] "soon"             "busy"             "meal"            
## [34069] "two"              "hobbits"          "unabashed"       
## [34072] "set"              "second"           "time"            
## [34075] "must"             "keep"             "guests"          
## [34078] "company"          "said"             "full"            
## [34081] "courtesy"         "morning"          "laughed"         
## [34084] "legolas"          "maybe"            "arrived"         
## [34087] "already"          "keeping"          "one"             
## [34090] "another"          "company"          "maybe"           
## [34093] "said"             "pippin"           "foul"            
## [34096] "fare"             "orcs"             "little"          
## [34099] "enough"           "days"             "seems"           
## [34102] "long"             "since"            "eat"             
## [34105] "hearts"           "content"          "seem"            
## [34108] "done"             "harm"             "said"            
## [34111] "aragorn"          "indeed"           "look"            
## [34114] "bloom"            "health"           "aye"             
## [34117] "indeed"           "said"             "gimli"           
## [34120] "looking"          "top"              "cup"             
## [34123] "hair"             "twice"            "thick"           
## [34126] "curly"            "parted"           "swear"           
## [34129] "grown"            "somewhat"         "possible"        
## [34132] "hobbits"          "age"              "treebeard"       
## [34135] "rate"             "starved"          "said"            
## [34138] "merry"            "ents"             "drink"           
## [34141] "drink"            "enough"           "content"         
## [34144] "treebeards"       "draughts"         "may"             
## [34147] "nourishing"       "one"              "feels"           
## [34150] "need"             "something"        "solid"           
## [34153] "even"             "lembas"           "none"            
## [34156] "worse"            "change"           "drunk"           
## [34159] "waters"           "ents"             "said"            
## [34162] "legolas"          "ah"               "think"           
## [34165] "likely"           "gimlis"           "eyes"            
## [34168] "deceive"          "strange"          "songs"           
## [34171] "sung"             "draughts"         "fangorn"         
## [34174] "many"             "strange"          "tales"           
## [34177] "told"             "land"             "said"            
## [34180] "aragorn"          "never"            "entered"         
## [34183] "come"             "tell"             "ents"            
## [34186] "ents"             "said"             "pippin"          
## [34189] "ents"             "well"             "ents"            
## [34192] "different"        "thing"            "eyes"            
## [34195] "now"              "eyes"             "odd"             
## [34198] "tried"            "fumbling"         "words"           
## [34201] "trailed"          "silence"          "oh"              
## [34204] "well"             "went"             "seen"            
## [34207] "distance"         "already"          "saw"             
## [34210] "rate"             "reported"         "way"             
## [34213] "see"              "many"             "others"          
## [34216] "expect"           "leave"            "must"            
## [34219] "form"             "ideas"            "now"             
## [34222] "now"              "said"             "gimli"           
## [34225] "beginning"        "story"            "middle"          
## [34228] "like"             "tale"             "right"           
## [34231] "order"            "starting"         "strange"         
## [34234] "day"              "fellowship"       "broken"          
## [34237] "shall"            "time"             "said"            
## [34240] "merry"            "first"            "finished"        
## [34243] "eating"           "shall"            "fill"            
## [34246] "pipes"            "light"            "little"          
## [34249] "can"              "pretend"          "back"            
## [34252] "safe"             "bree"             "rivendell"       
## [34255] "produced"         "small"            "leather"         
## [34258] "bag"              "full"             "tobacco"         
## [34261] "heaps"            "said"             "can"             
## [34264] "pack"             "much"             "wish"            
## [34267] "go"               "salvage"          "work"            
## [34270] "morning"          "pippin"           "lots"            
## [34273] "things"           "floating"         "pippin"          
## [34276] "found"            "two"              "small"           
## [34279] "barrels"          "washed"           "cellar"          
## [34282] "store"            "house"            "suppose"         
## [34285] "opened"           "found"            "filled"          
## [34288] "fine"             "pipe"             "weed"            
## [34291] "wish"             "quite"            "unspoilt"        
## [34294] "gimli"            "took"             "rubbed"          
## [34297] "palms"            "sniffed"          "feels"           
## [34300] "good"             "smells"           "good"            
## [34303] "said"             "good"             "said"            
## [34306] "merry"            "dear"             "gimli"           
## [34309] "longbottom"       "leaf"             "hornblower"      
## [34312] "brandmarks"       "barrels"          "plain"           
## [34315] "plain"            "came"             "cant"            
## [34318] "imagine"          "sarumans"         "private"         
## [34321] "use"              "fancy"            "never"           
## [34324] "knew"             "went"             "far"             
## [34327] "abroad"           "comes"            "handy"           
## [34330] "now"              "said"             "gimli"           
## [34333] "pipe"             "go"               "alas"            
## [34336] "lost"             "mine"             "moria"           
## [34339] "pipe"             "plunder"          "afraid"          
## [34342] "said"             "merry"            "found"           
## [34345] "even"             "guardrooms"       "saruman"         
## [34348] "kept"             "dainty"           "seems"           
## [34351] "dont"             "think"            "use"             
## [34354] "knocking"         "doors"            "orthanc"         
## [34357] "beg"              "pipe"             "shall"           
## [34360] "share"            "pipes"            "good"            
## [34363] "friends"          "must"             "pinch"           
## [34366] "half"             "moment"           "said"            
## [34369] "pippin"           "putting"          "hand"            
## [34372] "inside"           "breast"           "jacket"          
## [34375] "pulled"           "little"           "soft"            
## [34378] "wallet"           "string"           "keep"            
## [34381] "treasure"         "two"              "near"            
## [34384] "skin"             "precious"         "rings"           
## [34387] "heres"            "one"              "old"             
## [34390] "wooden"           "pipe"             "heres"           
## [34393] "another"          "unused"           "one"             
## [34396] "carried"          "long"             "way"             
## [34399] "though"           "dont"             "know"            
## [34402] "never"            "really"           "expected"        
## [34405] "find"             "pipe"             "weed"            
## [34408] "journey"          "ran"              "now"             
## [34411] "comes"            "useful"           "held"            
## [34414] "small"            "pipe"             "wide"            
## [34417] "flattened"        "bowl"             "handed"          
## [34420] "gimli"            "settle"           "score"           
## [34423] "us"               "said"             "settle"          
## [34426] "cried"            "gimli"            "noble"           
## [34429] "hobbit"           "leaves"           "deep"            
## [34432] "debt"             "well"             "going"           
## [34435] "back"             "open"             "air"             
## [34438] "see"              "wind"             "sky"             
## [34441] "said"             "legolas"          "come"            
## [34444] "said"             "aragorn"          "went"            
## [34447] "seated"           "upon"             "piled"           
## [34450] "stones"           "gateway"          "see"             
## [34453] "far"              "valley"           "now"             
## [34456] "mists"            "lifting"          "floating"        
## [34459] "away"             "upon"             "breeze"          
## [34462] "now"              "let"              "us"              
## [34465] "take"             "ease"             "little"          
## [34468] "said"             "aragorn"          "sit"             
## [34471] "edge"             "ruin"             "talk"            
## [34474] "gandalf"          "says"             "busy"            
## [34477] "elsewhere"        "feel"             "weariness"       
## [34480] "seldom"           "felt"             "wrapped"         
## [34483] "grey"             "cloak"            "hiding"          
## [34486] "mail"             "shirt"            "stretched"       
## [34489] "long"             "legs"             "lay"             
## [34492] "back"             "sent"             "lips"            
## [34495] "thin"             "stream"           "smoke"           
## [34498] "look"             "said"             "pippin"          
## [34501] "strider"          "ranger"           "come"            
## [34504] "back"             "never"            "away"            
## [34507] "said"             "aragorn"          "strider"         
## [34510] "dúnadan"          "belong"           "gondor"          
## [34513] "north"            "smoked"           "silence"         
## [34516] "sun"              "shone"            "slanting"        
## [34519] "valley"           "among"            "white"           
## [34522] "clouds"           "high"             "west"            
## [34525] "legolas"          "lay"              "still"           
## [34528] "looking"          "sun"              "sky"             
## [34531] "steady"           "eyes"             "singing"         
## [34534] "softly"           "last"             "sat"             
## [34537] "come"             "now"              "said"            
## [34540] "time"             "wears"            "mists"           
## [34543] "blowing"          "away"             "strange"         
## [34546] "folk"             "wreathe"          "smoke"           
## [34549] "tale"             "well"             "tale"            
## [34552] "begins"           "waking"           "dark"            
## [34555] "finding"          "strung"           "orc"             
## [34558] "camp"             "said"             "pippin"          
## [34561] "let"              "see"              "today"           
## [34564] "fifth"            "march"            "shire"           
## [34567] "reckoning"        "said"             "aragorn"         
## [34570] "pippin"           "made"             "calculations"    
## [34573] "fingers"          "nine"             "days"            
## [34576] "ago"              "said"             "seems"           
## [34579] "year"             "since"            "caught"          
## [34582] "well"             "though"           "half"            
## [34585] "like"             "bad"              "dream"           
## [34588] "reckon"           "three"            "horrible"        
## [34591] "days"             "followed"         "merry"           
## [34594] "correct"          "forget"           "anything"        
## [34597] "important"        "going"            "details"         
## [34600] "whips"            "filth"            "stench"          
## [34603] "bear"             "remembering"      "plunged"         
## [34606] "account"          "boromirs"         "last"            
## [34609] "fight"            "orc"              "march"           
## [34612] "emyn"             "muil"             "forest"          
## [34615] "others"           "nodded"           "various"         
## [34618] "points"           "fitted"           "guesses"         
## [34621] "treasures"        "let"              "fall"            
## [34624] "said"             "aragorn"          "glad"            
## [34627] "back"             "loosened"         "belt"            
## [34630] "cloak"            "took"             "two"             
## [34633] "sheathed"         "knives"           "well"            
## [34636] "said"             "merry"            "never"           
## [34639] "expected"         "see"              "marked"          
## [34642] "orcs"             "mine"             "uglúk"           
## [34645] "took"             "us"               "glared"          
## [34648] "first"            "thought"          "going"           
## [34651] "stab"             "threw"            "things"          
## [34654] "away"             "burned"           "also"            
## [34657] "brooch"           "pippin"           "said"            
## [34660] "aragorn"          "kept"             "safe"            
## [34663] "precious"         "thing"            "know"            
## [34666] "said"             "pippin"           "wrench"          
## [34669] "let"              "go"               "else"            
## [34672] "nothing"          "else"             "answered"        
## [34675] "aragorn"          "one"              "cast"            
## [34678] "away"             "treasure"         "need"            
## [34681] "fetters"          "rightly"          "cutting"         
## [34684] "bands"            "wrists"           "smart"           
## [34687] "work"             "said"             "gimli"           
## [34690] "luck"             "served"           "seized"          
## [34693] "chance"           "hands"            "one"             
## [34696] "might"            "say"              "set"             
## [34699] "us"               "pretty"           "riddle"          
## [34702] "said"             "legolas"          "wondered"        
## [34705] "grown"            "wings"            "unfortunately"   
## [34708] "said"             "pippin"           "know"            
## [34711] "grishnákh"        "shuddered"        "said"            
## [34714] "leaving"          "merry"            "tell"            
## [34717] "last"             "horrible"         "moments"         
## [34720] "pawing"           "hands"            "hot"             
## [34723] "breath"           "dreadful"         "strength"        
## [34726] "grishnákhs"       "hairy"            "arms"            
## [34729] "orcs"             "barad"            "dûr"             
## [34732] "lugbúrz"          "call"             "makes"           
## [34735] "uneasy"           "said"             "aragorn"         
## [34738] "dark"             "lord"             "already"         
## [34741] "knew"             "much"             "servants"        
## [34744] "also"             "grishnákh"        "evidently"       
## [34747] "sent"             "message"          "across"          
## [34750] "river"            "quarrel"          "red"             
## [34753] "eye"              "looking"          "towards"         
## [34756] "isengard"         "saruman"          "rate"            
## [34759] "cleft"            "stick"            "cutting"         
## [34762] "yes"              "whichever"        "side"            
## [34765] "wins"             "outlook"          "poor"            
## [34768] "said"             "merry"            "things"          
## [34771] "began"            "go"               "wrong"           
## [34774] "moment"           "orcs"             "set"             
## [34777] "foot"             "rohan"            "caught"          
## [34780] "glimpse"          "old"              "villain"         
## [34783] "gandalf"          "hints"            "said"            
## [34786] "gimli"            "edge"             "forest"          
## [34789] "asked"            "pippin"           "five"            
## [34792] "nights"           "ago"              "said"            
## [34795] "aragorn"          "let"              "see"             
## [34798] "said"             "merry"            "five"            
## [34801] "nights"           "ago"              "now"             
## [34804] "come"             "part"             "story"           
## [34807] "know"             "nothing"          "met"             
## [34810] "treebeard"        "morning"          "battle"          
## [34813] "night"            "wellinghall"      "one"             
## [34816] "ent"              "houses"           "next"            
## [34819] "morning"          "went"             "entmoot"         
## [34822] "gathering"        "ents"             "queerest"        
## [34825] "thing"            "ever"             "seen"            
## [34828] "life"             "lasted"           "day"             
## [34831] "next"             "spent"            "nights"          
## [34834] "ent"              "called"           "quickbeam"       
## [34837] "late"             "afternoon"        "third"           
## [34840] "day"              "moot"             "ents"            
## [34843] "suddenly"         "blew"             "amazing"         
## [34846] "forest"           "felt"             "tense"           
## [34849] "thunderstorm"     "brewing"          "inside"          
## [34852] "exploded"         "wish"             "heard"           
## [34855] "song"             "marched"          "saruman"         
## [34858] "heard"            "hundred"          "miles"           
## [34861] "away"             "now"              "even"            
## [34864] "run"              "legs"             "said"            
## [34867] "pippin"           "though"           "isengard"        
## [34870] "strong"           "hard"             "cold"            
## [34873] "stone"            "bare"             "bone"            
## [34876] "go"               "go"               "go"              
## [34879] "war"              "hew"              "stone"           
## [34882] "break"            "door"             "much"            
## [34885] "great"            "deal"             "song"            
## [34888] "words"            "like"             "music"           
## [34891] "horns"            "drums"            "exciting"        
## [34894] "thought"          "marching"         "music"           
## [34897] "just"             "song"             "got"             
## [34900] "know"             "better"           "now"             
## [34903] "came"             "last"             "ridge"           
## [34906] "nan"              "curunír"          "night"           
## [34909] "fallen"           "merry"            "continued"       
## [34912] "first"            "feeling"          "forest"          
## [34915] "moving"           "behind"           "us"              
## [34918] "thought"          "dreaming"         "entish"          
## [34921] "dream"            "pippin"           "noticed"         
## [34924] "frightened"       "find"             "later"           
## [34927] "huorns"           "ents"             "call"            
## [34930] "short"            "language"         "treebeard"       
## [34933] "wont"             "say"              "much"            
## [34936] "think"            "ents"             "become"          
## [34939] "almost"           "like"             "trees"           
## [34942] "least"            "look"             "stand"           
## [34945] "wood"             "eaves"            "silent"          
## [34948] "watching"         "endlessly"        "trees"           
## [34951] "deep"             "darkest"          "dales"           
## [34954] "hundreds"         "hundreds"         "believe"         
## [34957] "great"            "power"            "seem"            
## [34960] "able"             "wrap"             "shadow"          
## [34963] "difficult"        "see"              "moving"          
## [34966] "can"              "move"             "quickly"         
## [34969] "angry"            "stand"            "still"           
## [34972] "looking"          "weather"          "maybe"           
## [34975] "listening"        "rustling"         "wind"            
## [34978] "suddenly"         "find"             "middle"          
## [34981] "wood"             "great"            "groping"         
## [34984] "trees"            "around"           "still"           
## [34987] "voices"           "can"              "speak"           
## [34990] "ents"             "called"           "huorns"          
## [34993] "treebeard"        "says"             "become"          
## [34996] "queer"            "wild"             "dangerous"       
## [34999] "terrified"        "meeting"          "true"            
## [35002] "ents"             "look"             "well"            
## [35005] "early"            "night"            "crept"           
## [35008] "long"             "ravine"           "upper"           
## [35011] "end"              "wizards"          "vale"            
## [35014] "ents"             "rustling"         "huorns"          
## [35017] "behind"           "see"              "course"          
## [35020] "whole"            "air"              "full"            
## [35023] "creaking"         "dark"             "cloudy"          
## [35026] "night"            "moved"            "great"           
## [35029] "speed"            "soon"             "left"            
## [35032] "hills"            "made"             "noise"           
## [35035] "like"             "rushing"          "wind"            
## [35038] "moon"             "appear"           "clouds"          
## [35041] "long"             "midnight"         "tall"            
## [35044] "wood"             "round"            "north"           
## [35047] "side"             "isengard"         "sign"            
## [35050] "enemies"          "challenge"        "light"           
## [35053] "gleaming"         "high"             "window"          
## [35056] "tower"            "treebeard"        "ents"            
## [35059] "crept"            "right"            "round"           
## [35062] "within"           "sight"            "great"           
## [35065] "gates"            "pippin"           "sitting"         
## [35068] "treebeards"       "shoulders"        "feel"            
## [35071] "quivering"        "tenseness"        "even"            
## [35074] "roused"           "ents"             "can"             
## [35077] "cautious"         "patient"          "stood"           
## [35080] "still"            "carved"           "stones"          
## [35083] "breathing"        "listening"        "tremendous"      
## [35086] "stir"             "trumpets"         "blared"          
## [35089] "walls"            "isengard"         "echoed"          
## [35092] "thought"          "discovered"       "battle"          
## [35095] "going"            "begin"            "nothing"         
## [35098] "sort"             "sarumans"         "people"          
## [35101] "marching"         "away"             "dont"            
## [35104] "know"             "much"             "war"             
## [35107] "horsemen"         "rohan"            "saruman"         
## [35110] "seems"            "meant"            "finish"          
## [35113] "king"             "men"              "one"             
## [35116] "final"            "blow"             "emptied"         
## [35119] "isengard"         "saw"              "enemy"           
## [35122] "go"               "endless"          "lines"           
## [35125] "marching"         "orcs"             "troops"          
## [35128] "mounted"          "great"            "wolves"          
## [35131] "battalions"       "men"              "many"            
## [35134] "carried"          "torches"          "flare"           
## [35137] "see"              "faces"            "ordinary"        
## [35140] "men"              "rather"           "tall"            
## [35143] "dark"             "haired"           "grim"            
## [35146] "particularly"     "evil"             "looking"         
## [35149] "others"           "horrible"         "man"             
## [35152] "high"             "goblin"           "faces"           
## [35155] "sallow"           "leering"          "squint"          
## [35158] "eyed"             "know"             "reminded"        
## [35161] "southerner"       "bree"             "obviously"       
## [35164] "orc"              "like"             "thought"         
## [35167] "said"             "aragorn"          "many"            
## [35170] "half"             "orcs"             "deal"            
## [35173] "helms"            "deep"             "seems"           
## [35176] "plain"            "now"              "southerner"      
## [35179] "spy"              "sarumans"         "whether"         
## [35182] "working"          "black"            "riders"          
## [35185] "saruman"          "alone"            "know"            
## [35188] "difficult"        "evil"             "folk"            
## [35191] "know"             "league"           "cheating"        
## [35194] "one"              "another"          "well"            
## [35197] "sorts"            "together"         "must"            
## [35200] "ten"              "thousand"         "least"           
## [35203] "said"             "merry"            "took"            
## [35206] "hour"             "pass"             "gates"           
## [35209] "went"             "highway"          "fords"           
## [35212] "turned"           "away"             "µ"               
## [35215] "went"             "eastward"         "bridge"          
## [35218] "built"            "mile"             "away"            
## [35221] "river"            "runs"             "deep"            
## [35224] "channel"          "see"              "now"             
## [35227] "stood"            "singing"          "harsh"           
## [35230] "voices"           "laughing"         "making"          
## [35233] "hideous"          "din"              "thought"         
## [35236] "things"           "looked"           "black"           
## [35239] "rohan"            "treebeard"        "move"            
## [35242] "said"             "business"         "isengard"        
## [35245] "tonight"          "rock"             "stone"           
## [35248] "though"           "see"              "happening"       
## [35251] "dark"             "believe"          "huorns"          
## [35254] "began"            "move"             "south"           
## [35257] "soon"             "gates"            "shut"            
## [35260] "business"         "orcs"             "think"           
## [35263] "far"              "valley"           "morning"         
## [35266] "rate"             "shadow"           "one"             
## [35269] "couldnt"          "see"              "soon"            
## [35272] "saruman"          "sent"             "army"            
## [35275] "turn"             "came"             "treebeard"       
## [35278] "put"              "us"               "went"            
## [35281] "gates"            "began"            "hammering"       
## [35284] "doors"            "calling"          "saruman"         
## [35287] "answer"           "except"           "arrows"          
## [35290] "stones"           "walls"            "arrows"          
## [35293] "use"              "ents"             "hurt"            
## [35296] "course"           "infuriate"        "like"            
## [35299] "stinging"         "flies"            "ent"             
## [35302] "can"              "stuck"            "full"            
## [35305] "orc"              "arrows"           "pin"             
## [35308] "cushion"          "take"             "serious"         
## [35311] "harm"             "poisoned"         "one"             
## [35314] "thing"            "skin"             "seems"           
## [35317] "thick"            "tougher"          "bark"            
## [35320] "takes"            "heavy"            "axe"             
## [35323] "stroke"           "wound"            "seriously"       
## [35326] "dont"             "like"             "axes"            
## [35329] "great"            "many"             "axe"             
## [35332] "men"              "one"              "ent"             
## [35335] "man"              "hacks"            "ent"             
## [35338] "never"            "gets"             "chance"          
## [35341] "second"           "blow"             "punch"           
## [35344] "ent"              "fist"             "crumples"        
## [35347] "iron"             "like"             "thin"            
## [35350] "tin"              "treebeard"        "got"             
## [35353] "arrows"           "began"            "warm"            
## [35356] "get"              "positively"       "hasty"           
## [35359] "say"              "let"              "great"           
## [35362] "hoom"             "hom"              "dozen"           
## [35365] "ents"             "came"             "striding"        
## [35368] "angry"            "ent"              "terrifying"      
## [35371] "fingers"          "toes"             "just"            
## [35374] "freeze"           "rock"             "tear"            
## [35377] "like"             "bread"            "crust"           
## [35380] "like"             "watching"         "work"            
## [35383] "great"            "tree"             "roots"           
## [35386] "hundred"          "years"            "packed"          
## [35389] "moments"          "pushed"           "pulled"          
## [35392] "tore"             "shook"            "hammered"        
## [35395] "clang"            "bang"             "crash"           
## [35398] "crack"            "five"             "minutes"         
## [35401] "huge"             "gates"            "just"            
## [35404] "lying"            "ruin"             "already"         
## [35407] "beginning"        "eat"              "walls"           
## [35410] "like"             "rabbits"          "sand"            
## [35413] "pit"              "dont"             "know"            
## [35416] "saruman"          "thought"          "happening"       
## [35419] "anyway"           "know"             "deal"            
## [35422] "wizardry"         "may"              "falling"         
## [35425] "lately"           "course"           "anyway"          
## [35428] "think"            "much"             "grit"            
## [35431] "much"             "plain"            "courage"         
## [35434] "alone"            "tight"            "place"           
## [35437] "without"          "lot"              "slaves"          
## [35440] "machines"         "things"           "know"            
## [35443] "mean"             "different"        "old"             
## [35446] "gandalf"          "wonder"           "fame"            
## [35449] "along"            "mainly"           "due"             
## [35452] "cleverness"       "settling"         "isengard"        
## [35455] "said"             "aragorn"          "great"           
## [35458] "fame"             "made"             "knowledge"       
## [35461] "deep"             "thought"          "subtle"          
## [35464] "hands"            "marvellously"     "skilled"         
## [35467] "power"            "minds"            "others"          
## [35470] "wise"             "persuade"         "smaller"         
## [35473] "folk"             "daunt"            "power"           
## [35476] "certainly"        "still"            "keeps"           
## [35479] "many"             "middle"           "earth"           
## [35482] "say"              "safe"             "left"            
## [35485] "alone"            "talk"             "even"            
## [35488] "now"              "suffered"         "defeat"          
## [35491] "gandalf"          "elrond"           "galadriel"       
## [35494] "perhaps"          "now"              "wickedness"      
## [35497] "laid"             "bare"             "others"          
## [35500] "ents"             "safe"             "said"            
## [35503] "pippin"           "seems"            "one"             
## [35506] "time"             "got"              "round"           
## [35509] "never"            "anyway"           "understand"      
## [35512] "made"             "great"            "mistake"         
## [35515] "leaving"          "calculations"     "plan"            
## [35518] "time"             "make"             "set"             
## [35521] "work"             "soon"             "attack"          
## [35524] "began"            "remaining"        "rats"            
## [35527] "isengard"         "started"          "bolting"         
## [35530] "every"            "hole"             "ents"            
## [35533] "made"             "ents"             "let"             
## [35536] "men"              "go"               "questioned"      
## [35539] "two"              "three"            "dozen"           
## [35542] "end"              "dont"             "think"           
## [35545] "many"             "orc"              "folk"            
## [35548] "size"             "escaped"          "huorns"          
## [35551] "wood"             "full"             "round"           
## [35554] "isengard"         "time"             "well"            
## [35557] "gone"             "valley"           "ents"            
## [35560] "reduced"          "large"            "part"            
## [35563] "southern"         "walls"            "rubbish"         
## [35566] "left"             "people"           "bolted"          
## [35569] "deserted"         "saruman"          "fled"            
## [35572] "panic"            "seems"            "gates"           
## [35575] "arrived"          "expect"           "came"            
## [35578] "watch"            "splendid"         "army"            
## [35581] "march"            "ents"             "broke"           
## [35584] "way"              "left"             "hurry"           
## [35587] "spot"             "first"            "night"           
## [35590] "opened"           "great"            "light"           
## [35593] "stars"            "quite"            "enough"          
## [35596] "ents"             "see"              "suddenly"        
## [35599] "quickbeam"        "gave"             "cry"             
## [35602] "tree"             "killer"           "tree"            
## [35605] "killer"           "quickbeam"        "gentle"          
## [35608] "creature"         "hates"            "saruman"         
## [35611] "fiercely"         "people"           "suffered"        
## [35614] "cruelly"          "orc"              "axes"            
## [35617] "leapt"            "path"             "inner"           
## [35620] "gate"             "can"              "move"            
## [35623] "like"             "wind"             "roused"          
## [35626] "pale"             "figure"           "hurrying"        
## [35629] "away"             "shadows"          "pillars"         
## [35632] "nearly"           "reached"          "stairs"          
## [35635] "tower"            "door"             "near"            
## [35638] "thing"            "quickbeam"        "hot"             
## [35641] "within"           "step"             "two"             
## [35644] "caught"           "strangled"        "slipped"         
## [35647] "door"             "saruman"          "safe"            
## [35650] "back"             "orthanc"          "long"            
## [35653] "set"              "precious"         "machinery"       
## [35656] "work"             "time"             "many"            
## [35659] "ents"             "inside"           "isengard"        
## [35662] "followed"         "quickbeam"        "others"          
## [35665] "burst"            "north"            "east"            
## [35668] "roaming"          "great"            "deal"            
## [35671] "damage"           "suddenly"         "came"            
## [35674] "fires"            "foul"             "fumes"           
## [35677] "vents"            "shafts"           "plain"           
## [35680] "began"            "spout"            "belch"           
## [35683] "several"          "ents"             "got"             
## [35686] "scorched"         "blistered"        "one"             
## [35689] "beechbone"        "think"            "called"          
## [35692] "tall"             "handsome"         "ent"             
## [35695] "got"              "caught"           "spray"           
## [35698] "liquid"           "fire"             "burned"          
## [35701] "like"             "torch"            "horrible"        
## [35704] "sight"            "sent"             "mad"             
## [35707] "thought"          "really"           "roused"          
## [35710] "wrong"            "saw"              "like"            
## [35713] "last"             "staggering"       "roared"          
## [35716] "boomed"           "trumpeted"        "stones"          
## [35719] "began"            "crack"            "fall"            
## [35722] "mere"             "noise"            "merry"           
## [35725] "lay"              "ground"           "stuffed"         
## [35728] "cloaks"           "ears"             "round"           
## [35731] "round"            "rock"             "orthanc"         
## [35734] "ents"             "went"             "striding"        
## [35737] "storming"         "like"             "howling"         
## [35740] "gale"             "breaking"         "pillars"         
## [35743] "hurling"          "avalanches"       "boulders"        
## [35746] "shafts"           "tossing"          "huge"            
## [35749] "slabs"            "stone"            "air"             
## [35752] "like"             "leaves"           "tower"           
## [35755] "middle"           "spinning"         "whirlwind"       
## [35758] "saw"              "iron"             "posts"           
## [35761] "blocks"           "masonry"          "go"              
## [35764] "rocketing"        "hundreds"         "feet"            
## [35767] "smash"            "windows"          "orthanc"         
## [35770] "treebeard"        "kept"             "head"            
## [35773] "burns"            "luckily"          "want"            
## [35776] "folk"             "hurt"             "fury"            
## [35779] "want"             "saruman"          "escape"          
## [35782] "hole"             "confusion"        "many"            
## [35785] "ents"             "hurling"          "orthanc"         
## [35788] "rock"             "defeated"         "smooth"          
## [35791] "hard"             "wizardry"         "perhaps"         
## [35794] "older"            "stronger"         "sarumans"        
## [35797] "anyway"           "get"              "grip"            
## [35800] "make"             "crack"            "bruising"        
## [35803] "wounding"         "treebeard"        "went"            
## [35806] "ring"             "shouted"          "enormous"        
## [35809] "voice"            "rose"             "din"             
## [35812] "dead"             "silence"          "suddenly"        
## [35815] "heard"            "shrill"           "laugh"           
## [35818] "high"             "window"           "tower"           
## [35821] "queer"            "effect"           "ents"            
## [35824] "boiling"          "now"              "became"          
## [35827] "cold"             "grim"             "ice"             
## [35830] "quiet"            "left"             "plain"           
## [35833] "gathered"         "round"            "treebeard"       
## [35836] "standing"         "quite"            "still"           
## [35839] "spoke"            "little"           "language"        
## [35842] "think"            "telling"          "plan"            
## [35845] "made"             "old"              "head"            
## [35848] "long"             "just"             "faded"           
## [35851] "silently"         "away"             "grey"            
## [35854] "light"            "day"              "dawning"         
## [35857] "time"             "set"              "watch"           
## [35860] "tower"            "believe"          "watchers"        
## [35863] "well"             "hidden"           "shadows"         
## [35866] "kept"             "still"            "see"             
## [35869] "others"           "went"             "away"            
## [35872] "north"            "day"              "busy"            
## [35875] "sight"            "time"             "left"            
## [35878] "alone"            "dreary"           "day"             
## [35881] "wandered"         "bit"              "though"          
## [35884] "kept"             "view"             "windows"         
## [35887] "orthanc"          "much"             "stared"          
## [35890] "us"               "threateningly"    "good"            
## [35893] "deal"             "time"             "spent"           
## [35896] "looking"          "something"        "eat"             
## [35899] "also"             "sat"              "talked"          
## [35902] "wondering"        "happening"        "away"            
## [35905] "south"            "rohan"            "become"          
## [35908] "rest"             "company"          "every"           
## [35911] "now"              "hear"             "distance"        
## [35914] "rattle"           "fall"             "stone"           
## [35917] "thudding"         "noises"           "echoing"         
## [35920] "hills"            "afternoon"        "walked"          
## [35923] "round"            "circle"           "went"            
## [35926] "look"             "going"            "great"           
## [35929] "shadowy"          "wood"             "huorns"          
## [35932] "head"             "valley"           "another"         
## [35935] "round"            "northern"         "wall"            
## [35938] "dare"             "go"               "rending"         
## [35941] "tearing"          "noise"            "work"            
## [35944] "going"            "inside"           "ents"            
## [35947] "huorns"           "digging"          "great"           
## [35950] "pits"             "trenches"         "making"          
## [35953] "great"            "pools"            "dams"            
## [35956] "gathering"        "waters"           "isen"            
## [35959] "every"            "spring"           "stream"          
## [35962] "find"             "left"             "dusk"            
## [35965] "treebeard"        "came"             "back"            
## [35968] "gate"             "humming"          "booming"         
## [35971] "seemed"           "pleased"          "stood"           
## [35974] "stretched"        "great"            "arms"            
## [35977] "legs"             "breathed"         "deep"            
## [35980] "asked"            "tired"            "tired"           
## [35983] "said"             "tired"            "well"            
## [35986] "tired"            "stiff"            "need"            
## [35989] "good"             "draught"          "entwash"         
## [35992] "worked"           "hard"             "done"            
## [35995] "stone"            "cracking"         "earth"           
## [35998] "gnawing"          "today"            "done"            
## [36001] "many"             "long"             "year"            
## [36004] "nearly"           "finished"         "night"           
## [36007] "falls"            "linger"           "near"            
## [36010] "gate"             "old"              "tunnel"          
## [36013] "water"            "may"              "come"            
## [36016] "foul"             "water"            "filth"           
## [36019] "saruman"          "washed"           "away"            
## [36022] "isen"             "can"              "run"             
## [36025] "clean"            "began"            "pull"            
## [36028] "bit"              "walls"            "leisurely"       
## [36031] "sort"             "way"              "just"            
## [36034] "amuse"            "just"             "wondering"       
## [36037] "safe"             "lie"              "get"             
## [36040] "sleep"            "amazing"          "thing"           
## [36043] "happened"         "sound"            "rider"           
## [36046] "coming"           "swiftly"          "road"            
## [36049] "merry"            "lay"              "quiet"           
## [36052] "treebeard"        "hid"              "shadows"         
## [36055] "arch"             "suddenly"         "great"           
## [36058] "horse"            "came"             "striding"        
## [36061] "like"             "flash"            "silver"          
## [36064] "already"          "dark"             "see"             
## [36067] "riders"           "face"             "clearly"         
## [36070] "seemed"           "shine"            "clothes"         
## [36073] "white"            "just"             "sat"             
## [36076] "staring"          "mouth"            "open"            
## [36079] "tried"            "call"             "couldnt"         
## [36082] "need"             "halted"           "just"            
## [36085] "us"               "looked"           "us"              
## [36088] "gandalf"          "said"             "last"            
## [36091] "voice"            "whisper"          "say"             
## [36094] "hullo"            "pippin"           "pleasant"        
## [36097] "surprise"         "indeed"           "said"            
## [36100] "get"              "tom"              "fool"            
## [36103] "took"             "name"             "wonder"          
## [36106] "ruin"             "treebeard"        "want"            
## [36109] "quick"            "treebeard"        "heard"           
## [36112] "voice"            "came"             "shadows"         
## [36115] "strange"          "meeting"          "surprised"       
## [36118] "neither"          "seemed"           "surprised"       
## [36121] "gandalf"          "obviously"        "expected"        
## [36124] "find"             "treebeard"        "treebeard"       
## [36127] "might"            "almost"           "loitering"       
## [36130] "near"             "gates"            "purpose"         
## [36133] "meet"             "yet"              "told"            
## [36136] "old"              "ent"              "moria"           
## [36139] "remembered"       "queer"            "look"            
## [36142] "gave"             "us"               "time"            
## [36145] "can"              "suppose"          "seen"            
## [36148] "gandalf"          "news"             "say"             
## [36151] "anything"         "hurry"            "dont"            
## [36154] "hasty"            "motto"            "nobody"          
## [36157] "even"             "elves"            "say"             
## [36160] "much"             "gandalfs"         "movements"       
## [36163] "hoom"             "gandalf"          "said"            
## [36166] "treebeard"        "glad"             "come"            
## [36169] "wood"             "water"            "stock"           
## [36172] "stone"            "can"              "master"          
## [36175] "wizard"           "manage"           "treebeard"       
## [36178] "said"             "gandalf"          "need"            
## [36181] "help"             "done"             "much"            
## [36184] "need"             "ten"              "thousand"        
## [36187] "orcs"             "manage"           "two"             
## [36190] "went"             "council"          "together"        
## [36193] "corner"           "must"             "seemed"          
## [36196] "hasty"            "treebeard"        "gandalf"         
## [36199] "tremendous"       "hurry"            "already"         
## [36202] "talking"          "great"            "pace"            
## [36205] "passed"           "hearing"          "away"            
## [36208] "matter"           "minutes"          "perhaps"         
## [36211] "quarter"          "hour"             "gandalf"         
## [36214] "came"             "back"             "us"              
## [36217] "seemed"           "relieved"         "almost"          
## [36220] "merry"            "say"              "glad"            
## [36223] "see"              "us"               "gandalf"         
## [36226] "cried"            "seen"             "others"          
## [36229] "wherever"         "back"             "answered"        
## [36232] "genuine"          "gandalf"          "manner"          
## [36235] "yes"              "seen"             "others"          
## [36238] "news"             "must"             "wait"            
## [36241] "perilous"         "night"            "must"            
## [36244] "ride"             "fast"             "dawn"            
## [36247] "may"              "brighter"         "shall"           
## [36250] "meet"             "take"             "care"            
## [36253] "keep"             "away"             "orthanc"         
## [36256] "good"             "bye"              "treebeard"       
## [36259] "thoughtful"       "gandalf"          "gone"            
## [36262] "evidently"        "learnt"           "lot"             
## [36265] "short"            "time"             "digesting"       
## [36268] "looked"           "us"               "said"            
## [36271] "hm"               "well"             "find"            
## [36274] "hasty"            "folk"             "thought"         
## [36277] "said"             "much"             "less"            
## [36280] "might"            "hm"               "bundle"          
## [36283] "news"             "mistake"          "well"            
## [36286] "now"              "treebeard"        "must"            
## [36289] "get"              "busy"             "went"            
## [36292] "got"              "little"           "news"            
## [36295] "cheer"            "us"               "moment"          
## [36298] "thought"          "three"            "frodo"           
## [36301] "sam"              "poor"             "boromir"         
## [36304] "gathered"         "great"            "battle"          
## [36307] "going"            "soon"             "might"           
## [36310] "never"            "come"             "huorns"          
## [36313] "help"             "said"             "treebeard"       
## [36316] "went"             "away"             "see"             
## [36319] "morning"          "deep"             "night"           
## [36322] "lay"              "top"              "pile"            
## [36325] "stone"            "see"              "nothing"         
## [36328] "beyond"           "mist"             "shadows"         
## [36331] "blotted"          "everything"       "like"            
## [36334] "great"            "blanket"          "round"           
## [36337] "us"               "air"              "seemed"          
## [36340] "hot"              "heavy"            "full"            
## [36343] "rustlings"        "creakings"        "murmur"          
## [36346] "like"             "voices"           "passing"         
## [36349] "think"            "hundreds"         "huorns"          
## [36352] "must"             "passing"          "help"            
## [36355] "battle"           "later"            "great"           
## [36358] "rumble"           "thunder"          "away"            
## [36361] "south"            "flashes"          "lightning"       
## [36364] "far"              "away"             "across"          
## [36367] "rohan"            "every"            "now"             
## [36370] "see"              "mountain"         "peaks"           
## [36373] "miles"            "miles"            "away"            
## [36376] "stab"             "suddenly"         "black"           
## [36379] "white"            "vanish"           "behind"          
## [36382] "us"               "noises"           "like"            
## [36385] "thunder"          "hills"            "different"       
## [36388] "times"            "whole"            "valley"          
## [36391] "echoed"           "must"             "midnight"        
## [36394] "ents"             "broke"            "dams"            
## [36397] "poured"           "gathered"         "waters"          
## [36400] "gap"              "northern"         "wall"            
## [36403] "isengard"         "huorn"            "dark"            
## [36406] "passed"           "thunder"          "rolled"          
## [36409] "away"             "moon"             "sinking"         
## [36412] "behind"           "western"          "mountains"       
## [36415] "isengard"         "began"            "fill"            
## [36418] "black"            "creeping"         "streams"         
## [36421] "pools"            "glittered"        "last"            
## [36424] "light"            "moon"             "spread"          
## [36427] "plain"            "every"            "now"             
## [36430] "waters"           "found"            "way"             
## [36433] "shaft"            "spouthole"        "great"           
## [36436] "white"            "steams"           "hissed"          
## [36439] "smoke"            "rose"             "billows"         
## [36442] "explosions"       "gusts"            "fire"            
## [36445] "one"              "great"            "coil"            
## [36448] "vapour"           "went"             "whirling"        
## [36451] "twisting"         "round"            "round"           
## [36454] "orthanc"          "looked"           "like"            
## [36457] "tall"             "peak"             "cloud"           
## [36460] "fiery"            "underneath"       "moonlit"         
## [36463] "still"            "water"            "poured"          
## [36466] "last"             "isengard"         "looked"          
## [36469] "like"             "huge"             "flat"            
## [36472] "saucepan"         "steaming"         "bubbling"        
## [36475] "saw"              "cloud"            "smoke"           
## [36478] "steam"            "south"            "last"            
## [36481] "night"            "came"             "mouth"           
## [36484] "nan"              "curunír"          "said"            
## [36487] "aragorn"          "feared"           "saruman"         
## [36490] "brewing"          "new"              "devilry"         
## [36493] "us"               "said"             "pippin"          
## [36496] "probably"         "choking"          "laughing"        
## [36499] "morning"          "yesterday"        "morning"         
## [36502] "water"            "sunk"             "holes"           
## [36505] "dense"            "fog"              "took"            
## [36508] "refuge"           "guardroom"        "rather"          
## [36511] "fright"           "lake"             "began"           
## [36514] "overflow"         "pour"             "old"             
## [36517] "tunnel"           "water"            "rapidly"         
## [36520] "rising"           "steps"            "thought"         
## [36523] "going"            "get"              "caught"          
## [36526] "like"             "orcs"             "hole"            
## [36529] "found"            "winding"          "stair"           
## [36532] "back"             "store"            "room"            
## [36535] "brought"          "us"               "top"             
## [36538] "arch"             "squeeze"          "get"             
## [36541] "passages"         "cracked"          "half"            
## [36544] "blocked"          "fallen"           "stone"           
## [36547] "near"             "top"              "sat"             
## [36550] "high"             "floods"           "watched"         
## [36553] "drowning"         "isengard"         "ents"            
## [36556] "kept"             "pouring"          "water"           
## [36559] "till"             "fires"            "quenched"        
## [36562] "every"            "cave"             "filled"          
## [36565] "fogs"             "slowly"           "gathered"        
## [36568] "together"         "steamed"          "huge"            
## [36571] "umbrella"         "cloud"            "must"            
## [36574] "mile"             "high"             "evening"         
## [36577] "great"            "rainbow"          "eastern"         
## [36580] "hills"            "sunset"           "blotted"         
## [36583] "thick"            "drizzle"          "mountain"        
## [36586] "sides"            "went"             "quiet"           
## [36589] "wolves"           "howled"           "mournfully"      
## [36592] "far"              "away"             "ents"            
## [36595] "stopped"          "inflow"           "night"           
## [36598] "sent"             "isen"             "back"            
## [36601] "old"              "course"           "end"             
## [36604] "since"            "water"            "sinking"         
## [36607] "must"             "outlets"          "somewhere"       
## [36610] "caves"            "underneath"       "think"           
## [36613] "saruman"          "peeps"            "windows"         
## [36616] "must"             "look"             "untidy"          
## [36619] "dreary"           "mess"             "felt"            
## [36622] "lonely"           "even"             "visible"         
## [36625] "ent"              "talk"             "ruin"            
## [36628] "news"             "spent"            "night"           
## [36631] "top"              "arch"             "cold"            
## [36634] "damp"             "sleep"            "feeling"         
## [36637] "anything"         "might"            "happen"          
## [36640] "minute"           "saruman"          "still"           
## [36643] "tower"            "noise"            "night"           
## [36646] "like"             "wind"             "coming"          
## [36649] "valley"           "think"            "ents"            
## [36652] "huorns"           "away"             "came"            
## [36655] "back"             "gone"             "now"             
## [36658] "dont"             "know"             "misty"           
## [36661] "moisty"           "morning"          "climbed"         
## [36664] "looked"           "round"            "nobody"          
## [36667] "tell"             "seems"            "almost"          
## [36670] "peaceful"         "now"              "turmoil"         
## [36673] "safer"            "somehow"          "since"           
## [36676] "gandalf"          "came"             "back"            
## [36679] "sleep"            "fell"             "silent"          
## [36682] "gimli"            "re"               "filled"          
## [36685] "pipe"             "one"              "thing"           
## [36688] "wonder"           "said"             "lit"             
## [36691] "flint"            "tinder"           "wormtongue"      
## [36694] "told"             "théoden"          "saruman"         
## [36697] "get"              "oh"               "yes"             
## [36700] "forgot"           "said"             "pippin"          
## [36703] "get"              "till"             "morning"         
## [36706] "just"             "lit"              "fire"            
## [36709] "breakfast"        "treebeard"        "appeared"        
## [36712] "heard"            "hooming"          "calling"         
## [36715] "names"            "outside"          "just"            
## [36718] "come"             "round"            "see"             
## [36721] "faring"           "lads"             "said"            
## [36724] "give"             "news"             "huorns"          
## [36727] "come"             "back"             "alls"            
## [36730] "well"             "aye"              "well"            
## [36733] "indeed"           "laughed"          "slapped"         
## [36736] "thighs"           "orcs"             "isengard"        
## [36739] "axes"             "folk"             "coming"          
## [36742] "south"            "day"              "old"             
## [36745] "may"              "glad"             "see"             
## [36748] "hardly"           "said"             "heard"           
## [36751] "sound"            "hoofs"            "road"            
## [36754] "rushed"           "gates"            "stood"           
## [36757] "stared"           "half"             "expecting"       
## [36760] "see"              "strider"          "gandalf"         
## [36763] "come"             "riding"           "head"            
## [36766] "army"             "mist"             "rode"            
## [36769] "man"              "old"              "tired"           
## [36772] "horse"            "looked"           "queer"           
## [36775] "twisted"          "sort"             "creature"        
## [36778] "one"              "else"             "came"            
## [36781] "mist"             "suddenly"         "saw"             
## [36784] "ruin"             "wreckage"         "front"           
## [36787] "sat"              "gaped"            "face"            
## [36790] "went"             "almost"           "green"           
## [36793] "bewildered"       "seem"             "notice"          
## [36796] "us"               "first"            "gave"            
## [36799] "cry"              "tried"            "turn"            
## [36802] "horse"            "round"            "ride"            
## [36805] "treebeard"        "took"             "three"           
## [36808] "strides"          "put"              "long"            
## [36811] "arm"              "lifted"           "saddle"          
## [36814] "horse"            "bolted"           "terror"          
## [36817] "grovelled"        "ground"           "said"            
## [36820] "gríma"            "friend"           "counsellor"      
## [36823] "king"             "sent"             "important"       
## [36826] "messages"         "théoden"          "saruman"         
## [36829] "one"              "else"             "dare"            
## [36832] "ride"             "open"             "land"            
## [36835] "full"             "foul"             "orcs"            
## [36838] "said"             "sent"             "perilous"        
## [36841] "journey"          "hungry"           "weary"           
## [36844] "fled"             "far"              "north"           
## [36847] "way"              "pursued"          "wolves"          
## [36850] "caught"           "sidelong"         "looks"           
## [36853] "gave"             "treebeard"        "said"            
## [36856] "liar"             "treebeard"        "looked"          
## [36859] "long"             "slow"             "way"             
## [36862] "several"          "minutes"          "till"            
## [36865] "wretched"         "man"              "squirming"       
## [36868] "floor"            "last"             "said"            
## [36871] "ha"               "hm"               "expecting"       
## [36874] "master"           "wormtongue"       "man"             
## [36877] "started"          "name"             "gandalf"         
## [36880] "got"              "first"            "know"            
## [36883] "much"             "need"             "know"            
## [36886] "put"              "rats"             "one"             
## [36889] "trap"             "said"             "gandalf"         
## [36892] "master"           "isengard"         "now"             
## [36895] "saruman"          "locked"           "tower"           
## [36898] "can"              "go"               "give"            
## [36901] "messages"         "can"              "think"           
## [36904] "let"              "go"               "let"             
## [36907] "go"               "said"             "wormtongue"      
## [36910] "know"             "way"              "knew"            
## [36913] "way"              "dont"             "doubt"           
## [36916] "said"             "treebeard"        "things"          
## [36919] "changed"          "little"           "go"              
## [36922] "see"              "let"              "wormtongue"      
## [36925] "go"               "limped"           "arch"            
## [36928] "us"               "close"            "behind"          
## [36931] "came"             "inside"           "ring"            
## [36934] "see"              "floods"           "lay"             
## [36937] "orthanc"          "turned"           "us"              
## [36940] "let"              "go"               "away"            
## [36943] "whined"           "let"              "go"              
## [36946] "away"             "messages"         "useless"         
## [36949] "now"              "indeed"           "said"            
## [36952] "treebeard"        "two"              "choices"         
## [36955] "stay"             "gandalf"          "master"          
## [36958] "arrive"           "cross"            "water"           
## [36961] "man"              "shivered"         "mention"         
## [36964] "master"           "put"              "foot"            
## [36967] "water"            "drew"             "back"            
## [36970] "swim"             "said"             "water"           
## [36973] "deep"             "said"             "treebeard"       
## [36976] "dirty"            "harm"             "master"          
## [36979] "wormtongue"       "go"               "now"             
## [36982] "wretch"           "floundered"       "flood"           
## [36985] "rose"             "nearly"           "neck"            
## [36988] "got"              "far"              "away"            
## [36991] "see"              "last"             "saw"             
## [36994] "clinging"         "old"              "barrel"          
## [36997] "piece"            "wood"             "treebeard"       
## [37000] "waded"            "watched"          "progress"        
## [37003] "well"             "gone"             "said"            
## [37006] "returned"         "saw"              "crawling"        
## [37009] "steps"            "like"             "draggled"        
## [37012] "rat"              "someone"          "tower"           
## [37015] "still"            "hand"             "came"            
## [37018] "pulled"           "hope"             "welcome"         
## [37021] "liking"           "now"              "must"            
## [37024] "go"               "wash"             "clean"           
## [37027] "slime"            "ill"              "away"            
## [37030] "north"            "side"             "anyone"          
## [37033] "wants"            "see"              "clean"           
## [37036] "water"            "fit"              "ent"             
## [37039] "drink"            "bathe"            "ask"             
## [37042] "two"              "lads"             "keep"            
## [37045] "watch"            "gate"             "folk"            
## [37048] "coming"           "therell"          "lord"            
## [37051] "fields"           "rohan"            "mark"            
## [37054] "must"             "welcome"          "well"            
## [37057] "know"             "men"              "fought"          
## [37060] "great"            "fight"            "orcs"            
## [37063] "maybe"            "know"             "right"           
## [37066] "fashion"          "mens"             "words"           
## [37069] "lord"             "better"           "ents"            
## [37072] "many"             "lords"            "green"           
## [37075] "fields"           "time"             "never"           
## [37078] "learned"          "speech"           "names"           
## [37081] "wanting"          "man"              "food"            
## [37084] "know"             "guess"            "find"            
## [37087] "think"            "fit"              "king"            
## [37090] "eat"              "can"              "end"             
## [37093] "story"            "though"           "like"            
## [37096] "know"             "wormtongue"       "really"          
## [37099] "kings"            "counsellor"       "said"            
## [37102] "aragorn"          "also"             "sarumans"        
## [37105] "spy"              "servant"          "rohan"           
## [37108] "fate"             "kinder"           "deserves"        
## [37111] "sight"            "ruin"             "thought"         
## [37114] "strong"           "magnificent"      "must"            
## [37117] "almost"           "punishment"       "enough"          
## [37120] "fear"             "worse"            "awaits"          
## [37123] "yes"              "dont"             "suppose"         
## [37126] "treebeard"        "sent"             "orthanc"         
## [37129] "kindness"         "said"             "merry"           
## [37132] "seemed"           "rather"           "grimly"          
## [37135] "delighted"        "business"         "laughing"        
## [37138] "went"             "get"              "bathe"           
## [37141] "drink"            "spent"            "busy"            
## [37144] "time"             "searching"        "flotsam"         
## [37147] "rummaging"        "found"            "two"             
## [37150] "three"            "store"            "rooms"           
## [37153] "different"        "places"           "nearby"          
## [37156] "flood"            "level"            "treebeard"       
## [37159] "sent"             "ents"             "carried"         
## [37162] "great"            "deal"             "stuff"           
## [37165] "want"             "man"              "food"            
## [37168] "twenty"           "five"             "ents"            
## [37171] "said"             "can"              "see"             
## [37174] "somebody"         "counted"          "company"         
## [37177] "carefully"        "arrived"          "three"           
## [37180] "evidently"        "meant"            "go"              
## [37183] "great"            "people"           "fared"           
## [37186] "better"           "kept"             "good"            
## [37189] "sent"             "promise"          "better"          
## [37192] "sent"             "drink"            "drink"           
## [37195] "said"             "ents"             "water"           
## [37198] "isen"             "said"             "good"            
## [37201] "enough"           "ents"             "men"             
## [37204] "hope"             "ents"             "may"             
## [37207] "found"            "time"             "brew"            
## [37210] "draughts"         "mountain"         "springs"         
## [37213] "shall"            "see"              "gandalfs"        
## [37216] "beard"            "curling"          "returns"         
## [37219] "ents"             "gone"             "felt"            
## [37222] "tired"            "hungry"           "grumble"         
## [37225] "labours"          "well"             "rewarded"        
## [37228] "search"           "man"              "food"            
## [37231] "pippin"           "discovered"       "prize"           
## [37234] "flotsam"          "hornblower"       "barrels"         
## [37237] "pipe"             "weed"             "better"          
## [37240] "food"             "said"             "pippin"          
## [37243] "situation"        "arose"            "understand"      
## [37246] "perfectly"        "now"              "said"            
## [37249] "gimli"            "except"           "one"             
## [37252] "thing"            "said"             "aragorn"         
## [37255] "leaf"             "southfarthing"    "isengard"        
## [37258] "consider"         "curious"          "find"            
## [37261] "never"            "isengard"         "journeyed"       
## [37264] "land"             "know"             "well"            
## [37267] "empty"            "countries"        "lie"             
## [37270] "rohan"            "shire"            "neither"         
## [37273] "goods"            "folk"             "passed"          
## [37276] "way"              "many"             "long"            
## [37279] "year"             "openly"           "saruman"         
## [37282] "secret"           "dealings"         "someone"         
## [37285] "shire"            "guess"            "wormtongues"     
## [37288] "may"              "found"            "houses"          
## [37291] "king"             "théodens"         "date"            
## [37294] "barrels"          "yes"              "said"            
## [37297] "pippin"           "crop"             "last"            
## [37300] "years"            "year"             "course"          
## [37303] "now"              "good"             "year"            
## [37306] "ah"               "well"             "whatever"        
## [37309] "evil"             "afoot"            "now"             
## [37312] "hope"             "else"             "beyond"          
## [37315] "reach"            "present"          "said"            
## [37318] "aragorn"          "yet"              "think"           
## [37321] "shall"            "mention"          "gandalf"         
## [37324] "small"            "matter"           "though"          
## [37327] "may"              "seem"             "among"           
## [37330] "great"            "affairs"          "wonder"          
## [37333] "said"             "merry"            "afternoon"       
## [37336] "getting"          "let"              "us"              
## [37339] "go"               "look"             "round"           
## [37342] "can"              "enter"            "isengard"        
## [37345] "now"              "rate"             "strider"         
## [37348] "want"             "cheerful"         "sight"           
## [37351] "chapter"          "voice"            "saruman"         
## [37354] "passed"           "ruined"           "tunnel"          
## [37357] "stood"            "upon"             "heap"            
## [37360] "stones"           "gazing"           "dark"            
## [37363] "rock"             "orthanc"          "many"            
## [37366] "windows"          "menace"           "still"           
## [37369] "desolation"       "lay"              "waters"          
## [37372] "now"              "nearly"           "subsided"        
## [37375] "gloomy"           "pools"            "remained"        
## [37378] "covered"          "scum"             "wreckage"        
## [37381] "wide"             "circle"           "bare"            
## [37384] "wilderness"       "slime"            "tumbled"         
## [37387] "rock"             "pitted"           "blackened"       
## [37390] "holes"            "dotted"           "posts"           
## [37393] "pillars"          "leaning"          "drunkenly"       
## [37396] "way"              "rim"              "shattered"       
## [37399] "bowl"             "lay"              "vast"            
## [37402] "mounds"           "slopes"           "like"            
## [37405] "shingles"         "cast"             "great"           
## [37408] "storm"            "beyond"           "green"           
## [37411] "tangled"          "valley"           "ran"             
## [37414] "long"             "ravine"           "dark"            
## [37417] "arms"             "mountains"        "across"          
## [37420] "waste"            "saw"              "riders"          
## [37423] "picking"          "way"              "coming"          
## [37426] "north"            "side"             "already"         
## [37429] "drawing"          "near"             "orthanc"         
## [37432] "gandalf"          "théoden"          "men"             
## [37435] "said"             "legolas"          "let"             
## [37438] "us"               "go"               "meet"            
## [37441] "walk"             "warily"           "said"            
## [37444] "merry"            "loose"            "slabs"           
## [37447] "may"              "tilt"             "throw"           
## [37450] "pit"              "dont"             "take"            
## [37453] "care"             "followed"         "left"            
## [37456] "road"             "gates"            "orthanc"         
## [37459] "going"            "slowly"           "flag"            
## [37462] "stones"           "cracked"          "slimed"          
## [37465] "riders"           "seeing"           "approach"        
## [37468] "halted"           "shadow"           "rock"            
## [37471] "waited"           "gandalf"          "rode"            
## [37474] "forward"          "meet"             "well"            
## [37477] "treebeard"        "interesting"      "discussions"     
## [37480] "made"             "plans"            "said"            
## [37483] "much"             "needed"           "rest"            
## [37486] "now"              "must"             "going"           
## [37489] "hope"             "companions"       "rested"          
## [37492] "refreshed"        "said"             "merry"           
## [37495] "discussions"      "began"            "ended"           
## [37498] "smoke"            "still"            "feel"            
## [37501] "less"             "ill"              "disposed"        
## [37504] "towards"          "saruman"          "indeed"          
## [37507] "said"             "gandalf"          "well"            
## [37510] "now"              "last"             "task"            
## [37513] "go"               "must"             "pay"             
## [37516] "saruman"          "farewell"         "visit"           
## [37519] "dangerous"        "probably"         "useless"         
## [37522] "must"             "done"             "wish"            
## [37525] "may"              "come"             "beware"          
## [37528] "jest"             "time"             "come"            
## [37531] "said"             "gimli"            "wish"            
## [37534] "see"              "learn"            "really"          
## [37537] "looks"            "like"             "learn"           
## [37540] "master"           "dwarf"            "said"            
## [37543] "gandalf"          "saruman"          "look"            
## [37546] "like"             "eyes"             "suited"          
## [37549] "purpose"          "yet"              "wise"            
## [37552] "enough"           "detect"           "counterfeits"    
## [37555] "well"             "shall"            "see"             
## [37558] "perhaps"          "may"              "shy"             
## [37561] "showing"          "many"             "different"       
## [37564] "eyes"             "together"         "ordered"         
## [37567] "ents"             "remove"           "sight"           
## [37570] "perhaps"          "shall"            "persuade"        
## [37573] "come"             "whats"            "danger"          
## [37576] "asked"            "pippin"           "shoot"           
## [37579] "us"               "pour"             "fire"            
## [37582] "windows"          "can"              "put"             
## [37585] "spell"            "us"               "distance"        
## [37588] "last"             "likely"           "ride"            
## [37591] "door"             "light"            "heart"           
## [37594] "said"             "gandalf"          "knowing"         
## [37597] "can"              "may"              "choose"          
## [37600] "try"              "wild"             "beast"           
## [37603] "cornered"         "safe"             "approach"        
## [37606] "saruman"          "powers"           "guess"           
## [37609] "beware"           "voice"            "came"            
## [37612] "now"              "foot"             "orthanc"         
## [37615] "black"            "rock"             "gleamed"         
## [37618] "wet"              "many"             "faces"           
## [37621] "stone"            "sharp"            "edges"           
## [37624] "though"           "newly"            "chiselled"       
## [37627] "scorings"         "small"            "flake"           
## [37630] "like"             "splinters"        "near"            
## [37633] "base"             "marks"            "bore"            
## [37636] "fury"             "ents"             "eastern"         
## [37639] "side"             "angle"            "two"             
## [37642] "piers"            "great"            "door"            
## [37645] "high"             "ground"           "shuttered"       
## [37648] "window"           "opening"          "upon"            
## [37651] "balcony"          "hedged"           "iron"            
## [37654] "bars"             "threshold"        "door"            
## [37657] "mounted"          "flight"           "twenty"          
## [37660] "seven"            "broad"            "stairs"          
## [37663] "hewn"             "unknown"          "art"             
## [37666] "black"            "stone"            "entrance"        
## [37669] "tower"            "many"             "tall"            
## [37672] "windows"          "cut"              "deep"            
## [37675] "embrasures"       "climbing"         "walls"           
## [37678] "far"              "peered"           "like"            
## [37681] "little"           "eyes"             "sheer"           
## [37684] "faces"            "horns"            "foot"            
## [37687] "stairs"           "gandalf"          "king"            
## [37690] "dismounted"       "go"               "said"            
## [37693] "gandalf"          "orthanc"          "know"            
## [37696] "peril"            "go"               "said"            
## [37699] "king"             "old"              "fear"            
## [37702] "peril"            "wish"             "speak"           
## [37705] "enemy"            "done"             "much"            
## [37708] "wrong"            "éomer"            "shall"           
## [37711] "come"             "see"              "aged"            
## [37714] "feet"             "falter"           "said"            
## [37717] "gandalf"          "aragorn"          "shall"           
## [37720] "come"             "let"              "others"          
## [37723] "await"            "us"               "foot"            
## [37726] "stairs"           "hear"             "see"             
## [37729] "enough"           "anything"         "hear"            
## [37732] "see"              "nay"              "said"            
## [37735] "gimli"            "legolas"          "wish"            
## [37738] "closer"           "view"             "alone"           
## [37741] "represent"        "kindred"          "also"            
## [37744] "come"             "behind"           "come"            
## [37747] "said"             "gandalf"          "climbed"         
## [37750] "steps"            "théoden"          "went"            
## [37753] "beside"           "riders"           "rohan"           
## [37756] "sat"              "uneasily"         "upon"            
## [37759] "horses"           "either"           "side"            
## [37762] "stair"            "looked"           "darkly"          
## [37765] "great"            "tower"            "fearing"         
## [37768] "might"            "befall"           "lord"            
## [37771] "merry"            "pippin"           "sat"             
## [37774] "bottom"           "step"             "feeling"         
## [37777] "unimportant"      "unsafe"           "half"            
## [37780] "sticky"           "mile"             "gate"            
## [37783] "muttered"         "pippin"           "wish"            
## [37786] "slip"             "back"             "guardroom"       
## [37789] "unnoticed"        "come"             "wanted"          
## [37792] "gandalf"          "stood"            "door"            
## [37795] "orthanc"          "beat"             "staff"           
## [37798] "rang"             "hollow"           "sound"           
## [37801] "saruman"          "saruman"          "cried"           
## [37804] "loud"             "commanding"       "voice"           
## [37807] "saruman"          "come"             "forth"           
## [37810] "time"             "answer"           "last"            
## [37813] "window"           "door"             "unbarred"        
## [37816] "hut"              "figure"           "seen"            
## [37819] "dark"             "opening"          "said"            
## [37822] "voice"            "wish"             "théoden"         
## [37825] "started"          "know"             "voice"           
## [37828] "said"             "curse"            "day"             
## [37831] "first"            "listened"         "go"              
## [37834] "fetch"            "saruman"          "since"           
## [37837] "become"           "footman"          "gríma"           
## [37840] "wormtongue"       "said"             "gandalf"         
## [37843] "waste"            "time"             "window"          
## [37846] "closed"           "waited"           "suddenly"        
## [37849] "another"          "voice"            "spoke"           
## [37852] "low"              "melodious"        "sound"           
## [37855] "enchantment"      "listened"         "unwarily"        
## [37858] "voice"            "seldom"           "report"          
## [37861] "words"            "heard"            "wondered"        
## [37864] "little"           "power"            "remained"        
## [37867] "mostly"           "remembered"       "delight"         
## [37870] "hear"             "voice"            "speaking"        
## [37873] "said"             "seemed"           "wise"            
## [37876] "reasonable"       "desire"           "awoke"           
## [37879] "swift"            "agreement"        "seem"            
## [37882] "wise"             "others"           "spoke"           
## [37885] "seemed"           "harsh"            "uncouth"         
## [37888] "contrast"         "gainsaid"         "voice"           
## [37891] "anger"            "kindled"          "hearts"          
## [37894] "spell"            "fur"              "spell"           
## [37897] "lasted"           "voice"            "spoke"           
## [37900] "spake"            "another"          "smiled"          
## [37903] "men"              "see"              "jugglers"        
## [37906] "trick"            "others"           "gape"            
## [37909] "many"             "sound"            "voice"           
## [37912] "alone"            "enough"           "hold"            
## [37915] "enthralled"       "conquered"        "spell"           
## [37918] "endured"          "far"              "away"            
## [37921] "ever"             "heard"            "soft"            
## [37924] "voice"            "whispering"       "urging"          
## [37927] "none"             "unmoved"          "none"            
## [37930] "rejected"         "pleas"            "commands"        
## [37933] "without"          "effort"           "mind"            
## [37936] "long"             "master"           "control"         
## [37939] "well"             "said"             "now"             
## [37942] "gentle"           "question"         "must"            
## [37945] "disturb"          "rest"             "give"            
## [37948] "peace"            "night"            "day"             
## [37951] "tone"             "kindly"           "heart"           
## [37954] "aggrieved"        "injuries"         "undeserved"      
## [37957] "looked"           "astonished"       "heard"           
## [37960] "sound"            "coming"           "saw"             
## [37963] "figure"           "standing"         "rail"            
## [37966] "looking"          "upon"             "old"             
## [37969] "man"              "swathed"          "great"           
## [37972] "cloak"            "colour"           "easy"            
## [37975] "tell"             "changed"          "moved"           
## [37978] "eyes"             "stirred"          "face"            
## [37981] "long"             "high"             "forehead"        
## [37984] "deep"             "darkling"         "eyes"            
## [37987] "hard"             "fathom"           "though"          
## [37990] "look"             "now"              "bore"            
## [37993] "grave"            "benevolent"       "little"          
## [37996] "weary"            "hair"             "beard"           
## [37999] "white"            "strands"          "black"           
## [38002] "still"            "showed"           "lips"            
## [38005] "ears"             "like"             "yet"             
## [38008] "unlike"           "muttered"         "gimli"           
## [38011] "come"             "now"              "said"            
## [38014] "soft"             "voice"            "two"             
## [38017] "least"            "know"             "name"            
## [38020] "gandalf"          "know"             "well"            
## [38023] "much"             "hope"             "seeks"           
## [38026] "help"             "counsel"          "théoden"         
## [38029] "lord"             "mark"             "rohan"           
## [38032] "declared"         "noble"            "devices"         
## [38035] "still"            "fair"             "countenance"     
## [38038] "house"            "eorl"             "worthy"          
## [38041] "son"              "thengel"          "thrice"          
## [38044] "renowned"         "come"             "friend"          
## [38047] "much"             "desired"          "see"             
## [38050] "mightiest"        "king"             "western"         
## [38053] "lands"            "especially"       "latter"          
## [38056] "years"            "save"             "unwise"          
## [38059] "evil"             "counsels"         "beset"           
## [38062] "yet"              "late"             "despite"         
## [38065] "injuries"         "done"             "men"             
## [38068] "rohan"            "alas"             "part"            
## [38071] "still"            "save"             "deliver"         
## [38074] "ruin"             "draws"            "nigh"            
## [38077] "inevitably"       "ride"             "upon"            
## [38080] "road"             "taken"            "indeed"          
## [38083] "alone"            "can"              "aid"             
## [38086] "now"              "théoden"          "opened"          
## [38089] "mouth"            "speak"            "said"            
## [38092] "nothing"          "looked"           "face"            
## [38095] "saruman"          "dark"             "solemn"          
## [38098] "eyes"             "bent"             "upon"            
## [38101] "gandalf"          "side"             "seemed"          
## [38104] "hesitate"         "gandalf"          "made"            
## [38107] "sign"             "stood"            "silent"          
## [38110] "stone"            "one"              "waiting"         
## [38113] "patiently"        "call"             "yet"             
## [38116] "come"             "riders"           "stirred"         
## [38119] "first"            "murmuring"        "approval"        
## [38122] "words"            "saruman"          "silent"          
## [38125] "men"              "spell"            "bound"           
## [38128] "seemed"           "gandalf"          "never"           
## [38131] "spoken"           "fair"             "fittingly"       
## [38134] "lord"             "rough"            "proud"           
## [38137] "now"              "seemed"           "dealings"        
## [38140] "théoden"          "hearts"           "crept"           
## [38143] "shadow"           "fear"             "great"           
## [38146] "danger"           "end"              "mark"            
## [38149] "darkness"         "gandalf"          "driving"         
## [38152] "saruman"          "stood"            "beside"          
## [38155] "door"             "escape"           "holding"         
## [38158] "half"             "open"             "ray"             
## [38161] "light"            "came"             "heavy"           
## [38164] "silence"          "gimli"            "dwarf"           
## [38167] "broke"            "suddenly"         "words"           
## [38170] "wizard"           "stand"            "heads"           
## [38173] "growled"          "gripping"         "handle"          
## [38176] "axe"              "language"         "orthanc"         
## [38179] "help"             "means"            "ruin"            
## [38182] "saving"           "means"            "slaying"         
## [38185] "plain"            "come"             "beg"             
## [38188] "peace"            "said"             "saruman"         
## [38191] "fleeting"         "moment"           "voice"           
## [38194] "less"             "suave"            "light"           
## [38197] "flickered"        "eyes"             "gone"            
## [38200] "speak"            "yet"              "gimli"           
## [38203] "glóins"           "son"              "said"            
## [38206] "far"              "away"             "home"            
## [38209] "small"            "concern"          "troubles"        
## [38212] "land"             "design"           "became"          
## [38215] "embroiled"        "blame"            "part"            
## [38218] "played"           "valiant"          "one"             
## [38221] "doubt"            "pray"             "allow"           
## [38224] "first"            "speak"            "king"            
## [38227] "rohan"            "neighbour"        "friend"          
## [38230] "say"              "théoden"          "king"            
## [38233] "peace"            "aid"              "knowledge"       
## [38236] "founded"          "long"             "years"           
## [38239] "can"              "bring"            "shall"           
## [38242] "make"             "counsels"         "together"        
## [38245] "evil"             "days"             "repair"          
## [38248] "injuries"         "good"             "estates"         
## [38251] "shall"            "come"             "fairer"          
## [38254] "flower"           "ever"             "still"           
## [38257] "théoden"          "answer"           "whether"         
## [38260] "strove"           "anger"            "doubt"           
## [38263] "none"             "say"              "éomer"           
## [38266] "spoke"            "lord"             "hear"            
## [38269] "said"             "now"              "feel"            
## [38272] "peril"            "warned"           "ridden"          
## [38275] "forth"            "victory"          "stand"           
## [38278] "last"             "amazed"           "old"             
## [38281] "liar"             "honey"            "forked"          
## [38284] "tongue"           "trapped"          "wolf"            
## [38287] "speak"            "hounds"           "aid"             
## [38290] "can"              "give"             "forsooth"        
## [38293] "desires"          "escape"           "plight"          
## [38296] "parley"           "dealer"           "treachery"       
## [38299] "murder"           "remember"         "théodred"        
## [38302] "fords"            "grave"            "háma"            
## [38305] "helms"            "deep"             "speak"           
## [38308] "poisoned"         "tongues"          "shall"           
## [38311] "say"              "young"            "serpent"         
## [38314] "said"             "saruman"          "flash"           
## [38317] "anger"            "now"              "plain"           
## [38320] "see"              "come"             "éomer"           
## [38323] "éomunds"          "son"              "went"            
## [38326] "soft"             "voice"            "every"           
## [38329] "man"              "part"             "valour"          
## [38332] "arms"             "win"              "high"            
## [38335] "honour"           "thereby"          "slay"            
## [38338] "lord"             "names"            "enemies"         
## [38341] "content"          "meddle"           "policies"        
## [38344] "understand"       "maybe"            "become"          
## [38347] "king"             "find"             "must"            
## [38350] "choose"           "friends"          "care"            
## [38353] "friendship"       "saruman"          "power"           
## [38356] "orthanc"          "lightly"          "thrown"          
## [38359] "aside"            "whatever"         "grievances"      
## [38362] "real"             "fancied"          "may"             
## [38365] "lie"              "behind"           "won"             
## [38368] "battle"           "war"              "help"            
## [38371] "count"            "may"              "find"            
## [38374] "shadow"           "wood"             "door"            
## [38377] "next"             "wayward"          "senseless"       
## [38380] "love"             "men"              "lord"            
## [38383] "rohan"            "called"           "murderer"        
## [38386] "valiant"          "men"              "fallen"          
## [38389] "battle"           "go"               "war"             
## [38392] "needlessly"       "desire"           "men"             
## [38395] "slain"            "murderer"         "account"         
## [38398] "house"            "eorl"             "stained"         
## [38401] "murder"           "fought"           "many"            
## [38404] "wars"             "assailed"         "many"            
## [38407] "defied"           "yet"              "afterwards"      
## [38410] "made"             "peace"            "none"            
## [38413] "worse"            "politic"          "say"             
## [38416] "théoden"          "king"             "shall"           
## [38419] "peace"            "friendship"       "command"         
## [38422] "peace"            "said"             "théoden"         
## [38425] "last"             "thickly"          "effort"          
## [38428] "several"          "riders"           "cried"           
## [38431] "gladly"           "théoden"          "held"            
## [38434] "hand"             "yes"              "peace"           
## [38437] "said"             "now"              "clear"           
## [38440] "voice"            "peace"            "works"           
## [38443] "perished"         "works"            "dark"            
## [38446] "master"           "deliver"          "us"              
## [38449] "liar"             "saruman"          "corrupter"       
## [38452] "mens"             "hearts"           "hold"            
## [38455] "hand"             "perceive"         "finger"          
## [38458] "claw"             "mordor"           "cruel"           
## [38461] "cold"             "even"             "war"             
## [38464] "just"             "ten"              "times"           
## [38467] "wise"             "right"            "rule"            
## [38470] "mine"             "profit"           "desired"         
## [38473] "even"             "say"              "torches"         
## [38476] "westfold"         "children"         "lie"             
## [38479] "dead"             "hewed"            "hámas"           
## [38482] "body"             "gates"            "hornburg"        
## [38485] "dead"             "hang"             "gibbet"          
## [38488] "window"           "sport"            "crows"           
## [38491] "peace"            "orthanc"          "much"            
## [38494] "house"            "eorl"             "lesser"          
## [38497] "son"              "great"            "sires"           
## [38500] "need"             "lick"             "fingers"         
## [38503] "turn"             "elsewhither"      "fear"            
## [38506] "voice"            "lost"             "charm"           
## [38509] "riders"           "gazed"            "théoden"         
## [38512] "like"             "men"              "startled"        
## [38515] "dream"            "harsh"            "old"             
## [38518] "ravens"           "masters"          "voice"           
## [38521] "sounded"          "ears"             "music"           
## [38524] "saruman"          "saruman"          "beside"          
## [38527] "wrath"            "leaned"           "rail"            
## [38530] "smite"            "king"             "staff"           
## [38533] "suddenly"         "seemed"           "saw"             
## [38536] "snake"            "coiling"          "strike"          
## [38539] "gibbets"          "crows"            "hissed"          
## [38542] "shuddered"        "hideous"          "change"          
## [38545] "dotard"           "house"            "eorl"            
## [38548] "thatched"         "barn"             "brigands"        
## [38551] "drink"            "reek"             "brats"           
## [38554] "roll"             "floor"            "among"           
## [38557] "dogs"             "long"             "escaped"         
## [38560] "gibbet"           "noose"            "comes"           
## [38563] "slow"             "drawing"          "tight"           
## [38566] "hard"             "end"              "hang"            
## [38569] "now"              "voice"            "changed"         
## [38572] "slowly"           "mastered"         "know"            
## [38575] "patience"         "speak"            "need"            
## [38578] "little"           "band"             "gallopers"       
## [38581] "swift"            "fly"              "advance"         
## [38584] "théoden"          "horsemaster"      "long"            
## [38587] "ago"              "offered"          "state"           
## [38590] "beyond"           "merit"            "wit"             
## [38593] "offered"          "mislead"          "may"             
## [38596] "clearly"          "see"              "choice"          
## [38599] "roads"            "give"             "brag"            
## [38602] "abuse"            "go"               "back"            
## [38605] "huts"             "gandalf"          "least"           
## [38608] "grieved"          "feeling"          "shame"           
## [38611] "comes"            "can"              "endure"          
## [38614] "company"          "proud"            "gandalf"         
## [38617] "without"          "reason"           "noble"           
## [38620] "mind"             "eyes"             "look"            
## [38623] "deep"             "far"              "even"            
## [38626] "now"              "listen"           "counsel"         
## [38629] "gandalf"          "stirred"          "looked"          
## [38632] "say"              "say"              "last"            
## [38635] "meeting"          "asked"            "perhaps"         
## [38638] "things"           "unsay"            "saruman"         
## [38641] "paused"           "unsay"            "mused"           
## [38644] "puzzled"          "unsay"            "endeavoured"     
## [38647] "advise"           "good"             "scarcely"        
## [38650] "listened"         "proud"            "love"            
## [38653] "advice"           "indeed"           "store"           
## [38656] "wisdom"           "occasion"         "erred"           
## [38659] "think"            "misconstruing"    "intentions"      
## [38662] "wilfully"         "fear"             "eagerness"       
## [38665] "persuade"         "lost"             "patience"        
## [38668] "indeed"           "regret"           "bore"            
## [38671] "ill"              "even"             "now"             
## [38674] "bear"             "none"             "though"          
## [38677] "return"           "company"          "violent"         
## [38680] "ignorant"         "members"          "high"            
## [38683] "ancient"          "order"            "excellent"       
## [38686] "middle"           "earth"            "friendship"      
## [38689] "profit"           "us"               "alike"           
## [38692] "much"             "still"            "accomplish"      
## [38695] "together"         "heal"             "disorders"       
## [38698] "world"            "let"              "us"              
## [38701] "understand"       "one"              "another"         
## [38704] "dismiss"          "thought"          "lesser"          
## [38707] "folk"             "let"              "wait"            
## [38710] "decisions"        "common"           "good"            
## [38713] "willing"          "redress"          "past"            
## [38716] "receive"          "consult"          "come"            
## [38719] "great"            "power"            "saruman"         
## [38722] "exerted"          "last"             "effort"          
## [38725] "none"             "stood"            "within"          
## [38728] "hearing"          "unmoved"          "now"             
## [38731] "spell"            "wholly"           "different"       
## [38734] "heard"            "gentle"           "remonstrance"    
## [38737] "kindly"           "king"             "erring"          
## [38740] "much"             "loved"            "minister"        
## [38743] "shut"             "listening"        "door"            
## [38746] "words"            "meant"            "ill"             
## [38749] "mannered"         "children"         "stupid"          
## [38752] "servants"         "overhearing"      "elusive"         
## [38755] "discourse"        "elders"           "wondering"       
## [38758] "affect"           "lot"              "loftier"         
## [38761] "mould"            "two"              "made"            
## [38764] "reverend"         "wise"             "inevitable"      
## [38767] "make"             "alliance"         "gandalf"         
## [38770] "ascend"           "tower"            "discuss"         
## [38773] "deep"             "things"           "beyond"          
## [38776] "comprehension"    "high"             "chambers"        
## [38779] "orthanc"          "door"             "closed"          
## [38782] "left"             "outside"          "dismissed"       
## [38785] "await"            "allotted"         "work"            
## [38788] "punishment"       "even"             "mind"            
## [38791] "théoden"          "thought"          "took"            
## [38794] "shape"            "like"             "shadow"          
## [38797] "doubt"            "betray"           "us"              
## [38800] "go"               "shall"            "lost"            
## [38803] "gandalf"          "laughed"          "fantasy"         
## [38806] "vanished"         "like"             "puff"            
## [38809] "smoke"            "saruman"          "saruman"         
## [38812] "said"             "gandalf"          "still"           
## [38815] "laughing"         "saruman"          "missed"          
## [38818] "path"             "life"             "kings"           
## [38821] "jester"           "earned"           "bread"           
## [38824] "stripes"          "mimicking"        "counsellors"     
## [38827] "ah"               "paused"           "getting"         
## [38830] "better"           "mirth"            "understand"      
## [38833] "one"              "another"          "fear"            
## [38836] "beyond"           "comprehension"    "saruman"         
## [38839] "understand"       "now"              "well"            
## [38842] "keep"             "clearer"          "memory"          
## [38845] "arguments"        "deeds"            "suppose"         
## [38848] "last"             "visited"          "jailor"          
## [38851] "mordor"           "sent"             "nay"             
## [38854] "guest"            "escaped"          "roof"            
## [38857] "think"            "twice"            "comes"           
## [38860] "back"             "door"             "nay"             
## [38863] "think"            "come"             "listen"          
## [38866] "saruman"          "last"             "time"            
## [38869] "come"             "isengard"         "proved"          
## [38872] "less"             "strong"           "hope"            
## [38875] "fancy"            "made"             "may"             
## [38878] "things"           "still"            "trust"           
## [38881] "well"             "leave"            "turn"            
## [38884] "new"              "things"           "perhaps"         
## [38887] "think"            "well"             "saruman"         
## [38890] "come"             "shadow"           "passed"          
## [38893] "sarumans"         "face"             "went"            
## [38896] "deathly"          "white"            "conceal"         
## [38899] "saw"              "mask"             "anguish"         
## [38902] "mind"             "doubt"            "loathing"        
## [38905] "stay"             "dreading"         "leave"           
## [38908] "refuge"           "second"           "hesitated"       
## [38911] "one"              "breathed"         "spoke"           
## [38914] "voice"            "shrill"           "cold"            
## [38917] "pride"            "hate"             "conquering"      
## [38920] "come"             "mocked"           "unarmed"         
## [38923] "man"              "come"             "speak"           
## [38926] "robbers"          "doors"            "can"             
## [38929] "hear"             "well"             "enough"          
## [38932] "fool"             "trust"            "gandalf"         
## [38935] "stand"            "openly"           "stairs"          
## [38938] "know"             "wild"             "wood"            
## [38941] "demons"           "lurking"          "command"         
## [38944] "treacherous"      "ever"             "distrustful"     
## [38947] "answered"         "gandalf"          "wearily"         
## [38950] "need"             "fear"             "skin"            
## [38953] "wish"             "kill"             "hurt"            
## [38956] "know"             "really"           "understood"      
## [38959] "power"            "protect"          "giving"          
## [38962] "last"             "chance"           "can"             
## [38965] "leave"            "orthanc"          "free"            
## [38968] "choose"           "sounds"           "well"            
## [38971] "sneered"          "saruman"          "much"            
## [38974] "manner"           "gandalf"          "grey"            
## [38977] "condescending"    "kind"             "doubt"           
## [38980] "find"             "orthanc"          "commodious"      
## [38983] "departure"        "convenient"       "wish"            
## [38986] "leave"            "mean"             "free"            
## [38989] "conditions"       "presume"          "reasons"         
## [38992] "leaving"          "can"              "see"             
## [38995] "windows"          "answered"         "gandalf"         
## [38998] "others"           "occur"            "thought"         
## [39001] "servants"         "destroyed"        "scattered"       
## [39004] "neighbours"       "made"             "enemies"         
## [39007] "cheated"          "new"              "master"          
## [39010] "tried"            "eye"              "turns"           
## [39013] "hither"           "red"              "eye"             
## [39016] "wrath"            "say"              "free"            
## [39019] "mean"             "free"             "free"            
## [39022] "bond"             "chain"            "command"         
## [39025] "go"               "even"             "even"            
## [39028] "mordor"           "saruman"          "desire"          
## [39031] "first"            "surrender"        "key"             
## [39034] "orthanc"          "staff"            "shall"           
## [39037] "pledges"          "conduct"          "returned"        
## [39040] "later"            "merit"            "sarumans"        
## [39043] "face"             "grew"             "livid"           
## [39046] "twisted"          "rage"             "red"             
## [39049] "light"            "kindled"          "eyes"            
## [39052] "laughed"          "wildly"           "later"           
## [39055] "cried"            "voice"            "rose"            
## [39058] "scream"           "later"            "yes"             
## [39061] "also"             "keys"             "barad"           
## [39064] "dûr"              "suppose"          "crowns"          
## [39067] "seven"            "kings"            "rods"            
## [39070] "five"             "wizards"          "purchased"       
## [39073] "pair"             "boots"            "many"            
## [39076] "sizes"            "larger"           "wear"            
## [39079] "now"              "modest"           "plan"            
## [39082] "hardly"           "one"              "help"            
## [39085] "needed"           "things"           "fool"            
## [39088] "wish"             "treat"            "chance"          
## [39091] "go"               "away"             "come"            
## [39094] "back"             "sober"            "leave"           
## [39097] "behind"           "cut"              "throats"         
## [39100] "small"            "rag"              "tag"             
## [39103] "dangle"           "tail"             "good"            
## [39106] "day"              "turned"           "left"            
## [39109] "balcony"          "come"             "back"            
## [39112] "saruman"          "said"             "gandalf"         
## [39115] "commanding"       "voice"            "amazement"       
## [39118] "others"           "saruman"          "turned"          
## [39121] "dragged"          "came"             "slowly"          
## [39124] "back"             "iron"             "rail"            
## [39127] "leaning"          "breathing"        "hard"            
## [39130] "face"             "lined"            "shrunken"        
## [39133] "hand"             "clutched"         "heavy"           
## [39136] "black"            "staff"            "like"            
## [39139] "claw"             "give"             "leave"           
## [39142] "go"               "said"             "gandalf"         
## [39145] "sternly"          "finished"         "become"          
## [39148] "fool"             "saruman"          "yet"             
## [39151] "pitiable"         "might"            "still"           
## [39154] "turned"           "away"             "folly"           
## [39157] "evil"             "service"          "choose"          
## [39160] "stay"             "gnaw"             "ends"            
## [39163] "old"              "plots"            "stay"            
## [39166] "warn"             "easily"           "come"            
## [39169] "unless"           "dark"             "hands"           
## [39172] "east"             "stretch"          "take"            
## [39175] "saruman"          "cried"            "voice"           
## [39178] "grew"             "power"            "authority"       
## [39181] "behold"           "gandalf"          "grey"            
## [39184] "betrayed"         "gandalf"          "white"           
## [39187] "returned"         "death"            "colour"          
## [39190] "now"              "cast"             "order"           
## [39193] "council"          "raised"           "hand"            
## [39196] "spoke"            "slowly"           "clear"           
## [39199] "cold"             "voice"            "saruman"         
## [39202] "staff"            "broken"           "crack"           
## [39205] "staff"            "split"            "asunder"         
## [39208] "sarumans"         "hand"             "head"            
## [39211] "fell"             "gandalfs"         "feet"            
## [39214] "go"               "said"             "gandalf"         
## [39217] "cry"              "saruman"          "fell"            
## [39220] "back"             "crawled"          "away"            
## [39223] "moment"           "heavy"            "shining"         
## [39226] "thing"            "came"             "hurtling"        
## [39229] "glanced"          "iron"             "rail"            
## [39232] "even"             "saruman"          "left"            
## [39235] "passing"          "close"            "gandalfs"        
## [39238] "head"             "smote"            "stair"           
## [39241] "stood"            "rail"             "rang"            
## [39244] "snapped"          "stair"            "cracked"         
## [39247] "splintered"       "glittering"       "sparks"          
## [39250] "ball"             "unharmed"         "rolled"          
## [39253] "steps"            "globe"            "crystal"         
## [39256] "dark"             "glowing"          "heart"           
## [39259] "fire"             "bounded"          "away"            
## [39262] "towards"          "pool"             "pippin"          
## [39265] "ran"              "picked"           "murderous"       
## [39268] "rogue"            "cried"            "éomer"           
## [39271] "gandalf"          "unmoved"          "thrown"          
## [39274] "saruman"          "said"             "even"            
## [39277] "bidding"          "think"            "came"            
## [39280] "window"           "far"              "parting"         
## [39283] "shot"             "master"           "wormtongue"      
## [39286] "fancy"            "ill"              "aimed"           
## [39289] "aim"              "poor"             "maybe"           
## [39292] "make"             "mind"             "hated"           
## [39295] "saruman"          "said"             "aragorn"         
## [39298] "may"              "said"             "gandalf"         
## [39301] "small"            "comfort"          "two"             
## [39304] "companionship"    "gnaw"             "one"             
## [39307] "another"          "words"            "punishment"      
## [39310] "just"             "wormtongue"       "ever"            
## [39313] "comes"            "orthanc"          "alive"           
## [39316] "deserves"         "lad"              "ill"             
## [39319] "take"             "ask"              "handle"          
## [39322] "cried"            "turning"          "sharply"         
## [39325] "seeing"           "pippin"           "coming"          
## [39328] "steps"            "slowly"           "bearing"         
## [39331] "great"            "weight"           "went"            
## [39334] "meet"             "hastily"          "took"            
## [39337] "dark"             "globe"            "hobbit"          
## [39340] "wrapping"         "folds"            "cloak"           
## [39343] "take"             "care"             "said"            
## [39346] "thing"            "guess"            "saruman"         
## [39349] "chosen"           "cast"             "away"            
## [39352] "may"              "things"           "cast"            
## [39355] "said"             "gimli"            "end"             
## [39358] "debate"           "let"              "us"              
## [39361] "go"               "stones"           "throw"           
## [39364] "least"            "end"              "said"            
## [39367] "gandalf"          "let"              "us"              
## [39370] "go"               "turned"           "backs"           
## [39373] "doors"            "orthanc"          "went"            
## [39376] "riders"           "hailed"           "king"            
## [39379] "joy"              "saluted"          "gandalf"         
## [39382] "spell"            "saruman"          "broken"          
## [39385] "seen"             "come"             "call"            
## [39388] "crawl"            "away"             "dismissed"       
## [39391] "well"             "done"             "said"            
## [39394] "gandalf"          "now"              "must"            
## [39397] "find"             "treebeard"        "tell"            
## [39400] "things"           "gone"             "guessed"         
## [39403] "surely"           "said"             "merry"           
## [39406] "likely"           "end"              "way"             
## [39409] "likely"           "answered"         "gandalf"         
## [39412] "though"           "came"             "balance"         
## [39415] "hair"             "reasons"          "trying"          
## [39418] "merciful"         "less"             "first"           
## [39421] "saruman"          "shown"            "power"           
## [39424] "voice"            "waning"           "tyrant"          
## [39427] "counsellor"       "plot"             "ripe"            
## [39430] "remains"          "longer"           "secret"          
## [39433] "yet"              "fell"             "trap"            
## [39436] "tried"            "deal"             "victims"         
## [39439] "piece"            "meal"             "others"          
## [39442] "listened"         "gave"             "last"            
## [39445] "choice"           "fair"             "one"             
## [39448] "renounce"         "mordor"           "private"         
## [39451] "schemes"          "make"             "amends"          
## [39454] "helping"          "us"               "need"            
## [39457] "knows"            "need"             "none"            
## [39460] "better"           "great"            "service"         
## [39463] "rendered"         "chosen"           "withhold"        
## [39466] "keep"             "power"            "orthanc"         
## [39469] "serve"            "command"          "lives"           
## [39472] "now"              "terror"           "shadow"          
## [39475] "mordor"           "yet"              "still"           
## [39478] "dreams"           "riding"           "storm"           
## [39481] "unhappy"          "fool"             "devoured"        
## [39484] "power"            "east"             "stretches"       
## [39487] "arms"             "isengard"         "destroy"         
## [39490] "orthanc"          "without"          "sauron"          
## [39493] "knows"            "can"              "sauron"          
## [39496] "conquer"          "asked"            "pippin"          
## [39499] "nothing"          "said"             "gandalf"         
## [39502] "nothing"          "wish"             "mastery"         
## [39505] "ill"              "become"           "say"             
## [39508] "grieve"           "much"             "good"            
## [39511] "now"              "festers"          "tower"           
## [39514] "still"            "us"               "things"          
## [39517] "gone"             "badly"            "strange"         
## [39520] "turns"            "fortune"          "often"           
## [39523] "hatred"           "hurt"             "guess"           
## [39526] "even"             "entered"          "found"           
## [39529] "treasures"        "orthanc"          "precious"        
## [39532] "thing"            "wormtongue"       "threw"           
## [39535] "us"               "shrill"           "shriek"          
## [39538] "suddenly"         "cut"              "came"            
## [39541] "open"             "window"           "high"            
## [39544] "seems"            "saruman"          "thinks"          
## [39547] "said"             "gandalf"          "let"             
## [39550] "us"               "leave"            "returned"        
## [39553] "now"              "ruins"            "gate"            
## [39556] "hardly"           "passed"           "arch"            
## [39559] "among"            "shadows"          "piled"           
## [39562] "stones"           "stood"            "treebeard"       
## [39565] "dozen"            "ents"             "came"            
## [39568] "striding"         "aragorn"          "gimli"           
## [39571] "legolas"          "gazed"            "wonder"          
## [39574] "three"            "companions"       "treebeard"       
## [39577] "said"             "gandalf"          "spoken"          
## [39580] "yet"              "seen"             "named"           
## [39583] "one"              "one"              "old"             
## [39586] "ent"              "looked"           "long"            
## [39589] "searchingly"      "spoke"            "turn"            
## [39592] "last"             "turned"           "legolas"         
## [39595] "come"             "way"              "mirkwood"        
## [39598] "good"             "elf"              "great"           
## [39601] "forest"           "used"             "still"           
## [39604] "said"             "legolas"          "great"           
## [39607] "dwell"            "ever"             "tire"            
## [39610] "seeing"           "new"              "trees"           
## [39613] "dearly"           "love"             "journey"         
## [39616] "fangorns"         "wood"             "scarcely"        
## [39619] "passed"           "beyond"           "eaves"           
## [39622] "wish"             "turn"             "back"            
## [39625] "treebeards"       "eyes"             "gleamed"         
## [39628] "pleasure"         "hope"             "may"             
## [39631] "wish"             "ere"              "hills"           
## [39634] "much"             "older"            "said"            
## [39637] "come"             "fortune"          "said"            
## [39640] "legolas"          "made"             "bargain"         
## [39643] "friend"           "goes"             "well"            
## [39646] "visit"            "fangorn"          "together"        
## [39649] "leave"            "elf"              "comes"           
## [39652] "welcome"          "said"             "treebeard"       
## [39655] "friend"           "speak"            "elf"             
## [39658] "said"             "legolas"          "mean"            
## [39661] "gimli"            "glóins"           "son"             
## [39664] "gimli"            "bowed"            "low"             
## [39667] "axe"              "slipped"          "belt"            
## [39670] "clattered"        "ground"           "hoom"            
## [39673] "hm"               "ah"               "now"             
## [39676] "said"             "treebeard"        "looking"         
## [39679] "dark"             "eyed"             "dwarf"           
## [39682] "axe"              "bearer"           "hoom"            
## [39685] "good"             "elves"            "ask"             
## [39688] "much"             "strange"          "friendship"      
## [39691] "strange"          "may"              "seem"            
## [39694] "said"             "legolas"          "gimli"           
## [39697] "lives"            "shall"            "come"            
## [39700] "fangorn"          "alone"            "axe"             
## [39703] "trees"            "orc"              "necks"           
## [39706] "fangorn"          "master"           "fangorns"        
## [39709] "wood"             "forty"            "two"             
## [39712] "hewed"            "battle"           "hoo"             
## [39715] "come"             "now"              "said"            
## [39718] "treebeard"        "better"           "story"           
## [39721] "well"             "well"             "things"          
## [39724] "go"               "need"             "hurry"           
## [39727] "meet"             "now"              "must"            
## [39730] "part"             "day"              "drawing"         
## [39733] "end"              "yet"              "gandalf"         
## [39736] "says"             "must"             "go"              
## [39739] "ere"              "nightfall"        "lord"            
## [39742] "mark"             "eager"            "house"           
## [39745] "yes"              "must"             "go"              
## [39748] "go"               "now"              "said"            
## [39751] "gandalf"          "fear"             "must"            
## [39754] "take"             "gatekeepers"      "manage"          
## [39757] "well"             "enough"           "without"         
## [39760] "maybe"            "shall"            "said"            
## [39763] "treebeard"        "shall"            "miss"            
## [39766] "become"           "friends"          "short"           
## [39769] "think"            "must"             "getting"         
## [39772] "hasty"            "growing"          "backwards"       
## [39775] "towards"          "youth"            "perhaps"         
## [39778] "first"            "new"              "thing"           
## [39781] "sun"              "moon"             "seen"            
## [39784] "many"             "long"             "long"            
## [39787] "day"              "shall"            "forget"          
## [39790] "put"              "names"            "long"            
## [39793] "list"             "ents"             "remember"        
## [39796] "ents"             "earthborn"        "old"             
## [39799] "mountains"        "wide"             "walkers"         
## [39802] "water"            "drinking"         "hungry"          
## [39805] "hunters"          "hobbit"           "children"        
## [39808] "laughing"         "folk"             "little"          
## [39811] "people"           "shall"            "remain"          
## [39814] "friends"          "long"             "leaves"          
## [39817] "renewed"          "fare"             "well"            
## [39820] "hear"             "news"             "pleasant"        
## [39823] "land"             "shire"            "send"            
## [39826] "word"             "know"             "mean"            
## [39829] "word"             "sight"            "entwives"        
## [39832] "come"             "can"              "said"            
## [39835] "merry"            "pippin"           "together"        
## [39838] "turned"           "away"             "hastily"         
## [39841] "treebeard"        "looked"           "silent"          
## [39844] "shaking"          "head"             "thoughtfully"    
## [39847] "turned"           "gandalf"          "saruman"         
## [39850] "leave"            "said"             "think"           
## [39853] "heart"            "rotten"           "black"           
## [39856] "huorns"           "still"            "overcome"        
## [39859] "trees"            "destroyed"        "come"            
## [39862] "one"              "dark"             "hole"            
## [39865] "left"             "hide"             "said"            
## [39868] "gandalf"          "plotted"          "cover"           
## [39871] "world"            "trees"            "choke"           
## [39874] "living"           "things"           "saruman"         
## [39877] "remains"          "nurse"            "hatred"          
## [39880] "weave"            "webs"             "can"             
## [39883] "key"              "orthanc"          "must"            
## [39886] "allowed"          "escape"           "indeed"          
## [39889] "ents"             "see"              "said"            
## [39892] "treebeard"        "saruman"          "shall"           
## [39895] "set"              "foot"             "beyond"          
## [39898] "rock"             "without"          "leave"           
## [39901] "ents"             "watch"            "good"            
## [39904] "said"             "gandalf"          "hoped"           
## [39907] "now"              "can"              "go"              
## [39910] "turn"             "matters"          "one"             
## [39913] "care"             "less"             "must"            
## [39916] "wary"             "waters"           "gone"            
## [39919] "enough"           "put"              "sentinels"       
## [39922] "round"            "tower"            "fear"            
## [39925] "doubt"            "deep"             "ways"            
## [39928] "delved"           "orthanc"          "saruman"         
## [39931] "hopes"            "go"               "come"            
## [39934] "unmarked"         "long"             "undertake"       
## [39937] "labour"           "beg"              "pour"            
## [39940] "waters"           "isengard"         "remains"         
## [39943] "standing"         "pool"             "discover"        
## [39946] "outlets"          "underground"      "places"          
## [39949] "drowned"          "outlets"          "blocked"         
## [39952] "saruman"          "must"             "stay"            
## [39955] "upstairs"         "look"             "windows"         
## [39958] "leave"            "ents"             "said"            
## [39961] "treebeard"        "shall"            "search"          
## [39964] "valley"           "head"             "foot"            
## [39967] "peer"             "every"            "pebble"          
## [39970] "trees"            "coming"           "back"            
## [39973] "live"             "old"              "trees"           
## [39976] "wild"             "trees"            "watchwood"       
## [39979] "call"             "squirrel"         "go"              
## [39982] "shall"            "know"             "leave"           
## [39985] "ents"             "seven"            "times"           
## [39988] "years"            "tormented"        "us"              
## [39991] "passed"           "shall"            "tire"            
## [39994] "watching"         "chapter"          "palantír"        
## [39997] "sun"              "sinking"          "behind"          
## [40000] "long"             "western"          "arm"             
## [40003] "mountains"        "gandalf"          "companions"      
## [40006] "king"             "riders"           "set"             
## [40009] "isengard"         "gandalf"          "took"            
## [40012] "merry"            "behind"           "aragorn"         
## [40015] "took"             "pippin"           "two"             
## [40018] "kings"            "men"              "went"            
## [40021] "ahead"            "riding"           "swiftly"         
## [40024] "passed"           "soon"             "sight"           
## [40027] "valley"           "others"           "followed"        
## [40030] "easy"             "pace"             "ents"            
## [40033] "solemn"           "row"              "stood"           
## [40036] "like"             "statues"          "gate"            
## [40039] "long"             "arms"             "uplifted"        
## [40042] "made"             "sound"            "merry"           
## [40045] "pippin"           "looked"           "back"            
## [40048] "passed"           "way"              "winding"         
## [40051] "road"             "sunlight"         "still"           
## [40054] "shining"          "sky"              "long"            
## [40057] "shadows"          "reached"          "isengard"        
## [40060] "grey"             "ruins"            "falling"         
## [40063] "darkness"         "treebeard"        "stood"           
## [40066] "alone"            "now"              "like"            
## [40069] "distant"          "stump"            "old"             
## [40072] "tree"             "hobbits"          "thought"         
## [40075] "first"            "meeting"          "upon"            
## [40078] "sunny"            "ledge"            "far"             
## [40081] "away"             "borders"          "fangorn"         
## [40084] "came"             "pillar"           "white"           
## [40087] "hand"             "pillar"           "still"           
## [40090] "standing"         "graven"           "hand"            
## [40093] "thrown"           "broken"           "small"           
## [40096] "pieces"           "right"            "middle"          
## [40099] "road"             "long"             "forefinger"      
## [40102] "lay"              "white"            "dusk"            
## [40105] "red"              "nail"             "darkening"       
## [40108] "black"            "ents"             "pay"             
## [40111] "attention"        "every"            "detail"          
## [40114] "said"             "gandalf"          "rode"            
## [40117] "evening"          "deepened"         "valley"          
## [40120] "riding"           "far"              "tonight"         
## [40123] "gandalf"          "asked"            "merry"           
## [40126] "dont"             "know"             "feel"            
## [40129] "small"            "rag"              "tag"             
## [40132] "dangling"         "behind"           "rag"             
## [40135] "tag"              "tired"            "glad"            
## [40138] "stop"             "dangling"         "lie"             
## [40141] "heard"            "said"             "gandalf"         
## [40144] "dont"             "let"              "rankle"          
## [40147] "thankful"         "longer"           "words"           
## [40150] "aimed"            "eyes"             "comfort"         
## [40153] "pride"            "say"              "moment"          
## [40156] "pippin"           "thoughts"         "rest"            
## [40159] "us"               "came"             "know"            
## [40162] "whether"          "captured"         "escaped"         
## [40165] "orcs"             "perished"         "little"          
## [40168] "riddles"          "great"            "mind"            
## [40171] "saruman"          "troubled"         "sneer"           
## [40174] "meriadoc"         "compliment"       "feel"            
## [40177] "honoured"         "concern"          "thank"           
## [40180] "said"             "merry"            "greater"         
## [40183] "honour"           "dangle"           "tail"            
## [40186] "gandalf"          "one"              "thing"           
## [40189] "position"         "one"              "chance"          
## [40192] "putting"          "question"         "second"          
## [40195] "time"             "riding"           "far"             
## [40198] "tonight"          "gandalf"          "laughed"         
## [40201] "unquenchable"     "hobbit"           "wizards"         
## [40204] "hobbit"           "two"              "care"            
## [40207] "teach"            "meaning"          "word"            
## [40210] "correct"          "beg"              "pardon"          
## [40213] "given"            "thought"          "even"            
## [40216] "simple"           "matters"          "ride"            
## [40219] "hours"            "gently"           "come"            
## [40222] "end"              "valley"           "tomorrow"        
## [40225] "must"             "ride"             "faster"          
## [40228] "came"             "meant"            "go"              
## [40231] "straight"         "isengard"         "back"            
## [40234] "kings"            "house"            "edoras"          
## [40237] "plains"           "ride"             "days"            
## [40240] "taken"            "thought"          "changed"         
## [40243] "plan"             "messengers"       "gone"            
## [40246] "ahead"            "helms"            "deep"            
## [40249] "warn"             "king"             "returning"       
## [40252] "tomorrow"         "ride"             "many"            
## [40255] "men"              "dunharrow"        "paths"           
## [40258] "among"            "hills"            "now"             
## [40261] "two"              "three"            "together"        
## [40264] "go"               "openly"           "land"            
## [40267] "day"              "night"            "can"             
## [40270] "avoided"          "nothing"          "double"          
## [40273] "helping"          "way"              "said"            
## [40276] "merry"            "afraid"           "looking"         
## [40279] "beyond"           "tonights"         "bed"             
## [40282] "helms"            "deep"             "rest"            
## [40285] "dont"             "know"             "anything"        
## [40288] "country"          "youd"             "best"            
## [40291] "learn"            "something"        "wish"            
## [40294] "understand"       "happening"        "just"            
## [40297] "now"              "many"             "pressing"        
## [40300] "things"           "think"            "right"           
## [40303] "ill"              "tackle"           "strider"         
## [40306] "camp"             "fire"             "hes"             
## [40309] "less"             "testy"            "secrecy"         
## [40312] "thought"          "wed"              "won"             
## [40315] "battle"           "yes"              "won"             
## [40318] "first"            "victor"           "increases"       
## [40321] "danger"           "link"             "isengard"        
## [40324] "mordor"           "yet"              "fathomed"        
## [40327] "exchanged"        "news"             "sure"            
## [40330] "eye"              "barad"            "dûr"             
## [40333] "looking"          "impatiently"      "towards"         
## [40336] "wizards"          "vale"             "think"           
## [40339] "towards"          "rohan"            "less"            
## [40342] "sees"             "better"           "road"            
## [40345] "passed"           "slowly"           "winding"         
## [40348] "valley"           "now"              "now"             
## [40351] "nearer"           "isen"             "flowed"          
## [40354] "stony"            "bed"              "night"           
## [40357] "came"             "mountains"        "mists"           
## [40360] "gone"             "chill"            "wind"            
## [40363] "blew"             "moon"             "now"             
## [40366] "waxing"           "round"            "filled"          
## [40369] "eastern"          "sky"              "pale"            
## [40372] "cold"             "sheen"            "shoulders"       
## [40375] "mountain"         "right"            "sloped"          
## [40378] "bare"             "hills"            "wide"            
## [40381] "plains"           "opened"           "grey"            
## [40384] "last"             "halted"           "turned"          
## [40387] "aside"            "leaving"          "highway"         
## [40390] "taking"           "sweet"            "upland"          
## [40393] "turf"             "going"            "westward"        
## [40396] "mile"             "came"             "dale"            
## [40399] "opened"           "southward"        "leaning"         
## [40402] "back"             "slope"            "round"           
## [40405] "dol"              "baran"            "last"            
## [40408] "hill"             "northern"         "ranges"          
## [40411] "greenfooted"      "crowned"          "heather"         
## [40414] "sides"            "glen"             "shaggy"          
## [40417] "last"             "years"            "bracken"         
## [40420] "among"            "tight"            "curled"          
## [40423] "fronds"           "spring"           "just"            
## [40426] "thrusting"        "sweet"            "scented"         
## [40429] "earth"            "thornbushes"      "grew"            
## [40432] "thick"            "upon"             "low"             
## [40435] "banks"            "made"             "camp"            
## [40438] "two"              "hours"            "middle"          
## [40441] "night"            "lit"              "fire"            
## [40444] "hollow"           "among"            "roots"           
## [40447] "spreading"        "hawthorn"         "tall"            
## [40450] "tree"             "writhen"          "age"             
## [40453] "hale"             "every"            "limb"            
## [40456] "buds"             "swelling"         "twigs"           
## [40459] "tip"              "guards"           "set"             
## [40462] "two"              "watch"            "rest"            
## [40465] "supped"           "wrapped"          "cloak"           
## [40468] "blanket"          "slept"            "hobbits"         
## [40471] "lay"              "corner"           "upon"            
## [40474] "pile"             "old"              "bracken"         
## [40477] "merry"            "sleepy"           "pippin"          
## [40480] "now"              "seemed"           "curiously"       
## [40483] "restless"         "bracken"          "cracked"         
## [40486] "rustled"          "twisted"          "turned"          
## [40489] "whats"            "matter"           "asked"           
## [40492] "merry"            "lying"            "ant"             
## [40495] "hill"             "said"             "pippin"          
## [40498] "im"               "comfortable"      "wonder"          
## [40501] "long"             "since"            "slept"           
## [40504] "bed"              "merry"            "yawned"          
## [40507] "work"             "fingers"          "said"            
## [40510] "must"             "know"             "long"            
## [40513] "since"            "left"             "lórien"          
## [40516] "oh"               "said"             "pippin"          
## [40519] "mean"             "real"             "bed"             
## [40522] "bedroom"          "well"             "rivendell"       
## [40525] "said"             "merry"            "sleep"           
## [40528] "anywhere"         "tonight"          "luck"            
## [40531] "merry"            "said"             "pippin"          
## [40534] "softly"           "long"             "pause"           
## [40537] "riding"           "gandalf"          "well"            
## [40540] "get"              "news"             "information"     
## [40543] "yes"              "good"             "deal"            
## [40546] "usual"            "heard"            "close"           
## [40549] "talking"          "secrets"          "can"             
## [40552] "go"               "tomorrow"         "think"           
## [40555] "can"              "get"              "hell"            
## [40558] "can"              "good"             "hes"             
## [40561] "close"            "isnt"             "changed"         
## [40564] "oh"               "yes"              "said"            
## [40567] "merry"            "waking"           "little"          
## [40570] "beginning"        "wonder"           "bothering"       
## [40573] "companion"        "grown"            "something"       
## [40576] "can"              "kinder"           "alarming"        
## [40579] "merrier"          "solemn"           "think"           
## [40582] "changed"          "chance"           "see"             
## [40585] "much"             "yet"              "think"           
## [40588] "last"             "part"             "business"        
## [40591] "saruman"          "remember"         "saruman"         
## [40594] "gandalfs"         "superior"         "head"            
## [40597] "council"          "whatever"         "may"             
## [40600] "exactly"          "saruman"          "white"           
## [40603] "gandalf"          "white"            "now"             
## [40606] "saruman"          "came"             "told"            
## [40609] "rod"              "taken"            "just"            
## [40612] "told"             "go"               "went"            
## [40615] "well"             "gandalf"          "changed"         
## [40618] "hes"              "closer"           "ever"            
## [40621] "thats"            "pippin"           "argued"          
## [40624] "glass"            "ball"             "now"             
## [40627] "seemed"           "mighty"           "pleased"         
## [40630] "knows"            "guesses"          "something"       
## [40633] "tell"             "us"               "word"            
## [40636] "yet"              "picked"           "saved"           
## [40639] "rolling"          "pool"             "ill"             
## [40642] "take"             "lad"              "thats"           
## [40645] "wonder"           "felt"             "heavy"           
## [40648] "pippins"          "voice"            "fell"            
## [40651] "low"              "talking"          "hullo"           
## [40654] "said"             "merry"            "thats"           
## [40657] "bothering"        "now"              "pippin"          
## [40660] "lad"              "dont"             "forget"          
## [40663] "gildors"          "saying"           "one"             
## [40666] "sam"              "used"             "quote"           
## [40669] "meddle"           "fairs"            "wizards"         
## [40672] "subtle"           "quick"            "anger"           
## [40675] "whole"            "life"             "months"          
## [40678] "one"              "long"             "meddling"        
## [40681] "affairs"          "wizards"          "said"            
## [40684] "pippin"           "like"             "bit"             
## [40687] "information"      "well"             "danger"          
## [40690] "like"             "look"             "ball"            
## [40693] "go"               "sleep"            "said"            
## [40696] "merry"            "youll"            "get"             
## [40699] "information"      "enough"           "sooner"          
## [40702] "later"            "dear"             "pippin"          
## [40705] "took"             "ever"             "beat"            
## [40708] "brandybuck"       "inquisitiveness"  "time"            
## [40711] "ask"              "right"            "whats"           
## [40714] "harm"             "telling"          "like"            
## [40717] "look"             "stone"            "know"            
## [40720] "cant"             "old"              "gandalf"         
## [40723] "sitting"          "like"             "hen"             
## [40726] "egg"              "doesnt"           "help"            
## [40729] "much"             "get"              "cant"            
## [40732] "go"               "sleep"            "well"            
## [40735] "else"             "say"              "said"            
## [40738] "merry"            "im"               "sorry"           
## [40741] "pippin"           "really"           "must"            
## [40744] "wait"             "till"             "morning"         
## [40747] "ill"              "curious"          "like"            
## [40750] "breakfast"        "ill"              "help"            
## [40753] "way"              "can"              "wizard"          
## [40756] "wheedling"        "cant"             "keep"            
## [40759] "awake"            "longer"           "yawn"            
## [40762] "shall"            "split"            "ears"            
## [40765] "good"             "night"            "pippin"          
## [40768] "said"             "lay"              "still"           
## [40771] "now"              "sleep"            "remained"        
## [40774] "far"              "away"             "encouraged"      
## [40777] "sound"            "merry"            "breathing"       
## [40780] "softly"           "asleep"           "minutes"         
## [40783] "saying"           "good"             "night"           
## [40786] "thought"          "dark"             "globe"           
## [40789] "seemed"           "grow"             "stronger"        
## [40792] "grew"             "quiet"            "pippin"          
## [40795] "felt"             "weight"           "hands"           
## [40798] "saw"              "mysterious"       "red"             
## [40801] "depths"           "looked"           "moment"          
## [40804] "tossed"           "turned"           "tried"           
## [40807] "think"            "something"        "else"            
## [40810] "last"             "stand"            "longer"          
## [40813] "got"              "looked"           "round"           
## [40816] "chilly"           "wrapped"          "cloak"           
## [40819] "moon"             "shining"          "cold"            
## [40822] "white"            "dell"             "shadows"         
## [40825] "bushes"           "black"            "lay"             
## [40828] "sleeping"         "shapes"           "two"             
## [40831] "guards"           "view"             "hill"            
## [40834] "perhaps"          "hidden"           "bracken"         
## [40837] "driven"           "impulse"          "understand"      
## [40840] "pippin"           "walked"           "softly"          
## [40843] "gandalf"          "lay"              "looked"          
## [40846] "wizard"           "seemed"           "asleep"          
## [40849] "lids"             "fully"            "closed"          
## [40852] "glitter"          "eyes"             "long"            
## [40855] "lashes"           "pippin"           "stepped"         
## [40858] "back"             "hastily"          "gandalf"         
## [40861] "made"             "sign"             "drawn"           
## [40864] "forward"          "half"             "hobbit"          
## [40867] "crept"            "behind"           "wizards"         
## [40870] "head"             "rolled"           "blanket"         
## [40873] "cloak"            "spread"           "top"             
## [40876] "close"            "beside"           "right"           
## [40879] "side"             "bent"             "arm"             
## [40882] "hummock"          "something"        "round"           
## [40885] "wrapped"          "dark"             "cloth"           
## [40888] "hand"             "seemed"           "just"            
## [40891] "slipped"          "ground"           "hardly"          
## [40894] "breathing"        "pippin"           "crept"           
## [40897] "nearer"           "foot"             "foot"            
## [40900] "last"             "knelt"            "put"             
## [40903] "hands"            "stealthily"       "slowly"          
## [40906] "lifted"           "lump"             "seem"            
## [40909] "quite"            "heavy"            "expected"        
## [40912] "bundle"           "oddments"         "perhaps"         
## [40915] "thought"          "strange"          "sense"           
## [40918] "relief"           "put"              "bundle"          
## [40921] "stood"            "moment"           "clasping"        
## [40924] "idea"             "came"             "mind"            
## [40927] "tiptoed"          "away"             "found"           
## [40930] "large"            "stone"            "came"            
## [40933] "back"             "quickly"          "now"             
## [40936] "drew"             "cloth"            "wrapped"         
## [40939] "stone"            "kneeling"         "laid"            
## [40942] "back"             "wizards"          "hand"            
## [40945] "last"             "looked"           "thing"           
## [40948] "uncovered"        "smooth"           "globe"           
## [40951] "crystal"          "now"              "dark"            
## [40954] "dead"             "lying"            "bare"            
## [40957] "knees"            "pippin"           "lifted"          
## [40960] "covered"          "hurriedly"        "cloak"           
## [40963] "half"             "turned"           "go"              
## [40966] "back"             "bed"              "moment"          
## [40969] "gandalf"          "moved"            "sleep"           
## [40972] "muttered"         "words"            "seemed"          
## [40975] "strange"          "tongue"           "hand"            
## [40978] "groped"           "clasped"          "wrapped"         
## [40981] "stone"            "sighed"           "move"            
## [40984] "idiotic"          "fool"             "pippin"          
## [40987] "muttered"         "youre"            "going"           
## [40990] "get"              "frightful"        "trouble"         
## [40993] "put"              "back"             "quick"           
## [40996] "found"            "now"              "knees"           
## [40999] "quaked"           "dare"             "go"              
## [41002] "near"             "enough"           "wizard"          
## [41005] "reach"            "bundle"           "ill"             
## [41008] "never"            "get"              "back"            
## [41011] "now"              "without"          "waking"          
## [41014] "thought"          "till"             "im"              
## [41017] "bit"              "calmer"           "may"             
## [41020] "well"             "look"             "first"           
## [41023] "just"             "though"           "stole"           
## [41026] "away"             "sat"              "green"           
## [41029] "hillock"          "far"              "bed"             
## [41032] "moon"             "looked"           "edge"            
## [41035] "dell"             "pippin"           "sat"             
## [41038] "knees"            "drawn"            "ball"            
## [41041] "bent"             "low"              "looking"         
## [41044] "like"             "greedy"           "child"           
## [41047] "stooping"         "bowl"             "food"            
## [41050] "corner"           "away"             "others"          
## [41053] "drew"             "cloak"            "aside"           
## [41056] "gazed"            "air"              "seemed"          
## [41059] "still"            "tense"            "first"           
## [41062] "globe"            "dark"             "black"           
## [41065] "jet"              "moonlight"        "gleaming"        
## [41068] "surface"          "came"             "faint"           
## [41071] "glow"             "stir"             "heart"           
## [41074] "held"             "eyes"             "now"             
## [41077] "look"             "away"             "soon"            
## [41080] "inside"           "seemed"           "fire"            
## [41083] "ball"             "spinning"         "lights"          
## [41086] "within"           "revolving"        "suddenly"        
## [41089] "lights"           "went"             "gave"            
## [41092] "gasp"             "struggled"        "remained"        
## [41095] "bent"             "clasping"         "ball"            
## [41098] "hands"            "closer"           "closer"          
## [41101] "bent"             "became"           "rigid"           
## [41104] "lips"             "moved"            "soundlessly"     
## [41107] "strangled"        "cry"              "fell"            
## [41110] "back"             "lay"              "still"           
## [41113] "cry"              "piercing"         "guards"          
## [41116] "leapt"            "banks"            "camp"            
## [41119] "soon"             "astir"            "thief"           
## [41122] "said"             "gandalf"          "hastily"         
## [41125] "cast"             "cloak"            "globe"           
## [41128] "lay"              "pippin"           "grievous"        
## [41131] "turn"             "things"           "knelt"           
## [41134] "pippins"          "body"             "hobbit"          
## [41137] "lying"            "back"             "rigid"           
## [41140] "unseeing"         "eyes"             "staring"         
## [41143] "sky"              "devilry"          "mischief"        
## [41146] "done"             "us"               "wizards"         
## [41149] "face"             "drawn"            "haggard"         
## [41152] "took"             "pippins"          "hand"            
## [41155] "bent"             "face"             "listening"       
## [41158] "breath"           "laid"             "hands"           
## [41161] "brow"             "hobbit"           "shuddered"       
## [41164] "eyes"             "closed"           "cried"           
## [41167] "sat"              "staring"          "bewilderment"    
## [41170] "faces"            "round"            "pale"            
## [41173] "moonlight"        "saruman"          "cried"           
## [41176] "shrill"           "toneless"         "voice"           
## [41179] "shrinking"        "away"             "gandalf"         
## [41182] "send"             "understand"       "say"             
## [41185] "just"             "struggled"        "get"             
## [41188] "escape"           "gandalf"          "held"            
## [41191] "gently"           "firmly"           "peregrin"        
## [41194] "took"             "said"             "come"            
## [41197] "back"             "hobbit"           "relaxed"         
## [41200] "fell"             "back"             "clinging"        
## [41203] "wizards"          "hand"             "gandalf"         
## [41206] "cried"            "gandalf"          "forgive"         
## [41209] "forgive"          "said"             "wizard"          
## [41212] "tell"             "first"            "done"            
## [41215] "took"             "ball"             "looked"          
## [41218] "stammered"        "pippin"           "saw"             
## [41221] "things"           "frightened"       "wanted"          
## [41224] "go"               "away"             "couldnt"         
## [41227] "came"             "questioned"       "looked"          
## [41230] "remember"         "wont"             "said"            
## [41233] "gandalf"          "sternly"          "see"             
## [41236] "say"              "pippin"           "shut"            
## [41239] "eyes"             "shivered"         "said"            
## [41242] "nothing"          "stared"           "silence"         
## [41245] "except"           "merry"            "turned"          
## [41248] "away"             "gandalfs"         "face"            
## [41251] "still"            "hard"             "speak"           
## [41254] "said"             "low"              "hesitating"      
## [41257] "voice"            "pippin"           "began"           
## [41260] "slowly"           "words"            "grew"            
## [41263] "clearer"          "stronger"         "saw"             
## [41266] "dark"             "sky"              "tall"            
## [41269] "battlements"      "said"             "tiny"            
## [41272] "stars"            "seemed"           "far"             
## [41275] "away"             "long"             "ago"             
## [41278] "yet"              "hard"             "clear"           
## [41281] "stars"            "went"             "cut"             
## [41284] "things"           "wings"            "big"             
## [41287] "think"            "really"           "glass"           
## [41290] "looked"           "like"             "bats"            
## [41293] "wheeling"         "round"            "tower"           
## [41296] "thought"          "nine"             "one"             
## [41299] "began"            "fly"              "straight"        
## [41302] "towards"          "getting"          "bigger"          
## [41305] "bigger"           "horrible"         "cant"            
## [41308] "say"              "tried"            "get"             
## [41311] "away"             "thought"          "fly"             
## [41314] "covered"          "globe"            "disappeared"     
## [41317] "came"             "speak"            "hear"            
## [41320] "words"            "just"             "looked"          
## [41323] "understood"       "come"             "back"            
## [41326] "neglected"        "report"           "long"            
## [41329] "answer"           "said"             "still"           
## [41332] "answer"           "hurt"             "horribly"        
## [41335] "pressed"          "said"             "hobbit"          
## [41338] "suddenly"         "seemed"           "see"             
## [41341] "laughed"          "cruel"            "like"            
## [41344] "stabbed"          "knives"           "struggled"       
## [41347] "said"             "wait"             "moment"          
## [41350] "shall"            "meet"             "soon"            
## [41353] "tell"             "saruman"          "dainty"          
## [41356] "send"             "understand"       "say"             
## [41359] "just"             "gloated"          "felt"            
## [41362] "falling"          "pieces"           "cant"            
## [41365] "say"              "dont"             "remember"        
## [41368] "anything"         "else"             "look"            
## [41371] "said"             "gandalf"          "pippin"          
## [41374] "looked"           "straight"         "eyes"            
## [41377] "wizard"           "held"             "gaze"            
## [41380] "moment"           "silence"          "face"            
## [41383] "grew"             "gentler"          "shadow"          
## [41386] "smile"            "appeared"         "laid"            
## [41389] "hand"             "softly"           "pippins"         
## [41392] "head"             "right"            "said"            
## [41395] "say"              "taken"            "harm"            
## [41398] "lie"              "eyes"             "feared"          
## [41401] "speak"            "long"             "fool"            
## [41404] "honest"           "fool"             "remain"          
## [41407] "peregrin"         "took"             "wiser"           
## [41410] "ones"             "might"            "done"            
## [41413] "worse"            "pass"             "mark"            
## [41416] "saved"            "friends"          "mainly"          
## [41419] "good"             "fortune"          "called"          
## [41422] "count"            "second"           "time"            
## [41425] "questioned"       "almost"           "certainly"       
## [41428] "told"             "know"             "ruin"            
## [41431] "us"               "eager"            "want"            
## [41434] "information"      "wanted"           "quickly"         
## [41437] "deal"             "dark"             "tower"           
## [41440] "slowly"           "dont"             "shudder"         
## [41443] "meddle"           "affairs"          "wizards"         
## [41446] "must"             "prepared"         "think"           
## [41449] "things"           "come"             "forgive"         
## [41452] "comforted"        "things"           "turned"          
## [41455] "evilly"           "might"            "lifted"          
## [41458] "pippin"           "gently"           "carried"         
## [41461] "back"             "bed"              "merry"           
## [41464] "followed"         "sat"              "beside"          
## [41467] "lie"              "rest"             "can"             
## [41470] "pippin"           "said"             "gandalf"         
## [41473] "trust"            "feel"             "itch"            
## [41476] "palms"            "tell"             "things"          
## [41479] "can"              "cured"            "anyway"          
## [41482] "dear"             "hobbit"           "dont"            
## [41485] "put"              "lump"             "rock"            
## [41488] "elbow"            "now"              "leave"           
## [41491] "two"              "together"         "gandalf"         
## [41494] "returned"         "others"           "still"           
## [41497] "standing"         "orthanc"          "stone"           
## [41500] "troubled"         "thought"          "peril"           
## [41503] "comes"            "night"            "least"           
## [41506] "expected"         "said"             "narrow"          
## [41509] "escape"           "hobbit"           "pippin"          
## [41512] "asked"            "aragorn"          "think"           
## [41515] "well"             "now"              "answered"        
## [41518] "gandalf"          "held"             "long"            
## [41521] "hobbits"          "amazing"          "power"           
## [41524] "recovery"         "memory"           "horror"          
## [41527] "probably"         "fade"             "quickly"         
## [41530] "quickly"          "perhaps"          "aragorn"         
## [41533] "take"             "orthanc"          "stone"           
## [41536] "guard"            "dangerous"        "charge"          
## [41539] "dangerous"        "indeed"           "said"            
## [41542] "aragorn"          "one"              "may"             
## [41545] "claim"            "right"            "assuredly"       
## [41548] "palantír"         "orthanc"          "treasury"        
## [41551] "elendil"          "set"              "kings"           
## [41554] "gondor"           "now"              "hour"            
## [41557] "draws"            "near"             "take"            
## [41560] "gandalf"          "looked"           "aragorn"         
## [41563] "surprise"         "others"           "lifted"          
## [41566] "covered"          "stone"            "bowed"           
## [41569] "presented"        "receive"          "lord"            
## [41572] "said"             "earnest"          "things"          
## [41575] "shall"            "given"            "back"            
## [41578] "may"              "counsel"          "use"             
## [41581] "use"              "yet"              "wary"            
## [41584] "hasty"            "unwary"           "waited"          
## [41587] "prepared"         "many"             "long"            
## [41590] "years"            "said"             "aragorn"         
## [41593] "never"            "yet"              "stumble"         
## [41596] "end"              "road"             "answered"        
## [41599] "gandalf"          "least"            "keep"            
## [41602] "thing"            "secret"           "others"          
## [41605] "stand"            "hobbit"           "peregrin"        
## [41608] "know"             "bestowed"         "evil"            
## [41611] "fit"              "may"              "come"            
## [41614] "alas"             "handled"          "looked"          
## [41617] "never"            "happened"         "never"           
## [41620] "touched"          "isengard"         "quicker"         
## [41623] "mind"             "bent"             "saruman"         
## [41626] "guess"            "nature"           "stone"           
## [41629] "weary"            "lay"              "pondering"       
## [41632] "sleep"            "overcame"         "now"             
## [41635] "know"             "yes"              "can"             
## [41638] "doubt"            "said"             "aragorn"         
## [41641] "last"             "know"             "link"            
## [41644] "isengard"         "mordor"           "worked"          
## [41647] "much"             "explained"        "strange"         
## [41650] "powers"           "enemies"          "strange"         
## [41653] "weaknesses"       "said"             "théoden"         
## [41656] "long"             "said"             "oft"             
## [41659] "evil"             "shall"            "evil"            
## [41662] "mar"              "many"             "times"           
## [41665] "seen"             "said"             "gandalf"         
## [41668] "time"             "strangely"        "fortunate"       
## [41671] "maybe"            "saved"            "hobbit"          
## [41674] "grave"            "blunder"          "considered"      
## [41677] "whether"          "probe"            "stone"           
## [41680] "find"             "uses"             "done"            
## [41683] "revealed"         "ready"            "trial"           
## [41686] "indeed"           "shall"            "ever"            
## [41689] "even"             "found"            "power"           
## [41692] "withdraw"         "disastrous"       "see"             
## [41695] "yet"              "hour"             "comes"           
## [41698] "secrecy"          "avail"            "longer"          
## [41701] "hour"             "now"              "come"            
## [41704] "think"            "said"             "aragorn"         
## [41707] "yet"              "said"             "gandalf"         
## [41710] "remains"          "short"            "doubt"           
## [41713] "must"             "use"              "enemy"           
## [41716] "clear"            "thought"          "stone"           
## [41719] "orthanc"          "therefore"        "hobbit"          
## [41722] "captive"          "driven"           "look"            
## [41725] "glass"            "torment"          "saruman"         
## [41728] "dark"             "mind"             "filled"          
## [41731] "now"              "voice"            "face"            
## [41734] "hobbit"           "expectation"      "may"             
## [41737] "take"             "time"             "learns"          
## [41740] "error"            "must"             "snatch"          
## [41743] "time"             "leisurely"        "must"            
## [41746] "move"             "neighbourhood"    "isengard"        
## [41749] "place"            "now"              "linger"          
## [41752] "ride"             "ahead"            "peregrin"        
## [41755] "took"             "better"           "lying"           
## [41758] "dark"             "others"           "sleep"           
## [41761] "keep"             "éomer"            "ten"             
## [41764] "riders"           "said"             "king"            
## [41767] "shall"            "ride"             "early"           
## [41770] "day"              "rest"             "may"             
## [41773] "go"               "aragorn"          "ride"            
## [41776] "soon"             "mind"             "said"            
## [41779] "gandalf"          "make"             "speed"           
## [41782] "may"              "cover"            "hills"           
## [41785] "helms"            "deep"             "moment"          
## [41788] "shadow"           "fell"             "bright"          
## [41791] "moonlight"        "seemed"           "suddenly"        
## [41794] "cut"              "several"          "riders"          
## [41797] "cried"            "crouched"         "holding"         
## [41800] "arms"             "heads"            "ward"            
## [41803] "blow"             "blind"            "fear"            
## [41806] "deadly"           "cold"             "fell"            
## [41809] "cowering"         "looked"           "vast"            
## [41812] "winged"           "shape"            "passed"          
## [41815] "moon"             "like"             "black"           
## [41818] "cloud"            "wheeled"          "went"            
## [41821] "north"            "flying"           "speed"           
## [41824] "greater"          "wind"             "middle"          
## [41827] "earth"            "stars"            "fainted"         
## [41830] "gone"             "stood"            "rigid"           
## [41833] "stones"           "gandalf"          "gazing"          
## [41836] "arms"             "downwards"        "stiff"           
## [41839] "hands"            "clenched"         "nazgûl"          
## [41842] "cried"            "messenger"        "mordor"          
## [41845] "storm"            "coming"           "nazgûl"          
## [41848] "crossed"          "river"            "ride"            
## [41851] "ride"             "wait"             "dawn"            
## [41854] "let"              "swift"            "wait"            
## [41857] "slow"             "ride"             "sprang"          
## [41860] "away"             "calling"          "shadowfax"       
## [41863] "ran"              "aragorn"          "followed"        
## [41866] "going"            "pippin"           "gandalf"         
## [41869] "picked"           "arms"             "shall"           
## [41872] "come"             "time"             "said"            
## [41875] "shadowfax"        "shall"            "show"            
## [41878] "paces"            "ran"              "place"           
## [41881] "slept"            "shadowfax"        "stood"           
## [41884] "already"          "slinging"         "small"           
## [41887] "bag"              "luggage"          "across"          
## [41890] "shoulders"        "wizard"           "leapt"           
## [41893] "upon"             "horses"           "back"            
## [41896] "aragorn"          "lifted"           "pippin"          
## [41899] "set"              "gandalfs"         "arms"            
## [41902] "wrapped"          "cloak"            "blanket"         
## [41905] "farewell"         "follow"           "fast"            
## [41908] "cried"            "gandalf"          "away"            
## [41911] "shadowfax"        "great"            "horse"           
## [41914] "tossed"           "head"             "flowing"         
## [41917] "tail"             "flicked"          "moonlight"       
## [41920] "leapt"            "forward"          "spurning"        
## [41923] "earth"            "gone"             "like"            
## [41926] "north"            "wind"             "mountains"       
## [41929] "beautiful"        "restful"          "night"           
## [41932] "said"             "merry"            "aragorn"         
## [41935] "folk"             "wonderful"        "luck"            
## [41938] "want"             "sleep"            "wanted"          
## [41941] "ride"             "gandalf"          "goes"            
## [41944] "instead"          "turned"           "stone"           
## [41947] "stand"            "ever"             "warning"         
## [41950] "first"            "lift"             "orthanc"         
## [41953] "stone"            "now"              "said"            
## [41956] "aragorn"          "might"            "done"            
## [41959] "worse"            "can"              "say"             
## [41962] "now"              "luck"             "come"            
## [41965] "fear"             "go"               "get"             
## [41968] "ready"            "bring"            "anything"        
## [41971] "pippin"           "left"             "behind"          
## [41974] "make"             "haste"            "plains"          
## [41977] "shadowfax"        "flying"           "needing"         
## [41980] "urging"           "guidance"         "less"            
## [41983] "hour"             "passed"           "reached"         
## [41986] "fords"            "isen"             "crossed"         
## [41989] "mound"            "riders"           "cold"            
## [41992] "spears"           "lay"              "grey"            
## [41995] "behind"           "pippin"           "recovering"      
## [41998] "warm"             "wind"             "face"            
## [42001] "keen"             "refreshing"       "gandalf"         
## [42004] "horror"           "stone"            "hideous"         
## [42007] "shadow"           "moon"             "fading"          
## [42010] "things"           "left"             "behind"          
## [42013] "mists"            "mountains"        "passing"         
## [42016] "dream"            "drew"             "deep"            
## [42019] "breath"           "know"             "rode"            
## [42022] "bare"             "back"             "gandalf"         
## [42025] "said"             "havent"           "saddle"          
## [42028] "bridle"           "ride"             "elf"             
## [42031] "fashion"          "except"           "shadowfax"       
## [42034] "said"             "gandalf"          "shadowfax"       
## [42037] "harness"          "ride"             "shadowfax"       
## [42040] "willing"          "carry"            "willing"         
## [42043] "enough"           "business"         "see"             
## [42046] "remain"           "back"             "unless"          
## [42049] "jump"             "air"              "fast"            
## [42052] "going"            "asked"            "pippin"          
## [42055] "fast"             "wind"             "smooth"          
## [42058] "light"            "footfalls"        "running"         
## [42061] "now"              "fast"             "swiftest"        
## [42064] "horse"            "gallop"           "answered"        
## [42067] "gandalf"          "fast"             "land"            
## [42070] "rising"           "little"           "broken"          
## [42073] "beyond"           "river"            "see"             
## [42076] "white"            "mountains"        "drawing"         
## [42079] "near"             "stars"            "yonder"          
## [42082] "thrihyrne"        "peaks"            "like"            
## [42085] "black"            "spears"           "long"            
## [42088] "reach"            "branching"        "roads"           
## [42091] "come"             "deeping"          "coomb"           
## [42094] "battle"           "fought"           "two"             
## [42097] "nights"           "ago"              "pippin"          
## [42100] "silent"           "heard"            "gandalf"         
## [42103] "singing"          "softly"           "murmuring"       
## [42106] "brief"            "snatches"         "rhyme"           
## [42109] "many"             "tongues"          "miles"           
## [42112] "ran"              "last"             "wizard"          
## [42115] "passed"           "song"             "hobbit"          
## [42118] "caught"           "words"            "lines"           
## [42121] "came"             "clear"            "ears"            
## [42124] "rushing"          "wind"             "tall"            
## [42127] "ships"            "tall"             "kings"           
## [42130] "three"            "times"            "three"           
## [42133] "brought"          "foundered"        "land"            
## [42136] "flowing"          "sea"              "seven"           
## [42139] "stars"            "seven"            "stones"          
## [42142] "one"              "white"            "tree"            
## [42145] "saying"           "gandalf"          "asked"           
## [42148] "pippin"           "just"             "running"         
## [42151] "rhymes"           "lore"             "mind"            
## [42154] "answered"         "wizard"           "hobbits"         
## [42157] "suppose"          "forgotten"        "even"            
## [42160] "ever"             "knew"             "said"            
## [42163] "pippin"           "many"             "wouldnt"         
## [42166] "interest"         "perhaps"          "never"           
## [42169] "heard"            "one"              "seven"           
## [42172] "stars"            "seven"            "stones"          
## [42175] "palantíri"        "kings"            "old"             
## [42178] "said"             "gandalf"          "name"            
## [42181] "meant"            "looks"            "far"             
## [42184] "away"             "orthanc"          "stone"           
## [42187] "one"              "made"             "made"            
## [42190] "pippin"           "hesitated"        "enemy"           
## [42193] "said"             "gandalf"          "saruman"         
## [42196] "beyond"           "art"              "beyond"          
## [42199] "saurons"          "palantíri"        "came"            
## [42202] "beyond"           "westernesse"      "eldamar"         
## [42205] "noldor"           "made"             "fëanor"          
## [42208] "maybe"            "wrought"          "days"            
## [42211] "long"             "ago"              "time"            
## [42214] "measured"         "years"            "nothing"         
## [42217] "sauron"           "turn"             "evil"            
## [42220] "uses"             "alas"             "saruman"         
## [42223] "downfall"         "now"              "perceive"        
## [42226] "perilous"         "us"               "devices"         
## [42229] "art"              "deeper"           "possess"         
## [42232] "yet"              "must"             "bear"            
## [42235] "blame"            "fool"             "keep"            
## [42238] "secret"           "profit"           "word"            
## [42241] "ever"             "speak"            "council"         
## [42244] "yet"              "given"            "thought"         
## [42247] "fate"             "palantíri"        "gondor"          
## [42250] "ruinous"          "wars"             "men"             
## [42253] "almost"           "forgotten"        "even"            
## [42256] "gondor"           "secret"           "known"           
## [42259] "arnor"            "remembered"       "rhyme"           
## [42262] "lore"             "among"            "dúnedain"        
## [42265] "men"              "old"              "use"             
## [42268] "asked"            "pippin"           "delighted"       
## [42271] "astonished"       "getting"          "answers"         
## [42274] "many"             "questions"        "wondering"       
## [42277] "long"             "last"             "see"             
## [42280] "far"              "converse"         "thought"         
## [42283] "one"              "another"          "said"            
## [42286] "gandalf"          "way"              "long"            
## [42289] "guarded"          "united"           "realm"           
## [42292] "gondor"           "set"              "stones"          
## [42295] "minas"            "anor"             "minas"           
## [42298] "ithil"            "orthanc"          "ring"            
## [42301] "isengard"         "chief"            "master"          
## [42304] "dome"             "stars"            "osgiliath"       
## [42307] "ruin"             "three"            "others"          
## [42310] "far"              "away"             "north"           
## [42313] "house"            "elrond"           "told"            
## [42316] "annúminas"        "amon"             "sûl"             
## [42319] "elendils"         "stone"            "tower"           
## [42322] "hills"            "look"             "towards"         
## [42325] "mithlond"         "gulf"             "lune"            
## [42328] "grey"             "ships"            "lie"             
## [42331] "palantír"         "replied"          "gondor"          
## [42334] "ever"             "open"             "view"            
## [42337] "osgiliath"        "now"              "appears"         
## [42340] "rock"             "orthanc"          "withstood"       
## [42343] "storms"           "time"             "palantírof"      
## [42346] "tower"            "remained"         "alone"           
## [42349] "nothing"          "see"              "small"           
## [42352] "images"           "things"           "far"             
## [42355] "days"             "remote"           "useful"          
## [42358] "doubt"            "saruman"          "yet"             
## [42361] "seems"            "content"          "abroad"          
## [42364] "gazed"            "cast"             "gaze"            
## [42367] "upon"             "barad"            "dûr"             
## [42370] "caught"           "knows"            "lost"            
## [42373] "stones"           "arnor"            "gondor"          
## [42376] "now"              "lie"              "buried"          
## [42379] "drowned"          "deep"             "one"             
## [42382] "least"            "sauron"           "must"            
## [42385] "obtained"         "mastered"         "purposes"        
## [42388] "guess"            "ithil"            "stone"           
## [42391] "took"             "minas"            "ithil"           
## [42394] "long"             "ago"              "turned"          
## [42397] "evil"             "place"            "minas"           
## [42400] "morgul"           "become"           "easy"            
## [42403] "now"              "guess"            "quickly"         
## [42406] "roving"           "eye"              "saruman"         
## [42409] "trapped"          "held"             "ever"            
## [42412] "since"            "persuaded"        "afar"            
## [42415] "daunted"          "persuasion"       "serve"           
## [42418] "biter"            "bit"              "hawk"            
## [42421] "eagles"           "foot"             "spider"          
## [42424] "steel"            "web"              "long"            
## [42427] "wonder"           "constrained"      "come"            
## [42430] "often"            "glass"            "inspection"      
## [42433] "instruction"      "orthanc"          "stone"           
## [42436] "bent"             "towards"          "barad"           
## [42439] "dûr"              "save"             "adamant"         
## [42442] "now"              "looks"            "bear"            
## [42445] "mind"             "sight"            "swiftly"         
## [42448] "thither"          "draws"            "one"             
## [42451] "felt"             "even"             "now"             
## [42454] "heart"            "desires"          "test"            
## [42457] "upon"             "see"              "wrench"          
## [42460] "turn"             "look"             "across"          
## [42463] "wide"             "seas"             "water"           
## [42466] "time"             "tirion"           "fair"            
## [42469] "perceive"         "unimaginable"     "hand"            
## [42472] "mind"             "fëanor"           "work"            
## [42475] "white"            "tree"             "golden"          
## [42478] "flower"           "sighed"           "fell"            
## [42481] "silent"           "wish"             "known"           
## [42484] "said"             "pippin"           "notion"          
## [42487] "oh"               "yes"              "said"            
## [42490] "gandalf"          "knew"             "behaving"        
## [42493] "wrongly"          "foolishly"        "told"            
## [42496] "though"           "listen"           "tell"            
## [42499] "musing"           "happened"         "last"            
## [42502] "understood"       "even"             "ride"            
## [42505] "together"         "spoken"           "sooner"          
## [42508] "lessened"         "desire"           "made"            
## [42511] "easier"           "resist"           "contrary"        
## [42514] "burned"           "hand"             "teaches"         
## [42517] "best"             "advice"           "fire"            
## [42520] "goes"             "heart"            "said"            
## [42523] "pippin"           "seven"            "stones"          
## [42526] "laid"             "now"              "shut"            
## [42529] "eyes"             "put"              "hands"           
## [42532] "pockets"          "good"             "said"            
## [42535] "gandalf"          "hoped"            "like"            
## [42538] "know"             "pippin"           "began"           
## [42541] "mercy"            "cried"            "gandalf"         
## [42544] "giving"           "information"      "cure"            
## [42547] "inquisitiveness"  "shall"            "spend"           
## [42550] "rest"             "days"             "answering"       
## [42553] "want"             "know"             "names"           
## [42556] "stars"            "living"           "things"          
## [42559] "whole"            "history"          "middle"          
## [42562] "earth"            "heaven"           "sundering"       
## [42565] "seas"             "laughed"          "pippin"          
## [42568] "course"           "less"             "hurry"           
## [42571] "tonight"          "moment"           "just"            
## [42574] "wondering"        "black"            "shadow"          
## [42577] "heard"            "shout"            "messenger"       
## [42580] "mordor"           "isengard"         "black"           
## [42583] "rider"            "wings"            "nazgûl"          
## [42586] "said"             "gandalf"          "taken"           
## [42589] "away"             "dark"             "tower"           
## [42592] "coming"           "faltered"         "pippin"          
## [42595] "mean"             "didnt"            "know"            
## [42598] ""                 ""                 "course"          
## [42601] "said"             "gandalf"          "two"             
## [42604] "hundred"          "leagues"          "straight"        
## [42607] "flight"           "barad"            "dûr"             
## [42610] "orthanc"          "even"             "nazgûl"          
## [42613] "take"             "hours"            "fly"             
## [42616] "saruman"          "certainly"        "looked"          
## [42619] "stone"            "since"            "orc"             
## [42622] "raid"             "secret"           "thought"         
## [42625] "doubt"            "read"             "intended"        
## [42628] "messenger"        "sent"             "find"            
## [42631] "happened"         "tonight"          "another"         
## [42634] "come"             "think"            "swiftly"         
## [42637] "saruman"          "come"             "last"            
## [42640] "pinch"            "vice"             "put"             
## [42643] "hand"             "captive"          "send"            
## [42646] "stone"            "see"              "answer"          
## [42649] "summons"          "sauron"           "believe"         
## [42652] "withholding"      "captive"          "refusing"        
## [42655] "use"              "stone"            "help"            
## [42658] "saruman"          "tell"             "truth"           
## [42661] "messenger"        "isengard"         "may"             
## [42664] "ruined"           "yet"              "still"           
## [42667] "safe"             "orthanc"          "whether"         
## [42670] "appear"           "rebel"            "yet"             
## [42673] "rejected"         "us"               "avoid"           
## [42676] "thing"            "plight"           "guess"           
## [42679] "power"            "still"            "think"           
## [42682] "orthanc"          "resist"           "nine"            
## [42685] "riders"           "may"              "try"             
## [42688] "may"              "try"              "trap"            
## [42691] "nazgûl"           "least"            "slay"            
## [42694] "thing"            "now"              "rides"           
## [42697] "air"              "case"             "let"             
## [42700] "rohan"            "look"             "horses"          
## [42703] "tell"             "fall"             "well"            
## [42706] "ill"              "us"               "may"             
## [42709] "counsels"         "enemy"            "confused"        
## [42712] "hindered"         "wrath"            "saruman"         
## [42715] "may"              "learn"            "stood"           
## [42718] "upon"             "stairs"           "orthanc"         
## [42721] "hobbits"          "tail"             "heir"            
## [42724] "elendil"          "lives"            "stood"           
## [42727] "beside"           "wormtongue"       "deceived"        
## [42730] "armour"           "rohan"            "remember"        
## [42733] "aragorn"          "title"            "claimed"         
## [42736] "fear"             "fly"              "danger"          
## [42739] "greater"          "danger"           "every"           
## [42742] "stride"           "shadowfax"        "bears"           
## [42745] "nearer"           "land"             "shadow"          
## [42748] "peregrin"         "took"             "pippin"          
## [42751] "made"             "answer"           "clutched"        
## [42754] "cloak"            "sudden"           "chill"           
## [42757] "struck"           "grey"             "land"            
## [42760] "passed"           "see"              "now"             
## [42763] "said"             "gandalf"          "westfold"        
## [42766] "dales"            "opening"          "us"              
## [42769] "come"             "back"             "eastward"        
## [42772] "road"             "dark"             "shadow"          
## [42775] "yonder"           "mouth"            "deeping"         
## [42778] "coomb"            "way"              "lies"            
## [42781] "aglarond"         "glittering"       "caves"           
## [42784] "ask"              "ask"              "gimli"           
## [42787] "meet"             "first"            "time"            
## [42790] "may"              "get"              "answer"          
## [42793] "longer"           "wish"             "see"             
## [42796] "caves"            "journey"          "soon"            
## [42799] "far"              "behind"           "thought"         
## [42802] "going"            "stop"             "helms"           
## [42805] "deep"             "said"             "pippin"          
## [42808] "going"            "minas"            "tirith"          
## [42811] "seas"             "war"              "surround"        
## [42814] "oh"               "far"              "leagues"         
## [42817] "upon"             "leagues"          "answered"        
## [42820] "gandalf"          "thrice"           "far"             
## [42823] "dwellings"        "king"             "théoden"         
## [42826] "hundred"          "miles"            "east"            
## [42829] "messengers"       "mordor"           "fly"             
## [42832] "shadowfax"        "must"             "run"             
## [42835] "longer"           "road"             "prove"           
## [42838] "swifter"          "shall"            "ride"            
## [42841] "now"              "till"             "daybreak"        
## [42844] "hours"            "away"             "even"            
## [42847] "shadowfax"        "must"             "rest"            
## [42850] "hollow"           "hills"            "edoras"          
## [42853] "hope"             "sleep"            "can"             
## [42856] "may"              "see"              "first"           
## [42859] "glimmer"          "dawn"             "upon"            
## [42862] "golden"           "roof"             "house"           
## [42865] "eorl"             "two"              "days"            
## [42868] "thence"           "shall"            "see"             
## [42871] "purple"           "shadow"           "mount"           
## [42874] "mindolluin"       "walls"            "tower"           
## [42877] "denethor"         "white"            "morning"         
## [42880] "away"             "now"              "shadowfax"       
## [42883] "run"              "greatheart"       "run"             
## [42886] "never"            "run"              "now"             
## [42889] "come"             "lands"            "foaled"          
## [42892] "every"            "stone"            "know"            
## [42895] "run"              "now"              "hope"            
## [42898] "speed"            "shadowfax"        "tossed"          
## [42901] "head"             "cried"            "aloud"           
## [42904] "trumpet"          "summoned"         "battle"          
## [42907] "sprang"           "forward"          "fire"            
## [42910] "flew"             "feet"             "night"           
## [42913] "rushed"           "fell"             "slowly"          
## [42916] "sleep"            "pippin"           "strange"         
## [42919] "feeling"          "gandalf"          "still"           
## [42922] "stone"            "seated"           "upon"            
## [42925] "statue"           "running"          "horse"           
## [42928] "world"            "rolled"           "away"            
## [42931] "beneath"          "feet"             "great"           
## [42934] "noise"            "wind"             "book"            
## [42937] "iv"               "chapter"          "taming"          
## [42940] "sméagol"          "well"             "master"          
## [42943] "fix"              "mistake"          "said"            
## [42946] "sam"              "gamgee"           "stood"           
## [42949] "despondently"     "hunched"          "shoulders"       
## [42952] "beside"           "frodo"            "peered"          
## [42955] "puckered"         "eyes"             "gloom"           
## [42958] "third"            "evening"          "since"           
## [42961] "fled"             "company"          "far"             
## [42964] "tell"             "almost"           "lost"            
## [42967] "count"            "hours"            "climbed"         
## [42970] "laboured"         "among"            "barren"          
## [42973] "slopes"           "stones"           "emyn"            
## [42976] "muil"             "sometimes"        "retracing"       
## [42979] "steps"            "find"             "way"             
## [42982] "forward"          "sometimes"        "discovering"     
## [42985] "wandered"         "circle"           "back"            
## [42988] "hours"            "yet"              "whole"           
## [42991] "worked"           "steadily"         "eastward"        
## [42994] "keeping"          "near"             "find"            
## [42997] "way"              "outer"            "edge"            
## [43000] "strange"          "twisted"          "knot"            
## [43003] "hills"            "always"           "found"           
## [43006] "outward"          "faces"            "sheer"           
## [43009] "high"             "impassable"       "frowning"        
## [43012] "plain"            "beyond"           "tumbled"         
## [43015] "skirts"           "lay"              "livid"           
## [43018] "festering"        "marshes"          "nothing"         
## [43021] "moved"            "even"             "bird"            
## [43024] "seen"             "hobbits"          "stood"           
## [43027] "now"              "brink"            "tall"            
## [43030] "cliff"            "bare"             "bleak"           
## [43033] "feet"             "wrapped"          "mist"            
## [43036] "behind"           "rose"             "broken"          
## [43039] "highlands"        "crowned"          "drifting"        
## [43042] "cloud"            "chill"            "wind"            
## [43045] "blew"             "east"             "night"           
## [43048] "gathering"        "shapeless"        "lands"           
## [43051] "sickly"           "green"            "fading"          
## [43054] "sullen"           "brown"            "far"             
## [43057] "away"             "right"            "anduin"          
## [43060] "gleamed"          "fitfully"         "sun"             
## [43063] "breaks"           "day"              "now"             
## [43066] "hidden"           "shadow"           "eyes"            
## [43069] "look"             "beyond"           "river"           
## [43072] "back"             "gondor"           "friends"         
## [43075] "lands"            "men"              "south"           
## [43078] "east"             "stared"           "edge"            
## [43081] "oncoming"         "night"            "dark"            
## [43084] "line"             "hung"             "like"            
## [43087] "distant"          "mountains"        "motionless"      
## [43090] "smoke"            "every"            "now"             
## [43093] "tiny"             "red"              "gleam"           
## [43096] "far"              "away"             "flickered"       
## [43099] "upwards"          "rim"              "earth"           
## [43102] "sky"              "fix"              "said"            
## [43105] "sam"              "thats"            "one"             
## [43108] "place"            "lands"            "weve"            
## [43111] "ever"             "heard"            "dont"            
## [43114] "want"             "see"              "closer"          
## [43117] "thats"            "one"              "place"           
## [43120] "trying"           "get"              "thats"           
## [43123] "just"             "cant"             "get"             
## [43126] "nohow"            "weve"             "come"            
## [43129] "wrong"            "way"              "altogether"      
## [43132] "seemingly"        "cant"             "get"             
## [43135] "get"              "wed"              "find"            
## [43138] "green"            "land"             "nasty"           
## [43141] "bog"              "ill"              "warrant"         
## [43144] "phew"             "can"              "smell"           
## [43147] "sniffed"          "wind"             "yes"             
## [43150] "can"              "smell"            "said"            
## [43153] "frodo"            "move"             "eyes"            
## [43156] "remained"         "fixed"            "staring"         
## [43159] "towards"          "dark"             "line"            
## [43162] "flickering"       "flame"            "mordor"          
## [43165] "muttered"         "breath"           "must"            
## [43168] "go"               "wish"             "come"            
## [43171] "quickly"          "make"             "end"             
## [43174] "shuddered"        "wind"             "chilly"          
## [43177] "yet"              "heavy"            "odour"           
## [43180] "cold"             "decay"            "well"            
## [43183] "said"             "last"             "withdrawing"     
## [43186] "eyes"             "stay"             "night"           
## [43189] "fix"              "fix"              "must"            
## [43192] "find"             "sheltered"        "spot"            
## [43195] "camp"             "perhaps"          "another"         
## [43198] "day"              "show"             "us"              
## [43201] "path"             "another"          "another"         
## [43204] "another"          "muttered"         "sam"             
## [43207] "maybe"            "day"              "weve"            
## [43210] "come"             "wrong"            "way"             
## [43213] "wonder"           "said"             "frodo"           
## [43216] "doom"             "think"            "go"              
## [43219] "shadow"           "yonder"           "way"             
## [43222] "found"            "good"             "evil"            
## [43225] "show"             "hope"             "speed"           
## [43228] "delay"            "plays"            "enemys"          
## [43231] "hands"            "delayed"          "dark"            
## [43234] "tower"            "steers"           "us"              
## [43237] "choices"          "proved"           "ill"             
## [43240] "left"             "company"          "long"            
## [43243] "come"             "north"            "east"            
## [43246] "river"            "emyn"             "muil"            
## [43249] "hard"             "battle"           "plain"           
## [43252] "passes"           "mordor"           "now"             
## [43255] "isnt"             "possible"         "alone"           
## [43258] "find"             "way"              "back"            
## [43261] "orcs"             "prowling"         "east"            
## [43264] "bank"             "every"            "day"             
## [43267] "passes"           "precious"         "day"             
## [43270] "lost"             "tired"            "sam"             
## [43273] "dont"             "know"             "done"            
## [43276] "food"             "got"              "left"            
## [43279] "dyou"             "call"             "em"              
## [43282] "lembas"           "mr"               "frodo"           
## [43285] "fair"             "supply"           "better"          
## [43288] "naught"           "long"             "bite"            
## [43291] "never"            "thought"          "though"          
## [43294] "first"            "set"              "tooth"           
## [43297] "ever"             "come"             "wish"            
## [43300] "change"           "now"              "bit"             
## [43303] "plain"            "bread"            "mug"             
## [43306] "aye"              "half"             "mug"             
## [43309] "beer"             "go"               "proper"          
## [43312] "ive"              "lugged"           "cooking"         
## [43315] "gear"             "way"              "last"            
## [43318] "camp"             "use"              "naught"          
## [43321] "make"             "fire"             "start"           
## [43324] "naught"           "cook"             "even"            
## [43327] "grass"            "turned"           "away"            
## [43330] "went"             "stony"            "hollow"          
## [43333] "westering"        "sun"              "caught"          
## [43336] "clouds"           "night"            "came"            
## [43339] "swiftly"          "slept"            "well"            
## [43342] "cold"             "turn"             "turn"            
## [43345] "nook"             "among"            "great"           
## [43348] "jagged"           "pinnacles"        "weathered"       
## [43351] "rock"             "least"            "sheltered"       
## [43354] "easterly"         "wind"             "see"             
## [43357] "mr"               "frodo"            "asked"           
## [43360] "sam"              "sat"              "stiff"           
## [43363] "chilled"          "munching"         "wafers"          
## [43366] "lembas"           "cold"             "grey"            
## [43369] "early"            "morning"          "said"            
## [43372] "frodo"            "ive"              "heard"           
## [43375] "nothing"          "seen"             "nothing"         
## [43378] "two"              "nights"           "now"             
## [43381] "said"             "sam"              "grrr"            
## [43384] "eyes"             "give"             "turn"            
## [43387] "perhaps"          "weve"             "shaken"          
## [43390] "last"             "miserable"        "slinker"         
## [43393] "gollum"           "ill"              "give"            
## [43396] "gollum"           "throat"           "ever"            
## [43399] "get"              "hands"            "neck"            
## [43402] "hope"             "youll"            "never"           
## [43405] "need"             "said"             "frodo"           
## [43408] "dont"             "know"             "followed"        
## [43411] "us"               "may"              "hes"             
## [43414] "lost"             "us"               "say"             
## [43417] "dry"              "bleak"            "land"            
## [43420] "cant"             "leave"            "many"            
## [43423] "footprints"       "much"             "scent"           
## [43426] "even"             "snuffling"        "nose"            
## [43429] "hope"             "thats"            "way"             
## [43432] "said"             "sam"              "wish"            
## [43435] "rid"              "good"             "said"            
## [43438] "frodo"            "hes"              "chief"           
## [43441] "trouble"          "wish"             "get"             
## [43444] "away"             "hills"            "hate"            
## [43447] "feel"             "naked"            "east"            
## [43450] "side"             "stuck"            "nothing"         
## [43453] "dead"             "flats"            "shadow"          
## [43456] "yonder"           "theres"           "eye"             
## [43459] "come"             "weve"             "got"             
## [43462] "get"              "today"            "somehow"         
## [43465] "day"              "wore"             "afternoon"       
## [43468] "faded"            "towards"          "evening"         
## [43471] "still"            "scrambling"       "along"           
## [43474] "ridge"            "found"            "way"             
## [43477] "escape"           "sometimes"        "silence"         
## [43480] "barren"           "country"          "fancied"         
## [43483] "heard"            "faint"            "sounds"          
## [43486] "behind"           "stone"            "falling"         
## [43489] "imagined"         "step"             "flapping"        
## [43492] "feet"             "rock"             "halted"          
## [43495] "stood"            "still"            "listening"       
## [43498] "heard"            "nothing"          "wind"            
## [43501] "sighing"          "edges"            "stones"          
## [43504] "yet"              "even"             "reminded"        
## [43507] "breath"           "softly"           "hissing"         
## [43510] "sharp"            "teeth"            "day"             
## [43513] "outer"            "ridge"            "emyn"            
## [43516] "muil"             "bending"          "gradually"       
## [43519] "northward"        "struggled"        "along"           
## [43522] "brink"            "now"              "stretched"       
## [43525] "wide"             "tumbled"          "flat"            
## [43528] "scored"           "weathered"        "rock"            
## [43531] "cut"              "every"            "now"             
## [43534] "trench"           "like"             "gullies"         
## [43537] "sloped"           "steeply"          "deep"            
## [43540] "notches"          "cliff"            "face"            
## [43543] "find"             "path"             "clefts"          
## [43546] "becoming"         "deeper"           "frequent"        
## [43549] "frodo"            "sam"              "driven"          
## [43552] "left"             "well"             "away"            
## [43555] "edge"             "notice"           "several"         
## [43558] "miles"            "going"            "slowly"          
## [43561] "steadily"         "downhill"         "cliff"           
## [43564] "top"              "sinking"          "towards"         
## [43567] "level"            "lowlands"         "last"            
## [43570] "brought"          "halt"             "ridge"           
## [43573] "took"             "sharper"          "bend"            
## [43576] "northward"        "gashed"           "deeper"          
## [43579] "ravine"           "side"             "reared"          
## [43582] "many"             "fathoms"          "single"          
## [43585] "leap"             "great"            "grey"            
## [43588] "cliff"            "loomed"           "cut"             
## [43591] "sheer"            "knife"            "stroke"          
## [43594] "go"               "forwards"         "must"            
## [43597] "turn"             "now"              "either"          
## [43600] "west"             "east"             "west"            
## [43603] "lead"             "labour"           "delay"           
## [43606] "back"             "towards"          "heart"           
## [43609] "hills"            "east"             "take"            
## [43612] "outer"            "precipice"        "theres"          
## [43615] "nothing"          "scramble"         "gully"           
## [43618] "sam"              "said"             "frodo"           
## [43621] "lets"             "see"              "leads"           
## [43624] "nasty"            "drop"             "ill"             
## [43627] "bet"              "said"             "sam"             
## [43630] "cleft"            "longer"           "deeper"          
## [43633] "seemed"           "way"              "found"           
## [43636] "gnarled"          "stunted"          "trees"           
## [43639] "first"            "seen"             "days"            
## [43642] "twisted"          "birch"            "part"            
## [43645] "fir"              "tree"             "many"            
## [43648] "dead"             "gaunt"            "bitten"          
## [43651] "core"             "eastern"          "winds"           
## [43654] "milder"           "days"             "must"            
## [43657] "fair"             "thicket"          "ravine"          
## [43660] "now"              "fifty"            "yards"           
## [43663] "trees"            "came"             "end"             
## [43666] "though"           "old"              "broken"          
## [43669] "stumps"           "straggled"        "almost"          
## [43672] "cliffs"           "brink"            "bottom"          
## [43675] "gully"            "lay"              "along"           
## [43678] "edge"             "rock"             "fault"           
## [43681] "rough"            "broken"           "stone"           
## [43684] "slanted"          "steeply"          "came"            
## [43687] "last"             "end"              "frodo"           
## [43690] "stooped"          "leaned"           "look"            
## [43693] "said"             "must"             "come"            
## [43696] "long"             "way"              "else"            
## [43699] "cliff"            "sunk"             "much"            
## [43702] "lower"            "looks"            "easier"          
## [43705] "sam"              "knelt"            "beside"          
## [43708] "peered"           "reluctantly"      "edge"            
## [43711] "glanced"          "great"            "cliff"           
## [43714] "rising"           "away"             "left"            
## [43717] "easier"           "grunted"          "well"            
## [43720] "suppose"          "always"           "easier"          
## [43723] "getting"          "cant"             "fly"             
## [43726] "can"              "jump"             "big"             
## [43729] "jump"             "still"            "said"            
## [43732] "frodo"            "well"             "stood"           
## [43735] "moment"           "measuring"        "eyes"            
## [43738] "eighteen"         "fathoms"          "guess"           
## [43741] "thats"            "enough"           "said"            
## [43744] "sam"              "ugh"              "hate"            
## [43747] "looking"          "height"           "lookings"        
## [43750] "better"           "climbing"         "said"            
## [43753] "frodo"            "think"            "climb"           
## [43756] "think"            "shall"            "try"             
## [43759] "see"              "rock"             "quite"           
## [43762] "different"        "miles"            "back"            
## [43765] "slipped"          "cracked"          "outer"           
## [43768] "fall"             "indeed"           "longer"          
## [43771] "sheer"            "sloped"           "outwards"        
## [43774] "little"           "looked"           "like"            
## [43777] "great"            "rampart"          "sea"             
## [43780] "wall"             "whose"            "foundations"     
## [43783] "shifted"          "courses"          "twisted"         
## [43786] "disordered"       "leaving"          "great"           
## [43789] "fissures"         "long"             "slanting"        
## [43792] "edges"            "places"           "almost"          
## [43795] "wide"             "stairs"           "going"           
## [43798] "try"              "get"              "better"          
## [43801] "try"              "getting"          "dark"            
## [43804] "early"            "think"            "theres"          
## [43807] "storm"            "coming"           "smoky"           
## [43810] "blur"             "mountains"        "east"            
## [43813] "lost"             "deeper"           "blackness"       
## [43816] "already"          "reaching"         "westwards"       
## [43819] "long"             "arms"             "distant"         
## [43822] "mutter"           "thunder"          "borne"           
## [43825] "rising"           "breeze"           "frodo"           
## [43828] "sniffed"          "air"              "looked"          
## [43831] "doubtfully"       "sky"              "strapped"        
## [43834] "belt"             "outside"          "cloak"           
## [43837] "tightened"        "settled"          "light"           
## [43840] "pack"             "back"             "stepped"         
## [43843] "towards"          "edge"             "im"              
## [43846] "going"            "try"              "said"            
## [43849] "good"             "said"             "sam"             
## [43852] "gloomily"         "im"               "going"           
## [43855] "first"            "said"             "frodo"           
## [43858] "whats"            "made"             "change"          
## [43861] "mind"             "climbing"         "havent"          
## [43864] "changed"          "mind"             "sense"           
## [43867] "put"              "one"              "lowest"          
## [43870] "likely"           "slip"             "dont"            
## [43873] "want"             "come"             "atop"            
## [43876] "knock"            "sense"            "killing"         
## [43879] "two"              "one"              "fall"            
## [43882] "frodo"            "stop"             "sat"             
## [43885] "swung"            "legs"             "brink"           
## [43888] "twisted"          "round"            "scrabbling"      
## [43891] "toes"             "foothold"         "doubtful"        
## [43894] "ever"             "anything"         "braver"          
## [43897] "cold"             "blood"            "unwise"          
## [43900] "sam"              "old"              "ass"             
## [43903] "said"             "frodo"            "youll"           
## [43906] "kill"             "certain"          "going"           
## [43909] "like"             "without"          "even"            
## [43912] "look"             "see"              "make"            
## [43915] "come"             "back"             "took"            
## [43918] "sam"              "armpits"          "hauled"          
## [43921] "now"              "wait"             "bit"             
## [43924] "patient"          "said"             "lay"             
## [43927] "ground"           "leaning"          "looking"         
## [43930] "light"            "seemed"           "fading"          
## [43933] "quickly"          "although"         "sun"             
## [43936] "yet"              "set"              "think"           
## [43939] "manage"           "said"             "presently"       
## [43942] "rate"             "kept"             "head"            
## [43945] "followed"         "carefully"        "dont"            
## [43948] "know"             "can"              "sure"            
## [43951] "said"             "sam"              "cant"            
## [43954] "see"              "bottom"           "light"           
## [43957] "comes"            "place"            "theres"          
## [43960] "nowhere"          "put"              "feet"            
## [43963] "hands"            "climb"            "back"            
## [43966] "suppose"          "said"             "frodo"           
## [43969] "easy"             "said"             "objected"        
## [43972] "sam"              "better"           "wait"            
## [43975] "till"             "morning"          "light"           
## [43978] "can"              "help"             "said"            
## [43981] "frodo"            "sudden"           "strange"         
## [43984] "vehemence"        "grudge"           "every"           
## [43987] "hour"             "every"            "minute"          
## [43990] "im"               "going"            "try"             
## [43993] "dont"             "follow"           "till"            
## [43996] "come"             "back"             "call"            
## [43999] "gripping"         "stony"            "lip"             
## [44002] "fall"             "fingers"          "let"             
## [44005] "gently"           "arms"             "almost"          
## [44008] "full"             "stretch"          "toes"            
## [44011] "found"            "ledge"            "step"            
## [44014] "said"             "ledge"            "broadens"        
## [44017] "right"            "stand"            "without"         
## [44020] "hold"             "ill"              "words"           
## [44023] "cut"              "short"            "hurrying"        
## [44026] "darkness"         "now"              "gathering"       
## [44029] "great"            "speed"            "rushed"          
## [44032] "east"             "swallowed"        "sky"             
## [44035] "dry"              "splitting"        "crack"           
## [44038] "thunder"          "right"            "overhead"        
## [44041] "searing"          "lightning"        "smote"           
## [44044] "hills"            "came"             "blast"           
## [44047] "savage"           "wind"             "mingling"        
## [44050] "roar"             "came"             "high"            
## [44053] "shrill"           "shriek"           "hobbits"         
## [44056] "heard"            "just"             "cry"             
## [44059] "far"              "away"             "marish"          
## [44062] "fled"             "hobbiton"         "even"            
## [44065] "woods"            "shire"            "frozen"          
## [44068] "blood"            "waste"            "terror"          
## [44071] "far"              "greater"          "pierced"         
## [44074] "cold"             "blades"           "horror"          
## [44077] "despair"          "stopping"         "heart"           
## [44080] "breath"           "sam"              "fell"            
## [44083] "flat"             "face"             "involuntarily"   
## [44086] "frodo"            "loosed"           "hold"            
## [44089] "put"              "hands"            "head"            
## [44092] "ears"             "swayed"           "slipped"         
## [44095] "slithered"        "downwards"        "wailing"         
## [44098] "cry"              "sam"              "heard"           
## [44101] "crawled"          "effort"           "edge"            
## [44104] "master"           "master"           "called"          
## [44107] "master"           "heard"            "answer"          
## [44110] "found"            "shaking"          "gathered"        
## [44113] "breath"           "shouted"          "master"          
## [44116] "wind"             "seemed"           "blow"            
## [44119] "voice"            "back"             "throat"          
## [44122] "passed"           "roaring"          "gully"           
## [44125] "away"             "hills"            "faint"           
## [44128] "answering"        "cry"              "came"            
## [44131] "ears"             "right"            "right"           
## [44134] "im"               "cant"             "see"             
## [44137] "frodo"            "calling"          "weak"            
## [44140] "voice"            "actually"         "far"             
## [44143] "away"             "slid"             "fallen"          
## [44146] "come"             "jolt"             "feet"            
## [44149] "wider"            "ledge"            "many"            
## [44152] "yards"            "lower"            "fortunately"     
## [44155] "rock"             "face"             "point"           
## [44158] "leaned"           "well"             "back"            
## [44161] "wind"             "pressed"          "cliff"           
## [44164] "toppled"          "steadied"         "little"          
## [44167] "laying"           "face"             "cold"            
## [44170] "stone"            "feeling"          "heart"           
## [44173] "pounding"         "either"           "darkness"        
## [44176] "grown"            "complete"         "else"            
## [44179] "eyes"             "lost"             "sight"           
## [44182] "black"            "wondered"         "struck"          
## [44185] "blind"            "took"             "deep"            
## [44188] "breath"           "come"             "back"            
## [44191] "come"             "back"             "heard"           
## [44194] "sams"             "voice"            "blackness"       
## [44197] "cant"             "said"             "cant"            
## [44200] "see"              "cant"             "find"            
## [44203] "hold"             "cant"             "move"            
## [44206] "yet"              "can"              "mr"              
## [44209] "frodo"            "can"              "shouted"         
## [44212] "sam"              "leaning"          "dangerously"     
## [44215] "far"              "master"           "see"             
## [44218] "dim"              "certainly"        "dark"            
## [44221] "see"              "frodo"            "grey"            
## [44224] "forlorn"          "figure"           "splayed"         
## [44227] "cliff"            "far"              "reach"           
## [44230] "helping"          "hand"             "another"         
## [44233] "crack"            "thunder"          "rain"            
## [44236] "came"             "blinding"         "sheet"           
## [44239] "mingled"          "hail"             "drove"           
## [44242] "cliff"            "bitter"           "cold"            
## [44245] "im"               "coming"           "shouted"         
## [44248] "sam"              "though"           "hoped"           
## [44251] "help"             "way"              "said"            
## [44254] "wait"             "frodo"            "called"          
## [44257] "back"             "strongly"         "now"             
## [44260] "shall"            "better"           "soon"            
## [44263] "feel"             "better"           "already"         
## [44266] "wait"             "cant"             "anything"        
## [44269] "without"          "rope"             "rope"            
## [44272] "cried"            "sam"              "talking"         
## [44275] "wildly"           "excitement"       "relief"          
## [44278] "well"             "dont"             "deserve"         
## [44281] "hung"             "end"              "one"             
## [44284] "warning"          "numbskulls"       "youre"           
## [44287] "nowt"             "ninnyhammer"      "sam"             
## [44290] "gamgee"           "thats"            "gaffer"          
## [44293] "said"             "often"            "enough"          
## [44296] "word"             "rope"             "stop"            
## [44299] "chattering"       "cried"            "frodo"           
## [44302] "now"              "recovered"        "enough"          
## [44305] "feel"             "amused"           "annoyed"         
## [44308] "never"            "mind"             "gaffer"          
## [44311] "trying"           "tell"             "youve"           
## [44314] "got"              "rope"             "pocket"          
## [44317] "yes"              "mr"               "frodo"           
## [44320] "pack"             "carried"          "hundreds"        
## [44323] "miles"            "id"               "clean"           
## [44326] "forgotten"        "get"              "busy"            
## [44329] "let"              "end"              "quickly"         
## [44332] "sam"              "unslung"          "pack"            
## [44335] "rummaged"         "indeed"           "bottom"          
## [44338] "coil"             "silken"           "grey"            
## [44341] "rope"             "made"             "folk"            
## [44344] "lórien"           "cast"             "end"             
## [44347] "master"           "darkness"         "seemed"          
## [44350] "lift"             "frodos"           "eyes"            
## [44353] "else"             "sight"            "returning"       
## [44356] "see"              "grey"             "line"            
## [44359] "came"             "dangling"         "thought"         
## [44362] "faint"            "silver"           "sheen"           
## [44365] "now"              "point"            "darkness"        
## [44368] "fix"              "eyes"             "felt"            
## [44371] "less"             "giddy"            "leaning"         
## [44374] "weight"           "forward"          "made"            
## [44377] "end"              "fast"             "round"           
## [44380] "waist"            "grasped"          "line"            
## [44383] "hands"            "sam"              "stepped"         
## [44386] "back"             "braced"           "feet"            
## [44389] "stump"            "yard"             "two"             
## [44392] "edge"             "half"             "hauled"          
## [44395] "half"             "scrambling"       "frodo"           
## [44398] "came"             "threw"            "ground"          
## [44401] "thunder"          "growled"          "rumbled"         
## [44404] "distance"         "rain"             "still"           
## [44407] "falling"          "heavily"          "hobbits"         
## [44410] "crawled"          "away"             "back"            
## [44413] "gully"            "find"             "much"            
## [44416] "shelter"          "rills"            "water"           
## [44419] "began"            "run"              "soon"            
## [44422] "grew"             "spate"            "splashed"        
## [44425] "fumed"            "stones"           "spouted"         
## [44428] "cliff"            "like"             "gutters"         
## [44431] "vast"             "roof"             "half"            
## [44434] "drowned"          "washed"           "clean"           
## [44437] "said"             "frodo"            "piece"           
## [44440] "luck"             "rope"             "better"          
## [44443] "luck"             "id"               "thought"         
## [44446] "sooner"           "said"             "sam"             
## [44449] "maybe"            "remember"         "putting"         
## [44452] "ropes"            "boats"            "started"         
## [44455] "elvish"           "country"          "took"            
## [44458] "fancy"            "stowed"           "coil"            
## [44461] "pack"             "years"            "ago"             
## [44464] "seems"            "may"              "help"            
## [44467] "many"             "needs"            "said"            
## [44470] "haldir"           "one"              "folk"            
## [44473] "spoke"            "right"            "pity"            
## [44476] "didnt"            "think"            "bringing"        
## [44479] "another"          "length"           "said"            
## [44482] "frodo"            "left"             "company"         
## [44485] "hurry"            "confusion"        "enough"          
## [44488] "use"              "get"              "long"            
## [44491] "rope"             "wonder"           "sam"             
## [44494] "paid"             "slowly"           "measuring"       
## [44497] "arms"             "five"             "ten"             
## [44500] "twenty"           "thirty"           "ells"            
## [44503] "less"             "said"             "whod"            
## [44506] "thought"          "frodo"            "exclaimed"       
## [44509] "ah"               "said"             "sam"             
## [44512] "elves"            "wonderful"        "folk"            
## [44515] "looks"            "bit"              "thin"            
## [44518] "tough"            "soft"             "milk"            
## [44521] "hand"             "packs"            "close"           
## [44524] "light"            "light"            "wonderful"       
## [44527] "folk"             "sure"             "thirty"          
## [44530] "ells"             "said"             "frodo"           
## [44533] "considering"      "believe"          "enough"          
## [44536] "storm"            "passes"           "nightfall"       
## [44539] "im"               "going"            "try"             
## [44542] "rains"            "nearly"           "given"           
## [44545] "already"          "said"             "sam"             
## [44548] "dont"             "go"               "anything"        
## [44551] "risky"            "dim"              "mr"              
## [44554] "frodo"            "havent"           "got"             
## [44557] "shriek"           "wind"             "yet"             
## [44560] "like"             "black"            "rider"           
## [44563] "sounded"          "one"              "air"             
## [44566] "can"              "fly"              "im"              
## [44569] "thinking"         "wed"              "best"            
## [44572] "lay"              "crack"            "till"            
## [44575] "nights"           "im"               "thinking"        
## [44578] "wont"             "spend"            "moment"          
## [44581] "longer"           "need"             "stuck"           
## [44584] "edge"             "eyes"             "dark"            
## [44587] "country"          "looking"          "marshes"         
## [44590] "said"             "frodo"            "stood"           
## [44593] "went"             "bottom"           "gully"           
## [44596] "looked"           "clear"            "sky"             
## [44599] "growing"          "east"             "skirts"          
## [44602] "storm"            "lifting"          "ragged"          
## [44605] "wet"              "main"             "battle"          
## [44608] "passed"           "spread"           "great"           
## [44611] "wings"            "emyn"             "muil"            
## [44614] "upon"             "dark"             "thought"         
## [44617] "sauron"           "brooded"          "thence"          
## [44620] "turned"           "smiting"          "vale"            
## [44623] "anduin"           "hail"             "lightning"       
## [44626] "casting"          "shadow"           "upon"            
## [44629] "minas"            "tirith"           "threat"          
## [44632] "war"              "lowering"         "mountains"       
## [44635] "gathering"        "great"            "spires"          
## [44638] "rolled"           "slowly"           "gondor"          
## [44641] "skirts"           "rohan"            "far"             
## [44644] "away"             "riders"           "plain"           
## [44647] "saw"              "black"            "towers"          
## [44650] "moving"           "behind"           "sun"             
## [44653] "rode"             "west"             "desert"          
## [44656] "reeking"          "marshes"          "deep"            
## [44659] "blue"             "sky"              "evening"         
## [44662] "opened"           "pallid"           "stars"           
## [44665] "appeared"         "like"             "small"           
## [44668] "white"            "holes"            "canopy"          
## [44671] "crescent"         "moon"             "good"            
## [44674] "able"             "see"              "said"            
## [44677] "frodo"            "breathing"        "deep"            
## [44680] "know"             "thought"          "bit"             
## [44683] "lost"             "sight"            "lightning"       
## [44686] "something"        "else"             "worse"           
## [44689] "see"              "nothing"          "nothing"         
## [44692] "grey"             "rope"             "came"            
## [44695] "seemed"           "shimmer"          "somehow"         
## [44698] "look"             "sort"             "silver"          
## [44701] "dark"             "said"             "sam"             
## [44704] "never"            "noticed"          "though"          
## [44707] "cant"             "remember"         "ive"             
## [44710] "ever"             "since"            "first"           
## [44713] "stowed"           "youre"            "set"             
## [44716] "climbing"         "mr"               "frodo"           
## [44719] "going"            "use"              "thirty"          
## [44722] "ells"             "say"              "eighteen"        
## [44725] "fathom"           "thats"            "guess"           
## [44728] "height"           "cliff"            "frodo"           
## [44731] "thought"          "make"             "fast"            
## [44734] "stump"            "sam"              "said"            
## [44737] "think"            "shall"            "wish"            
## [44740] "time"             "go"               "first"           
## [44743] "ill"              "lower"            "need"            
## [44746] "use"              "feet"             "hands"           
## [44749] "fend"             "rock"             "though"          
## [44752] "put"              "weight"           "ledges"          
## [44755] "give"             "rest"             "help"            
## [44758] "youre"            "ill"              "follow"          
## [44761] "feel"             "quite"            "now"             
## [44764] "well"             "said"             "sam"             
## [44767] "heavily"          "must"             "lets"            
## [44770] "get"              "took"             "rope"            
## [44773] "made"             "fast"             "stump"           
## [44776] "nearest"          "brink"            "end"             
## [44779] "tied"             "waist"            "reluctantly"     
## [44782] "turned"           "prepared"         "go"              
## [44785] "edge"             "second"           "time"            
## [44788] "however"          "turn"             "half"            
## [44791] "bad"              "expected"         "rope"            
## [44794] "seemed"           "give"             "confidence"      
## [44797] "though"           "shut"             "eyes"            
## [44800] "looked"           "feet"             "one"             
## [44803] "awkward"          "spot"             "ledge"           
## [44806] "wall"             "sheer"            "even"            
## [44809] "undercut"         "short"            "space"           
## [44812] "slipped"          "swung"            "silver"          
## [44815] "line"             "frodo"            "lowered"         
## [44818] "slowly"           "steadily"         "last"            
## [44821] "chief"            "fear"             "rope"            
## [44824] "length"           "give"             "still"           
## [44827] "high"             "still"            "good"            
## [44830] "bight"            "frodos"           "hands"           
## [44833] "sam"              "came"             "bottom"          
## [44836] "called"           "im"               "voice"           
## [44839] "came"             "clearly"          "frodo"           
## [44842] "see"              "grey"             "elven"           
## [44845] "cloak"            "melted"           "twilight"        
## [44848] "frodo"            "took"             "rather"          
## [44851] "time"             "follow"           "rope"            
## [44854] "waist"            "fast"             "shortened"       
## [44857] "pull"             "reached"          "ground"          
## [44860] "still"            "want"             "risk"            
## [44863] "fall"             "quite"            "sams"            
## [44866] "faith"            "slender"          "grey"            
## [44869] "line"             "found"            "two"             
## [44872] "places"           "trust"            "wholly"          
## [44875] "smooth"           "surfaces"         "hold"            
## [44878] "even"             "strong"           "hobbit"          
## [44881] "fingers"          "ledges"           "far"             
## [44884] "apart"            "last"             "well"            
## [44887] "cried"            "weve"             "done"            
## [44890] "weve"             "escaped"          "emyn"            
## [44893] "muil"             "now"              "next"            
## [44896] "wonder"           "maybe"            "shall"           
## [44899] "soon"             "sighing"          "good"            
## [44902] "hard"             "rock"             "foot"            
## [44905] "sam"              "answer"           "staring"         
## [44908] "back"             "cliff"            "ninnyhammers"    
## [44911] "said"             "noodles"          "beautiful"       
## [44914] "rope"             "tied"             "stump"           
## [44917] "bottom"           "just"             "nice"            
## [44920] "little"           "stair"            "slinking"        
## [44923] "gollum"           "leave"            "better"          
## [44926] "put"              "signpost"         "say"             
## [44929] "way"              "weve"             "gone"            
## [44932] "thought"          "seemed"           "bit"             
## [44935] "easy"             "can"              "think"           
## [44938] "way"              "used"             "rope"            
## [44941] "yet"              "brought"          "us"              
## [44944] "can"              "pass"             "ninnyhammer"     
## [44947] "name"             "gaffer"           "gave"            
## [44950] "said"             "frodo"            "climb"           
## [44953] "untie"            "let"              "want"            
## [44956] "sam"              "scratched"        "head"            
## [44959] "cant"             "think"            "begging"         
## [44962] "pardon"           "said"             "dont"            
## [44965] "like"             "leaving"          "thats"           
## [44968] "fact"             "stroked"          "ropes"           
## [44971] "end"              "shook"            "gently"          
## [44974] "goes"             "hard"             "parting"         
## [44977] "anything"         "brought"          "elf"             
## [44980] "country"          "made"             "galadriel"       
## [44983] "maybe"            "galadriel"        "murmured"        
## [44986] "nodding"          "head"             "mournfully"      
## [44989] "looked"           "gave"             "one"             
## [44992] "last"             "pull"             "rope"            
## [44995] "farewell"         "complete"         "surprise"        
## [44998] "hobbits"          "came"             "loose"           
## [45001] "sam"              "fell"             "long"            
## [45004] "grey"             "coils"            "slithered"       
## [45007] "silently"         "top"              "frodo"           
## [45010] "laughed"          "tied"             "rope"            
## [45013] "said"             "good"             "thing"           
## [45016] "held"             "long"             "think"           
## [45019] "trusted"          "weight"           "knot"            
## [45022] "sam"              "laugh"            "may"             
## [45025] "much"             "good"             "climbing"        
## [45028] "mr"               "frodo"            "said"            
## [45031] "injured"          "tones"            "know"            
## [45034] "something"        "rope"             "knots"           
## [45037] "family"           "might"            "say"             
## [45040] "grand"            "dad"              "uncle"           
## [45043] "andy"             "gaffers"          "eldest"          
## [45046] "brother"          "rope"             "walk"            
## [45049] "tighfield"        "many"             "year"            
## [45052] "put"              "fast"             "hitch"           
## [45055] "stump"            "one"              "done"            
## [45058] "shire"            "rope"             "must"            
## [45061] "broken"           "frayed"           "rock"            
## [45064] "edge"             "expect"           "said"            
## [45067] "frodo"            "bet"              "didnt"           
## [45070] "said"             "sam"              "even"            
## [45073] "injured"          "voice"            "stooped"         
## [45076] "examined"         "ends"             "hasnt"           
## [45079] "neither"          "strand"           "im"              
## [45082] "afraid"           "must"             "knot"            
## [45085] "said"             "frodo"            "sam"             
## [45088] "shook"            "head"             "answer"          
## [45091] "passing"          "rope"             "fingers"         
## [45094] "thoughtfully"     "way"              "mr"              
## [45097] "frodo"            "said"             "last"            
## [45100] "think"            "rope"             "came"            
## [45103] "called"           "coiled"           "stowed"          
## [45106] "lovingly"         "pack"             "certainly"       
## [45109] "came"             "said"             "frodo"           
## [45112] "thats"            "chief"            "thing"           
## [45115] "now"              "weve"             "got"             
## [45118] "think"            "next"             "move"            
## [45121] "night"            "us"               "soon"            
## [45124] "beautiful"        "stars"            "moon"            
## [45127] "cheer"            "heart"            "dont"            
## [45130] "said"             "sam"              "looking"         
## [45133] "elvish"           "somehow"          "moons"           
## [45136] "growing"          "havent"           "seen"            
## [45139] "night"            "two"              "cloudy"          
## [45142] "weather"          "hes"              "beginning"       
## [45145] "give"             "quite"            "light"           
## [45148] "yes"              "said"             "frodo"           
## [45151] "wont"             "full"             "days"            
## [45154] "dont"             "think"            "well"            
## [45157] "try"              "marshes"          "light"           
## [45160] "half"             "moon"             "first"           
## [45163] "shadows"          "night"            "started"         
## [45166] "next"             "stage"            "journey"         
## [45169] "sam"              "turned"           "looked"          
## [45172] "back"             "way"              "come"            
## [45175] "mouth"            "gully"            "black"           
## [45178] "notch"            "dim"              "cliff"           
## [45181] "im"               "glad"             "weve"            
## [45184] "got"              "rope"             "said"            
## [45187] "weve"             "set"              "little"          
## [45190] "puzzle"           "footpad"          "anyhow"          
## [45193] "can"              "try"              "nasty"           
## [45196] "flappy"           "feet"             "ledges"          
## [45199] "picked"           "steps"            "away"            
## [45202] "skirts"           "cliff"            "among"           
## [45205] "wilderness"       "boulders"         "rough"           
## [45208] "stones"           "wet"              "slippery"        
## [45211] "heavy"            "rain"             "ground"          
## [45214] "still"            "fell"             "away"            
## [45217] "sharply"          "gone"             "far"             
## [45220] "came"             "upon"             "great"           
## [45223] "fissure"          "yawned"           "suddenly"        
## [45226] "black"            "feet"             "wide"            
## [45229] "wide"             "jump"             "across"          
## [45232] "dim"              "light"            "thought"         
## [45235] "hear"             "water"            "gurgling"        
## [45238] "depths"           "curved"           "away"            
## [45241] "left"             "northward"        "back"            
## [45244] "towards"          "hills"            "barred"          
## [45247] "road"             "direction"        "rate"            
## [45250] "darkness"         "lasted"           "better"          
## [45253] "try"              "way"              "back"            
## [45256] "southwards"       "along"            "line"            
## [45259] "cliff"            "think"            "said"            
## [45262] "sam"              "might"            "find"            
## [45265] "nook"             "even"             "cave"            
## [45268] "something"        "suppose"          "said"            
## [45271] "frodo"            "im"               "tired"           
## [45274] "dont"             "think"            "can"             
## [45277] "scramble"         "among"            "stones"          
## [45280] "much"             "longer"           "tonight"         
## [45283] "though"           "grudge"           "delay"           
## [45286] "wish"             "clear"            "path"            
## [45289] "front"            "us"               "id"              
## [45292] "go"               "till"             "legs"            
## [45295] "gave"             "way"              "find"            
## [45298] "going"            "easier"           "broken"          
## [45301] "feet"             "emyn"             "muil"            
## [45304] "sam"              "find"             "nook"            
## [45307] "hollow"           "shelter"          "bare"            
## [45310] "stony"            "slopes"           "frowned"         
## [45313] "cliff"            "now"              "rose"            
## [45316] "higher"           "sheer"            "went"            
## [45319] "back"             "end"              "worn"            
## [45322] "just"             "cast"             "ground"          
## [45325] "lee"              "boulder"          "lying"           
## [45328] "far"              "foot"             "precipice"       
## [45331] "time"             "sat"              "huddled"         
## [45334] "mournfully"       "together"         "cold"            
## [45337] "stony"            "night"            "sleep"           
## [45340] "crept"            "upon"             "spite"           
## [45343] "hold"             "moon"             "now"             
## [45346] "rode"             "high"             "clear"           
## [45349] "thin"             "white"            "light"           
## [45352] "lit"              "faces"            "rocks"           
## [45355] "drenched"         "cold"             "frowning"        
## [45358] "walls"            "cliff"            "turning"         
## [45361] "wide"             "looming"          "darkness"        
## [45364] "chill"            "pale"             "grey"            
## [45367] "scored"           "black"            "shadows"         
## [45370] "well"             "said"             "frodo"           
## [45373] "standing"         "drawing"          "cloak"           
## [45376] "closely"          "round"            "sleep"           
## [45379] "bit"              "sam"              "take"            
## [45382] "blanket"          "ill"              "walk"            
## [45385] "sentry"           "suddenly"         "stiffened"       
## [45388] "stooping"         "gripped"          "sam"             
## [45391] "arm"              "whats"            "whispered"       
## [45394] "look"             "cliff"            "sam"             
## [45397] "looked"           "breathed"         "sharply"         
## [45400] "teeth"            "ssss"             "said"            
## [45403] "thats"            "gollum"           "snakes"          
## [45406] "adders"           "think"            "thought"         
## [45409] "wed"              "puzzle"           "bit"             
## [45412] "climb"            "look"             "like"            
## [45415] "nasty"            "crawling"         "spider"          
## [45418] "wall"             "face"             "precipice"       
## [45421] "sheer"            "almost"           "smooth"          
## [45424] "seemed"           "pale"             "moonlight"       
## [45427] "small"            "black"            "shape"           
## [45430] "moving"           "thin"             "limbs"           
## [45433] "splayed"          "maybe"            "soft"            
## [45436] "clinging"         "hands"            "toes"            
## [45439] "finding"          "crevices"         "holds"           
## [45442] "hobbit"           "ever"             "seen"            
## [45445] "used"             "looked"           "just"            
## [45448] "creeping"         "sticky"           "pads"            
## [45451] "like"             "large"            "prowling"        
## [45454] "thing"            "insect"           "kind"            
## [45457] "coming"           "head"             "first"           
## [45460] "smelling"         "way"              "now"             
## [45463] "lifted"           "head"             "slowly"          
## [45466] "turning"          "right"            "back"            
## [45469] "long"             "skinny"           "neck"            
## [45472] "hobbits"          "caught"           "glimpse"         
## [45475] "two"              "small"            "pale"            
## [45478] "gleaming"         "lights"           "eyes"            
## [45481] "blinked"          "moon"             "moment"          
## [45484] "quickly"          "lidded"           "think"           
## [45487] "can"              "see"              "us"              
## [45490] "said"             "sam"              "dont"            
## [45493] "know"             "said"             "frodo"           
## [45496] "quietly"          "think"            "hard"            
## [45499] "even"             "friendly"         "eyes"            
## [45502] "see"              "elven"            "cloaks"          
## [45505] "see"              "shadow"           "even"            
## [45508] "paces"            "ive"              "heard"           
## [45511] "doesnt"           "like"             "sun"             
## [45514] "moon"             "coming"           "just"            
## [45517] "asked"            "sam"              "quietly"         
## [45520] "sam"              "said"             "frodo"           
## [45523] "can"              "smell"            "us"              
## [45526] "perhaps"          "can"              "hear"            
## [45529] "keen"             "elves"            "believe"         
## [45532] "think"            "heard"            "something"       
## [45535] "now"              "voices"           "probably"        
## [45538] "lot"              "shouting"         "away"            
## [45541] "back"             "talking"          "far"             
## [45544] "loudly"           "minute"           "ago"             
## [45547] "well"             "im"               "sick"            
## [45550] "said"             "sam"              "hes"             
## [45553] "come"             "often"            "im"              
## [45556] "going"            "word"             "can"             
## [45559] "dont"             "suppose"          "give"            
## [45562] "slip"             "now"              "anyway"          
## [45565] "drawing"          "grey"             "hood"            
## [45568] "well"             "face"             "sam"             
## [45571] "crept"            "stealthily"       "towards"         
## [45574] "cliff"            "careful"          "whispered"       
## [45577] "frodo"            "coming"           "behind"          
## [45580] "dont"             "alarm"            "hes"             
## [45583] "much"             "dangerous"        "looks"           
## [45586] "black"            "crawling"         "shape"           
## [45589] "now"              "three"            "quarters"        
## [45592] "way"              "perhaps"          "fifty"           
## [45595] "feet"             "less"             "cliffs"          
## [45598] "foot"             "crouching"        "stone"           
## [45601] "still"            "shadow"           "large"           
## [45604] "boulder"          "hobbits"          "watched"         
## [45607] "seemed"           "come"             "difficult"       
## [45610] "passage"          "troubled"         "something"       
## [45613] "hear"             "snuffling"        "now"             
## [45616] "harsh"            "hiss"             "breath"          
## [45619] "sounded"          "like"             "curse"           
## [45622] "lifted"           "head"             "thought"         
## [45625] "heard"            "spit"             "moved"           
## [45628] "now"              "hear"             "voice"           
## [45631] "creaking"         "whistling"        "ach"             
## [45634] "sss"              "cautious"         "precious"        
## [45637] "haste"            "less"             "speed"           
## [45640] "musstnt"          "rissk"            "neck"            
## [45643] "musst"            "precious"         "precious"        
## [45646] "gollum"           "lifted"           "head"            
## [45649] "blinked"          "moon"             "quickly"         
## [45652] "shut"             "eyes"             "hate"            
## [45655] "hissed"           "nassty"           "nassty"          
## [45658] "shivery"          "light"            "sss"             
## [45661] "spies"            "us"               "precious"        
## [45664] "hurts"            "eyes"             "getting"         
## [45667] "lower"            "now"              "hisses"          
## [45670] "became"           "sharper"          "clearer"         
## [45673] "iss"              "iss"              "precious"        
## [45676] "precious"         "wants"            "thieves"         
## [45679] "thieves"          "filthy"           "little"          
## [45682] "thieves"          "precious"         "curse"           
## [45685] "hates"            "doesnt"           "sound"           
## [45688] "knew"             "whispered"        "sam"             
## [45691] "whats"            "precious"         "mean"            
## [45694] "hsh"              "breathed"         "frodo"           
## [45697] "hes"              "getting"          "near"            
## [45700] "now"              "near"             "enough"          
## [45703] "hear"             "whisper"          "indeed"          
## [45706] "gollum"           "suddenly"         "paused"          
## [45709] "large"            "head"             "scrawny"         
## [45712] "neck"             "lolling"          "side"            
## [45715] "side"             "listening"        "pale"            
## [45718] "eyes"             "half"             "unlidded"        
## [45721] "sam"              "restrained"       "though"          
## [45724] "fingers"          "twitching"        "eyes"            
## [45727] "filled"           "anger"            "disgust"         
## [45730] "fixed"            "wretched"         "creature"        
## [45733] "now"              "began"            "move"            
## [45736] "still"            "whispering"       "hissing"         
## [45739] "last"             "dozen"            "feet"            
## [45742] "ground"           "right"            "heads"           
## [45745] "point"            "sheer"            "drop"            
## [45748] "cliff"            "slightly"         "undercut"        
## [45751] "even"             "gollum"           "find"            
## [45754] "hold"             "kind"             "seemed"          
## [45757] "trying"           "twist"            "round"           
## [45760] "go"               "legs"             "first"           
## [45763] "suddenly"         "shrill"           "whistling"       
## [45766] "shriek"           "fell"             "curled"          
## [45769] "legs"             "arms"             "round"           
## [45772] "like"             "spider"           "whose"           
## [45775] "descending"       "thread"           "snapped"         
## [45778] "sam"              "hiding"           "flash"           
## [45781] "crossed"          "space"            "cliff"           
## [45784] "foot"             "couple"           "leaps"           
## [45787] "gollum"           "get"              "top"             
## [45790] "found"            "gollum"           "bargained"       
## [45793] "even"             "taken"            "like"            
## [45796] "suddenly"         "guard"            "fall"            
## [45799] "sam"              "get"              "hold"            
## [45802] "long"             "legs"             "arms"            
## [45805] "wound"            "round"            "pinning"         
## [45808] "arms"             "clinging"         "grip"            
## [45811] "soft"             "horribly"         "strong"          
## [45814] "squeezing"        "like"             "slowly"          
## [45817] "tightening"       "cords"            "clammy"          
## [45820] "fingers"          "feeling"          "throat"          
## [45823] "sharp"            "teeth"            "bit"             
## [45826] "shoulder"         "butt"             "hard"            
## [45829] "round"            "head"             "sideways"        
## [45832] "creatures"        "face"             "gollum"          
## [45835] "hissed"           "spat"             "let"             
## [45838] "go"               "things"           "gone"            
## [45841] "ill"              "sam"              "alone"           
## [45844] "frodo"            "sprang"           "drew"            
## [45847] "sting"            "sheath"           "left"            
## [45850] "hand"             "drew"             "back"            
## [45853] "gollums"          "head"             "thin"            
## [45856] "lank"             "hair"             "stretching"      
## [45859] "long"             "neck"             "forcing"         
## [45862] "pale"             "venomous"         "eyes"            
## [45865] "stare"            "sky"              "let"             
## [45868] "go"               "gollum"           "said"            
## [45871] "sting"            "seen"             "upon"            
## [45874] "time"             "let"              "go"              
## [45877] "youll"            "feel"             "time"            
## [45880] "ill"              "cut"              "throat"          
## [45883] "gollum"           "collapsed"        "went"            
## [45886] "loose"            "wet"              "string"          
## [45889] "sam"              "got"              "fingering"       
## [45892] "shoulder"         "eyes"             "smouldered"      
## [45895] "anger"            "avenge"           "miserable"       
## [45898] "enemy"            "lay"              "grovelling"      
## [45901] "stones"           "whimpering"       "dont"            
## [45904] "hurt"             "us"               "dont"            
## [45907] "let"              "hurt"             "us"              
## [45910] "precious"         "wont"             "hurt"            
## [45913] "us"               "nice"             "little"          
## [45916] "hobbitses"        "didnt"            "mean"            
## [45919] "harm"             "jumps"            "us"              
## [45922] "like"             "cats"             "poor"            
## [45925] "mices"            "precious"         "lonely"          
## [45928] "gollum"           "well"             "nice"            
## [45931] "nice"             "theyll"           "nice"            
## [45934] "us"               "wont"             "yes"             
## [45937] "yess"             "well"             "whats"           
## [45940] "done"             "said"             "sam"             
## [45943] "tie"              "cant"             "come"            
## [45946] "sneaking"         "us"               "say"             
## [45949] "kill"             "us"               "kill"            
## [45952] "us"               "whimpered"        "gollum"          
## [45955] "cruel"            "little"           "hobbitses"       
## [45958] "tie"              "us"               "cold"            
## [45961] "hard"             "lands"            "leave"           
## [45964] "us"               "gollum"           "gollum"          
## [45967] "sobs"             "welled"           "gobbling"        
## [45970] "throat"           "said"             "frodo"           
## [45973] "kill"             "must"             "kill"            
## [45976] "outright"         "cant"             "things"          
## [45979] "poor"             "wretch"           "done"            
## [45982] "us"               "harm"             "oh"              
## [45985] "hasnt"            "said"             "sam"             
## [45988] "rubbing"          "shoulder"         "anyway"          
## [45991] "meant"            "means"            "ill"             
## [45994] "warrant"          "throttle"         "us"              
## [45997] "sleep"            "thats"            "plan"            
## [46000] "daresay"          "said"             "frodo"           
## [46003] "means"            "another"          "matter"          
## [46006] "paused"           "thought"          "gollum"          
## [46009] "lay"              "still"            "stopped"         
## [46012] "whimpering"       "sam"              "stood"           
## [46015] "glowering"        "seemed"           "frodo"           
## [46018] "heard"            "quite"            "plainly"         
## [46021] "far"              "voices"           "past"            
## [46024] "pity"             "bilbo"            "stub"            
## [46027] "vile"             "creature"         "chance"          
## [46030] "pity"             "pity"             "stayed"          
## [46033] "hand"             "pity"             "mercy"           
## [46036] "strike"           "without"          "need"            
## [46039] "feel"             "pity"             "gollum"          
## [46042] "deserves"         "death"            "deserves"        
## [46045] "death"            "daresay"          "many"            
## [46048] "live"             "deserve"          "death"           
## [46051] "die"              "deserve"          "life"            
## [46054] "can"              "give"             "eager"           
## [46057] "deal"             "death"            "name"            
## [46060] "justice"          "fearing"          "safety"          
## [46063] "even"             "wise"             "see"             
## [46066] "ends"             "well"             "answered"        
## [46069] "aloud"            "lowering"         "sword"           
## [46072] "still"            "afraid"           "yet"             
## [46075] "see"              "touch"            "creature"        
## [46078] "now"              "see"              "pity"            
## [46081] "sam"              "stared"           "master"          
## [46084] "seemed"           "speaking"         "one"             
## [46087] "gollum"           "lifted"           "head"            
## [46090] "yess"             "wretched"         "precious"        
## [46093] "whined"           "misery"           "misery"          
## [46096] "hobbits"          "wont"             "kill"            
## [46099] "us"               "nice"             "hobbits"         
## [46102] "wont"             "said"             "frodo"           
## [46105] "wont"             "let"              "go"              
## [46108] "either"           "youre"            "full"            
## [46111] "wickedness"       "mischief"         "gollum"          
## [46114] "come"             "us"               "thats"           
## [46117] "keep"             "eye"              "must"            
## [46120] "help"             "us"               "can"             
## [46123] "one"              "good"             "turn"            
## [46126] "deserves"         "another"          "yess"            
## [46129] "yes"              "indeed"           "said"            
## [46132] "gollum"           "sitting"          "nice"            
## [46135] "hobbits"          "come"             "find"            
## [46138] "safe"             "paths"            "dark"            
## [46141] "yes"              "going"            "cold"            
## [46144] "hard"             "lands"            "wonders"         
## [46147] "yes"              "wonders"          "looked"          
## [46150] "faint"            "light"            "cunning"         
## [46153] "eagerness"        "flickered"        "second"          
## [46156] "pale"             "blinking"         "eyes"            
## [46159] "sam"              "scowled"          "sucked"          
## [46162] "teeth"            "seemed"           "sense"           
## [46165] "something"        "odd"              "masters"         
## [46168] "mood"             "matter"           "beyond"          
## [46171] "argument"         "amazed"           "frodos"          
## [46174] "reply"            "frodo"            "looked"          
## [46177] "straight"         "gollums"          "eyes"            
## [46180] "flinched"         "twisted"          "away"            
## [46183] "know"             "guess"            "well"            
## [46186] "enough"           "sméagol"          "said"            
## [46189] "quietly"          "sternly"          "going"           
## [46192] "mordor"           "course"           "know"            
## [46195] "way"              "believe"          "ach"             
## [46198] "sss"              "said"             "gollum"          
## [46201] "covering"         "ears"             "hands"           
## [46204] "frankness"        "open"             "speaking"        
## [46207] "names"            "hurt"             "guessed"         
## [46210] "yes"              "guessed"          "whispered"       
## [46213] "didnt"            "want"             "go"              
## [46216] "precious"         "nice"             "hobbits"         
## [46219] "ashes"            "ashes"            "dust"            
## [46222] "thirst"           "pits"             "pits"            
## [46225] "pits"             "orcs"             "thousands"       
## [46228] "orcses"           "nice"             "hobbits"         
## [46231] "mustnt"           "go"               "sss"             
## [46234] "places"           "frodo"            "insisted"        
## [46237] "youre"            "drawn"            "back"            
## [46240] "arent"            "yess"             "yess"            
## [46243] "shrieked"         "gollum"           "accident"        
## [46246] "wasnt"            "precious"         "yes"             
## [46249] "accident"         "wont"             "go"              
## [46252] "back"             "suddenly"         "voice"           
## [46255] "language"         "changed"          "sobbed"          
## [46258] "throat"           "spoke"            "leave"           
## [46261] "alone"            "gollum"           "hurt"            
## [46264] "poor"             "hands"            "gollum"          
## [46267] "dont"             "want"             "come"            
## [46270] "back"             "cant"             "find"            
## [46273] "tired"            "cant"             "find"            
## [46276] "gollum"           "gollum"           "nowhere"         
## [46279] "theyre"           "always"           "awake"           
## [46282] "dwarves"          "men"              "elves"           
## [46285] "terrible"         "elves"            "bright"          
## [46288] "eyes"             "cant"             "find"            
## [46291] "ach"              "got"              "clenched"        
## [46294] "long"             "hand"             "bony"            
## [46297] "fleshless"        "knot"             "shaking"         
## [46300] "towards"          "east"             "wont"            
## [46303] "cried"            "collapsed"        "gollum"          
## [46306] "gollum"           "whimpered"        "face"            
## [46309] "ground"           "dont"             "look"            
## [46312] "us"               "go"               "away"            
## [46315] "go"               "sleep"            "go"              
## [46318] "away"             "go"               "sleep"           
## [46321] "command"          "sméagol"          "said"            
## [46324] "frodo"            "really"           "wish"            
## [46327] "free"             "must"             "help"            
## [46330] "fear"             "means"            "finding"         
## [46333] "us"               "path"             "towards"         
## [46336] "need"             "go"               "way"             
## [46339] "beyond"           "gates"            "land"            
## [46342] "gollum"           "sat"              "looked"          
## [46345] "eyelids"          "hes"              "cackled"         
## [46348] "always"           "orcs"             "take"            
## [46351] "way"              "easy"             "find"            
## [46354] "orcs"             "east"             "river"           
## [46357] "dont"             "ask"              "sméagol"         
## [46360] "poor"             "poor"             "sméagol"         
## [46363] "went"             "away"             "long"            
## [46366] "ago"              "took"             "precious"        
## [46369] "hes"              "lost"             "now"             
## [46372] "perhaps"          "well"             "find"            
## [46375] "come"             "us"               "said"            
## [46378] "frodo"            "never"            "hes"             
## [46381] "lost"             "precious"         "said"            
## [46384] "gollum"           "get"              "said"            
## [46387] "frodo"            "gollum"           "stood"           
## [46390] "backed"           "away"             "cliff"           
## [46393] "now"              "said"             "frodo"           
## [46396] "can"              "find"             "path"            
## [46399] "easier"           "day"              "night"           
## [46402] "tired"            "choose"           "night"           
## [46405] "well"             "start"            "tonight"         
## [46408] "big"              "lights"           "hurt"            
## [46411] "eyes"             "gollum"           "whined"          
## [46414] "white"            "face"             "yet"             
## [46417] "go"               "behind"           "hills"           
## [46420] "soon"             "yess"             "rest"            
## [46423] "bit"              "first"            "nice"            
## [46426] "hobbits"          "sit"              "said"            
## [46429] "frodo"            "dont"             "move"            
## [46432] "hobbits"          "seated"           "beside"          
## [46435] "one"              "either"           "side"            
## [46438] "backs"            "stony"            "wall"            
## [46441] "resting"          "legs"             "need"            
## [46444] "arrangement"      "word"             "knew"            
## [46447] "must"             "sleep"            "moment"          
## [46450] "slowly"           "moon"             "went"            
## [46453] "shadows"          "fell"             "hills"           
## [46456] "grew"             "dark"             "stars"           
## [46459] "grew"             "thick"            "bright"          
## [46462] "sky"              "one"              "stirred"         
## [46465] "gollum"           "sat"              "legs"            
## [46468] "drawn"            "knees"            "chin"            
## [46471] "flat"             "hands"            "feet"            
## [46474] "splayed"          "ground"           "eyes"            
## [46477] "closed"           "seemed"           "tense"           
## [46480] "thinking"         "listening"        "frodo"           
## [46483] "looked"           "across"           "sam"             
## [46486] "eyes"             "met"              "understood"      
## [46489] "relaxed"          "leaning"          "heads"           
## [46492] "back"             "shutting"         "eyes"            
## [46495] "seeming"          "soon"             "sound"           
## [46498] "soft"             "breathing"        "heard"           
## [46501] "gollums"          "hands"            "twitched"        
## [46504] "little"           "hardly"           "perceptibly"     
## [46507] "head"             "moved"            "left"            
## [46510] "right"            "first"            "one"             
## [46513] "eye"              "opened"           "slit"            
## [46516] "hobbits"          "made"             "sign"            
## [46519] "suddenly"         "startling"        "agility"         
## [46522] "speed"            "straight"         "ground"          
## [46525] "jump"             "like"             "grasshopper"     
## [46528] "frog"             "gollum"           "bounded"         
## [46531] "forward"          "darkness"         "just"            
## [46534] "frodo"            "sam"              "expected"        
## [46537] "sam"              "gone"             "two"             
## [46540] "paces"            "spring"           "frodo"           
## [46543] "coming"           "behind"           "grabbed"         
## [46546] "leg"              "threw"            "rope"            
## [46549] "might"            "prove"            "useful"          
## [46552] "sam"              "said"             "sam"             
## [46555] "got"              "rope"             "cold"            
## [46558] "hard"             "lands"            "mr"              
## [46561] "gollum"           "growled"          "wonders"         
## [46564] "aye"              "wonders"          "find"            
## [46567] "orc"              "friends"          "warrant"         
## [46570] "nasty"            "treacherous"      "creature"        
## [46573] "round"            "neck"             "rope"            
## [46576] "go"               "tight"            "noose"           
## [46579] "gollum"           "lay"              "quiet"           
## [46582] "tried"            "tricks"           "answer"          
## [46585] "sam"              "gave"             "swift"           
## [46588] "venomous"         "look"             "need"            
## [46591] "something"        "keep"             "hold"            
## [46594] "said"             "frodo"            "want"            
## [46597] "walk"             "good"             "tying"           
## [46600] "legs"             "arms"             "seems"           
## [46603] "use"              "nearly"           "much"            
## [46606] "tie"              "one"              "end"             
## [46609] "ankle"            "keep"             "grip"            
## [46612] "end"              "stood"            "gollum"          
## [46615] "sam"              "tied"             "knot"            
## [46618] "result"           "surprised"        "gollum"          
## [46621] "began"            "scream"           "thin"            
## [46624] "tearing"          "sound"            "horrible"        
## [46627] "hear"             "writhed"          "tried"           
## [46630] "get"              "mouth"            "ankle"           
## [46633] "bite"             "rope"             "kept"            
## [46636] "screaming"        "last"             "frodo"           
## [46639] "convinced"        "really"           "pain"            
## [46642] "knot"             "examined"         "found"           
## [46645] "tight"            "indeed"           "hardly"          
## [46648] "tight"            "enough"           "sam"             
## [46651] "gentler"          "words"            "whats"           
## [46654] "matter"           "said"             "try"             
## [46657] "run"              "away"             "must"            
## [46660] "tied"             "dont"             "wish"            
## [46663] "hurt"             "hurts"            "us"              
## [46666] "hurts"            "us"               "hissed"          
## [46669] "gollum"           "freezes"          "bites"           
## [46672] "elves"            "twisted"          "curse"           
## [46675] "nasty"            "cruel"            "hobbits"         
## [46678] "thats"            "tries"            "escape"          
## [46681] "course"           "precious"         "guessed"         
## [46684] "cruel"            "hobbits"          "visits"          
## [46687] "elves"            "fierce"           "elves"           
## [46690] "bright"           "eyes"             "take"            
## [46693] "us"               "hurts"            "us"              
## [46696] "take"             "said"             "frodo"           
## [46699] "unless"           "paused"           "moment"          
## [46702] "thought"          "unless"           "promise"         
## [46705] "can"              "make"             "can"             
## [46708] "trust"            "swear"            "wants"           
## [46711] "yes"              "yess"             "said"            
## [46714] "gollum"           "still"            "twisting"        
## [46717] "grabbling"        "ankle"            "hurts"           
## [46720] "us"               "swear"            "said"            
## [46723] "frodo"            "sméagol"          "said"            
## [46726] "gollum"           "suddenly"         "clearly"         
## [46729] "opening"          "eyes"             "wide"            
## [46732] "staring"          "frodo"            "strange"         
## [46735] "light"            "sméagol"          "swear"           
## [46738] "precious"         "frodo"            "drew"            
## [46741] "sam"              "startled"         "words"           
## [46744] "stern"            "voice"            "precious"        
## [46747] "dare"             "said"             "think"           
## [46750] "one"              "ring"             "rule"            
## [46753] "darkness"         "bind"             "commit"          
## [46756] "promise"          "sméagol"          "hold"            
## [46759] "treacherous"      "may"              "twist"           
## [46762] "words"            "beware"           "gollum"          
## [46765] "cowered"          "precious"         "precious"        
## [46768] "repeated"         "swear"            "asked"           
## [46771] "frodo"            "good"             "said"            
## [46774] "gollum"           "crawling"         "frodos"          
## [46777] "feet"             "grovelled"        "whispering"      
## [46780] "hoarsely"         "shudder"          "ran"             
## [46783] "words"            "shook"            "bones"           
## [46786] "fear"             "sméagol"          "swear"           
## [46789] "never"            "never"            "let"             
## [46792] "never"            "sméagol"          "save"            
## [46795] "must"             "swear"            "precious"        
## [46798] "said"             "frodo"            "looking"         
## [46801] "stern"            "pity"             "wish"            
## [46804] "see"              "touch"            "can"             
## [46807] "though"           "know"             "drive"           
## [46810] "mad"              "swear"            "know"            
## [46813] "yes"              "know"             "sméagol"         
## [46816] "moment"           "appeared"         "sam"             
## [46819] "master"           "grown"            "gollum"          
## [46822] "shrunk"           "tall"             "stern"           
## [46825] "shadow"           "mighty"           "lord"            
## [46828] "hid"              "brightness"       "grey"            
## [46831] "cloud"            "feet"             "little"          
## [46834] "whining"          "dog"              "yet"             
## [46837] "two"              "way"              "akin"            
## [46840] "alien"            "reach"            "one"             
## [46843] "anothers"         "minds"            "gollum"          
## [46846] "raised"           "began"            "pawing"          
## [46849] "frodo"            "fawning"          "knees"           
## [46852] "said"             "frodo"            "now"             
## [46855] "speak"            "promise"          "promises"        
## [46858] "yes"              "promise"          "said"            
## [46861] "gollum"           "serve"            "master"          
## [46864] "precious"         "good"             "master"          
## [46867] "good"             "sméagol"          "gollum"          
## [46870] "gollum"           "suddenly"         "began"           
## [46873] "weep"             "bite"             "ankle"           
## [46876] "take"             "rope"             "sam"             
## [46879] "said"             "frodo"            "reluctantly"     
## [46882] "sam"              "obeyed"           "gollum"          
## [46885] "got"              "began"            "prancing"        
## [46888] "like"             "whipped"          "cur"             
## [46891] "whose"            "master"           "patted"          
## [46894] "moment"           "change"           "lasted"          
## [46897] "time"             "came"             "spoke"           
## [46900] "less"             "hissing"          "whining"         
## [46903] "spoke"            "companions"       "direct"          
## [46906] "precious"         "self"             "cringe"          
## [46909] "flinch"           "stepped"          "near"            
## [46912] "made"             "sudden"           "movement"        
## [46915] "avoided"          "touch"            "elven"           
## [46918] "cloaks"           "friendly"         "indeed"          
## [46921] "pitifully"        "anxious"          "please"          
## [46924] "cackle"           "laughter"         "caper"           
## [46927] "jest"             "made"             "even"            
## [46930] "frodo"            "spoke"            "kindly"          
## [46933] "weep"             "frodo"            "rebuked"         
## [46936] "sam"              "said"             "little"          
## [46939] "sort"             "suspected"        "deeply"          
## [46942] "ever"             "possible"         "liked"           
## [46945] "new"              "gollum"           "sméagol"         
## [46948] "less"             "old"              "well"            
## [46951] "gollum"           "whatever"         "call"            
## [46954] "said"             "now"              "moons"           
## [46957] "gone"             "nights"           "going"           
## [46960] "wed"              "better"           "start"           
## [46963] "yes"              "yes"              "agreed"          
## [46966] "gollum"           "skipping"         "go"              
## [46969] "theres"           "one"              "way"             
## [46972] "across"           "north"            "end"             
## [46975] "south"            "end"              "found"           
## [46978] "orcs"             "dont"             "use"             
## [46981] "orcs"             "dont"             "know"            
## [46984] "orcs"             "dont"             "cross"           
## [46987] "marshes"          "go"               "round"           
## [46990] "miles"            "miles"            "lucky"           
## [46993] "came"             "way"              "lucky"           
## [46996] "found"            "sméagol"          "yes"             
## [46999] "follow"           "sméagol"          "took"            
## [47002] "steps"            "away"             "looked"          
## [47005] "back"             "inquiringly"      "like"            
## [47008] "dog"              "inviting"         "walk"            
## [47011] "wait"             "bit"              "gollum"          
## [47014] "cried"            "sam"              "far"             
## [47017] "ahead"            "now"              "im"              
## [47020] "going"            "tail"             "ive"             
## [47023] "got"              "rope"             "handy"           
## [47026] "said"             "gollum"           "sméagol"         
## [47029] "promised"         "deep"             "night"           
## [47032] "hard"             "clear"            "stars"           
## [47035] "set"              "gollum"           "led"             
## [47038] "back"             "northward"        "along"           
## [47041] "way"              "come"             "slanted"         
## [47044] "right"            "away"             "steep"           
## [47047] "edge"             "emyn"             "muil"            
## [47050] "broken"           "stony"            "slopes"          
## [47053] "towards"          "vast"             "fens"            
## [47056] "faded"            "swiftly"          "softly"          
## [47059] "darkness"         "leagues"          "waste"           
## [47062] "gates"            "mordor"           "black"           
## [47065] "silence"          "chapter"          "passage"         
## [47068] "marshes"          "gollum"           "moved"           
## [47071] "quickly"          "head"             "neck"            
## [47074] "thrust"           "forward"          "often"           
## [47077] "using"            "hands"            "well"            
## [47080] "feet"             "frodo"            "sam"             
## [47083] "hard"             "put"              "keep"            
## [47086] "seemed"           "longer"           "thought"         
## [47089] "escaping"         "fell"             "behind"          
## [47092] "turn"             "wait"             "time"            
## [47095] "brought"          "brink"            "narrow"          
## [47098] "gully"            "struck"           "now"             
## [47101] "hills"            "cried"            "way"             
## [47104] "inside"           "yes"              "now"             
## [47107] "follows"          "away"             "pointed"         
## [47110] "south"            "east"             "towards"         
## [47113] "marshes"          "reek"             "came"            
## [47116] "nostrils"         "heavy"            "foul"            
## [47119] "even"             "cool"             "night"           
## [47122] "air"              "gollum"           "cast"            
## [47125] "along"            "brink"            "length"          
## [47128] "called"           "can"              "get"             
## [47131] "sméagol"          "went"             "way"             
## [47134] "went"             "way"              "hiding"          
## [47137] "orcs"             "led"              "way"             
## [47140] "following"        "hobbits"          "climbed"         
## [47143] "gloom"            "difficult"        "rift"            
## [47146] "point"            "fifteen"          "feet"            
## [47149] "deep"             "dozen"            "across"          
## [47152] "running"          "water"            "bottom"          
## [47155] "fact"             "bed"              "one"             
## [47158] "many"             "small"            "rivers"          
## [47161] "trickled"         "hills"            "feed"            
## [47164] "stagnant"         "pools"            "mires"           
## [47167] "beyond"           "gollum"           "turned"          
## [47170] "right"            "southward"        "less"            
## [47173] "splashed"         "along"            "feet"            
## [47176] "shallow"          "stony"            "stream"          
## [47179] "seemed"           "greatly"          "delighted"       
## [47182] "feel"             "water"            "chuckled"        
## [47185] "sometimes"        "even"             "croaking"        
## [47188] "sort"             "song"             "cold"            
## [47191] "hard"             "lands"            "bites"           
## [47194] "hands"            "gnaws"            "feet"            
## [47197] "rocks"            "stones"           "like"            
## [47200] "old"              "bones"            "bare"            
## [47203] "meat"             "stream"           "pool"            
## [47206] "wet"              "cool"             "nice"            
## [47209] "feet"             "now"              "wish"            
## [47212] "ha"               "ha"               "wish"            
## [47215] "said"             "looking"          "sidelong"        
## [47218] "hobbits"          "well"             "tell"            
## [47221] "croaked"          "guessed"          "long"            
## [47224] "ago"              "baggins"          "guessed"         
## [47227] "glint"            "came"             "eyes"            
## [47230] "sam"              "catching"         "gleam"           
## [47233] "darkness"         "thought"          "far"             
## [47236] "pleasant"         "alive"            "without"         
## [47239] "breath"           "cold"             "death"           
## [47242] "never"            "thirsting"        "ever"            
## [47245] "drinking"         "clad"             "mail"            
## [47248] "never"            "clinking"         "drowns"          
## [47251] "dry"              "land"             "thinks"          
## [47254] "island"           "mountain"         "thinks"          
## [47257] "fountain"         "puff"             "air"             
## [47260] "sleek"            "fair"             "joy"             
## [47263] "meet"             "wish"             "catch"           
## [47266] "fish"             "juicy"            "sweet"           
## [47269] "words"            "made"             "pressing"        
## [47272] "sams"             "mind"             "problem"         
## [47275] "troubling"        "moment"           "understood"      
## [47278] "hir"              "master"           "going"           
## [47281] "adopt"            "gollum"           "guide"           
## [47284] "problem"          "food"             "occur"           
## [47287] "master"           "might"            "also"            
## [47290] "thought"          "hut"              "supposed"        
## [47293] "gollum"           "indeed"           "gollum"          
## [47296] "kept"             "lonely"           "wandering"       
## [47299] "well"             "thought"          "sam"             
## [47302] "looks"            "fair"             "famished"        
## [47305] "dainty"           "try"              "hobbit"          
## [47308] "tastes"           "like"             "aint"            
## [47311] "fish"             "ill"              "wager"           
## [47314] "supposing"        "catch"            "us"              
## [47317] "napping"          "well"             "wont"            
## [47320] "sam"              "gamgee"           "one"             
## [47323] "stumbled"         "along"            "dark"            
## [47326] "winding"          "gully"            "long"            
## [47329] "time"             "seemed"           "tired"           
## [47332] "feet"             "frodo"            "sam"             
## [47335] "gully"            "turned"           "eastward"        
## [47338] "went"             "broadened"        "got"             
## [47341] "gradually"        "shallower"        "last"            
## [47344] "sky"              "grew"             "faint"           
## [47347] "first"            "grey"             "morning"         
## [47350] "gollum"           "shown"            "signs"           
## [47353] "tiring"           "now"              "looked"          
## [47356] "halted"           "day"              "near"            
## [47359] "whispered"        "day"              "something"       
## [47362] "might"            "overhear"         "spring"          
## [47365] "sméagol"          "stay"             "stay"            
## [47368] "yellow"           "face"             "wont"            
## [47371] "see"              "glad"             "see"             
## [47374] "sun"              "said"             "frodo"           
## [47377] "stay"             "tired"            "go"              
## [47380] "present"          "wise"             "glad"            
## [47383] "yellow"           "face"             "said"            
## [47386] "gollum"           "shows"            "nice"            
## [47389] "sensible"         "hobbits"          "stay"            
## [47392] "sméagol"          "orcs"             "nasty"           
## [47395] "things"           "can"              "see"             
## [47398] "long"             "way"              "stay"            
## [47401] "hide"             "three"            "settled"         
## [47404] "rest"             "foot"             "rocky"           
## [47407] "wall"             "gully"            "much"            
## [47410] "tall"             "mans"             "height"          
## [47413] "now"              "base"             "wide"            
## [47416] "flat"             "shelves"          "dry"             
## [47419] "stone"            "water"            "ran"             
## [47422] "channel"          "side"             "frodo"           
## [47425] "sam"              "sat"              "one"             
## [47428] "flats"            "resting"          "backs"           
## [47431] "gollum"           "paddled"          "scrabbled"       
## [47434] "stream"           "must"             "take"            
## [47437] "little"           "food"             "said"            
## [47440] "frodo"            "hungry"           "sméagol"         
## [47443] "little"           "share"            "spare"           
## [47446] "can"              "word"             "hungry"          
## [47449] "greenish"         "light"            "kindled"         
## [47452] "gollums"          "pale"             "eyes"            
## [47455] "seemed"           "protrude"         "ever"            
## [47458] "thin"             "sickly"           "face"            
## [47461] "moment"           "relapsed"         "old"             
## [47464] "gollum"           "manner"           "famisshed"       
## [47467] "yes"              "famisshed"        "precious"        
## [47470] "said"             "eats"             "nice"            
## [47473] "fisshes"          "tongue"           "lolled"          
## [47476] "sharp"            "yellow"           "teeth"           
## [47479] "licking"          "colourless"       "lips"            
## [47482] "got"              "fish"             "said"            
## [47485] "frodo"            "got"              "held"            
## [47488] "wafer"            "lembas"           "water"           
## [47491] "water"            "fit"              "drink"           
## [47494] "yess"             "yess"             "nice"            
## [47497] "water"            "said"             "gollum"          
## [47500] "drink"            "drink"            "can"             
## [47503] "theyve"           "got"              "precious"        
## [47506] "crunchable"       "tasty"            "frodo"           
## [47509] "broke"            "portion"          "wafer"           
## [47512] "handed"           "leaf"             "wrapping"        
## [47515] "gollum"           "sniffed"          "leaf"            
## [47518] "face"             "changed"          "spasm"           
## [47521] "disgust"          "came"             "hint"            
## [47524] "old"              "malice"           "sméagol"         
## [47527] "smells"           "said"             "leaves"          
## [47530] "elf"              "country"          "gah"             
## [47533] "stinks"           "climbed"          "trees"           
## [47536] "couldnt"          "wash"             "smell"           
## [47539] "hands"            "nice"             "hands"           
## [47542] "dropping"         "leaf"             "took"            
## [47545] "corner"           "lembas"           "nibbled"         
## [47548] "spat"             "fit"              "coughing"        
## [47551] "shook"            "ach"              "spluttered"      
## [47554] "try"              "choke"            "poor"            
## [47557] "sméagol"          "dust"             "ashes"           
## [47560] "cant"             "eat"              "must"            
## [47563] "starve"           "sméagol"          "doesnt"          
## [47566] "mind"             "nice"             "hobbits"         
## [47569] "sméagol"          "promised"         "starve"          
## [47572] "cant"             "eat"              "hobbits"         
## [47575] "food"             "starve"           "poor"            
## [47578] "thin"             "sméagol"          "im"              
## [47581] "sorry"            "said"             "frodo"           
## [47584] "cant"             "help"             "im"              
## [47587] "afraid"           "think"            "food"            
## [47590] "good"             "try"              "perhaps"         
## [47593] "cant"             "even"             "try"             
## [47596] "yet"              "anyway"           "hobbits"         
## [47599] "munched"          "lembas"           "silence"         
## [47602] "sam"              "thought"          "tasted"          
## [47605] "far"              "better"           "somehow"         
## [47608] "good"             "gollums"          "behaviour"       
## [47611] "made"             "attend"           "flavour"         
## [47614] "feel"             "comfortable"      "gollum"          
## [47617] "watched"          "every"            "morsel"          
## [47620] "hand"             "mouth"            "like"            
## [47623] "expectant"        "dog"              "diners"          
## [47626] "chair"            "finished"         "preparing"       
## [47629] "rest"             "apparently"       "convinced"       
## [47632] "hidden"           "dainties"         "share"           
## [47635] "went"             "sat"              "paces"           
## [47638] "away"             "whimpered"        "little"          
## [47641] "look"             "sam"              "whispered"       
## [47644] "frodo"            "softly"           "really"          
## [47647] "care"             "whether"          "gollum"          
## [47650] "heard"            "weve"             "got"             
## [47653] "get"              "sleep"            "together"        
## [47656] "hungry"           "villain"          "nigh"            
## [47659] "promise"          "promise"          "sméagol"         
## [47662] "gollum"           "wont"             "change"          
## [47665] "habits"           "hurry"            "ill"             
## [47668] "warrant"          "go"               "sleep"           
## [47671] "mr"               "frodo"            "ill"             
## [47674] "call"             "cant"             "keep"            
## [47677] "eyelids"          "propped"          "turn"            
## [47680] "hes"              "loose"            "perhaps"         
## [47683] "youre"            "right"            "sam"             
## [47686] "said"             "frodo"            "speaking"        
## [47689] "openly"           "change"           "just"            
## [47692] "kind"             "change"           "deep"            
## [47695] "im"               "sure"             "yet"             
## [47698] "seriously"        "though"           "dont"            
## [47701] "think"            "need"             "fear"            
## [47704] "present"          "still"            "watch"           
## [47707] "wish"             "give"             "two"             
## [47710] "hours"            "call"             "tired"           
## [47713] "frodo"            "head"             "fell"            
## [47716] "forward"          "breast"           "slept"           
## [47719] "almost"           "soon"             "spoken"          
## [47722] "words"            "gollum"           "seemed"          
## [47725] "longer"           "fears"            "curled"          
## [47728] "went"             "quickly"          "sleep"           
## [47731] "quite"            "unconcerned"      "presently"       
## [47734] "breath"           "hissing"          "softly"          
## [47737] "clenched"         "teeth"            "hut"             
## [47740] "lay"              "still"            "stone"           
## [47743] "fearing"          "drop"             "sat"             
## [47746] "listening"        "two"              "companions"      
## [47749] "breathing"        "sam"              "got"             
## [47752] "gently"           "prodded"          "gollum"          
## [47755] "hands"            "uncurled"         "twitched"        
## [47758] "made"             "movement"         "sam"             
## [47761] "bent"             "said"             "fissh"           
## [47764] "close"            "ear"              "response"        
## [47767] "even"             "catch"            "gollums"         
## [47770] "breathing"        "sam"              "scratched"       
## [47773] "head"             "must"             "really"          
## [47776] "asleep"           "muttered"         "like"            
## [47779] "gollum"           "wouldnt"          "wake"            
## [47782] "never"            "restrained"       "thoughts"        
## [47785] "sword"            "rope"             "sprang"          
## [47788] "mind"             "went"             "sat"             
## [47791] "master"           "woke"             "sky"             
## [47794] "dim"              "lighter"          "darker"          
## [47797] "breakfasted"      "sam"              "leapt"           
## [47800] "feet"             "least"            "feeling"         
## [47803] "vigour"           "hunger"           "suddenly"        
## [47806] "understood"       "slept"            "daylight"        
## [47809] "away"             "nine"             "hours"           
## [47812] "least"            "frodo"            "still"           
## [47815] "fast"             "asleep"           "lying"           
## [47818] "now"              "stretched"        "side"            
## [47821] "gollum"           "seen"             "various"         
## [47824] "reproachful"      "names"            "came"            
## [47827] "sams"             "mind"             "drawn"           
## [47830] "gaffers"          "large"            "paternal"        
## [47833] "word"             "hoard"            "also"            
## [47836] "occurred"         "master"           "right"           
## [47839] "present"          "nothing"          "guard"           
## [47842] "rate"             "alive"            "unthrottled"     
## [47845] "poor"             "wretch"           "said"            
## [47848] "half"             "remorsefully"     "now"             
## [47851] "wonder"           "hes"              "got"             
## [47854] "far"              "far"              "said"            
## [47857] "voice"            "looked"           "saw"             
## [47860] "shape"            "gollums"          "large"           
## [47863] "head"             "ears"             "evening"         
## [47866] "sky"              "cried"            "sam"             
## [47869] "suspicions"       "coming"           "back"            
## [47872] "soon"             "saw"              "shape"           
## [47875] "sméagol"          "hungry"           "said"            
## [47878] "gollum"           "back"             "soon"            
## [47881] "come"             "back"             "now"             
## [47884] "shouted"          "sam"              "hi"              
## [47887] "come"             "back"             "gollum"          
## [47890] "vanished"         "frodo"            "woke"            
## [47893] "sound"            "sams"             "shout"           
## [47896] "sat"              "rubbing"          "eyes"            
## [47899] "hullo"            "said"             "anything"        
## [47902] "wrong"            "whats"            "time"            
## [47905] "dunno"            "said"             "sam"             
## [47908] "sundown"          "reckon"           "hes"             
## [47911] "gone"             "says"             "hes"             
## [47914] "hungry"           "dont"             "worry"           
## [47917] "said"             "frodo"            "theres"          
## [47920] "help"             "hell"             "come"            
## [47923] "back"             "youll"            "see"             
## [47926] "promise"          "hold"             "yet"             
## [47929] "wont"             "leave"            "precious"        
## [47932] "anyway"           "frodo"            "made"            
## [47935] "light"            "learned"          "slept"           
## [47938] "soundly"          "hours"            "gollum"          
## [47941] "hungry"           "gollum"           "loose"           
## [47944] "beside"           "dont"             "think"           
## [47947] "gaffers"          "hard"             "names"           
## [47950] "said"             "worn"             "turned"          
## [47953] "well"             "now"              "rested"          
## [47956] "hard"             "road"             "ahead"           
## [47959] "worst"            "road"             "food"            
## [47962] "said"             "sam"              "longs"           
## [47965] "going"            "take"             "us"              
## [47968] "job"              "done"             "going"           
## [47971] "waybread"         "keeps"            "legs"            
## [47974] "wonderful"        "way"              "though"          
## [47977] "doesnt"           "satisfy"          "innards"         
## [47980] "proper"           "might"            "say"             
## [47983] "feeling"          "anyhow"           "meaning"         
## [47986] "disrespect"       "made"             "eat"             
## [47989] "every"            "day"              "doesnt"          
## [47992] "grow"             "reckon"           "weve"            
## [47995] "got"              "enough"           "last"            
## [47998] "say"              "three"            "weeks"           
## [48001] "tight"            "belt"             "light"           
## [48004] "tooth"            "mind"             "weve"            
## [48007] "bit"              "free"             "far"             
## [48010] "dont"             "know"             "long"            
## [48013] "shall"            "take"             "finish"          
## [48016] "said"             "frodo"            "miserably"       
## [48019] "delayed"          "hills"            "samwise"         
## [48022] "gamgee"           "dear"             "hobbit"          
## [48025] "indeed"           "sam"              "dearest"         
## [48028] "hobbit"           "friend"           "friends"         
## [48031] "think"            "need"             "give"            
## [48034] "thought"          "comes"            "job"             
## [48037] "put"              "hope"             "ever"            
## [48040] "shall"            "knows"            "come"            
## [48043] "one"              "goes"             "fire"            
## [48046] "hand"             "ask"              "sam"             
## [48049] "ever"             "likely"           "need"            
## [48052] "bread"            "think"            "can"             
## [48055] "nurse"            "limbs"            "bring"           
## [48058] "us"               "mount"            "doom"            
## [48061] "can"              "can"              "begin"           
## [48064] "feel"             "sam"              "nodded"          
## [48067] "silently"         "took"             "masters"         
## [48070] "hand"             "bent"             "kiss"            
## [48073] "though"           "tears"            "fell"            
## [48076] "turned"           "away"             "drew"            
## [48079] "sleeve"           "nose"             "got"             
## [48082] "stamped"          "trying"           "whistle"         
## [48085] "saying"           "efforts"          "wheres"          
## [48088] "dratted"          "creature"         "actually"        
## [48091] "long"             "gollum"           "returned"        
## [48094] "came"             "quietly"          "hear"            
## [48097] "till"             "stood"            "fingers"         
## [48100] "face"             "soiled"           "black"           
## [48103] "mud"              "still"            "chewing"         
## [48106] "slavering"        "chewing"          "ask"             
## [48109] "like"             "think"            "worms"           
## [48112] "beetles"          "something"        "slimy"           
## [48115] "holes"            "thought"          "sam"             
## [48118] "brr"              "nasty"            "creature"        
## [48121] "poor"             "wretch"           "gollum"          
## [48124] "said"             "nothing"          "drunk"           
## [48127] "deeply"           "washed"           "stream"          
## [48130] "came"             "licking"          "lips"            
## [48133] "better"           "now"              "said"            
## [48136] "rested"           "ready"            "go"              
## [48139] "nice"             "hobbits"          "sleep"           
## [48142] "beautifully"      "trust"            "sméagol"         
## [48145] "now"              "good"             "next"            
## [48148] "stage"            "journey"          "much"            
## [48151] "last"             "went"             "gully"           
## [48154] "became"           "ever"             "shallower"       
## [48157] "slope"            "floor"            "gradual"         
## [48160] "bottom"           "less"             "stony"           
## [48163] "earthy"           "slowly"           "sides"           
## [48166] "dwindled"         "mere"             "banks"           
## [48169] "began"            "wind"             "wander"          
## [48172] "night"            "drew"             "end"             
## [48175] "clouds"           "now"              "moon"            
## [48178] "star"             "knew"             "coming"          
## [48181] "day"              "slow"             "spreading"       
## [48184] "thin"             "grey"             "light"           
## [48187] "chill"            "hour"             "came"            
## [48190] "end"              "water"            "course"          
## [48193] "banks"            "became"           "moss"            
## [48196] "grown"            "mounds"           "last"            
## [48199] "shelf"            "rotting"          "stone"           
## [48202] "stream"           "gurgled"          "fell"            
## [48205] "brown"            "bog"              "lost"            
## [48208] "dry"              "reeds"            "hissed"          
## [48211] "rattled"          "though"           "feel"            
## [48214] "wind"             "either"           "side"            
## [48217] "front"            "wide"             "fens"            
## [48220] "mires"            "now"              "lay"             
## [48223] "stretching"       "away"             "southward"       
## [48226] "eastward"         "dim"              "half"            
## [48229] "light"            "mists"            "curled"          
## [48232] "smoked"           "dark"             "noisome"         
## [48235] "pools"            "reek"             "hung"            
## [48238] "stifling"         "still"            "air"             
## [48241] "far"              "away"             "now"             
## [48244] "almost"           "due"              "south"           
## [48247] "mountain"         "walls"            "mordor"          
## [48250] "loomed"           "like"             "black"           
## [48253] "bar"              "rugged"           "clouds"          
## [48256] "floating"         "dangerous"        "fog"             
## [48259] "bound"            "sea"              "hobbits"         
## [48262] "now"              "wholly"           "hands"           
## [48265] "gollum"           "now"              "know"            
## [48268] "guess"            "misty"            "light"           
## [48271] "fact"             "just"             "within"          
## [48274] "northern"         "borders"          "marshes"         
## [48277] "main"             "expanse"          "lay"             
## [48280] "south"            "known"            "lands"           
## [48283] "delay"            "retraced"         "steps"           
## [48286] "little"           "turning"          "east"            
## [48289] "come"             "round"            "hard"            
## [48292] "roads"            "bare"             "plain"           
## [48295] "dagorlad"         "field"            "ancient"         
## [48298] "battle"           "gates"            "mordor"          
## [48301] "great"            "hope"             "course"          
## [48304] "stony"            "plain"            "cover"           
## [48307] "across"           "ran"              "highways"        
## [48310] "orcs"             "soldiers"         "enemy"           
## [48313] "even"             "cloaks"           "lórien"          
## [48316] "concealed"        "shape"            "course"          
## [48319] "now"              "sméagol"          "asked"           
## [48322] "frodo"            "must"             "cross"           
## [48325] "evil"             "smelling"         "fens"            
## [48328] "need"             "need"             "said"            
## [48331] "gollum"           "hobbits"          "want"            
## [48334] "reach"            "dark"             "mountains"       
## [48337] "go"               "see"              "quick"           
## [48340] "back"             "little"           "round"           
## [48343] "little"           "skinny"           "arm"             
## [48346] "waved"            "north"            "east"            
## [48349] "can"              "come"             "hard"            
## [48352] "cold"             "roads"            "gates"           
## [48355] "country"          "lots"             "people"          
## [48358] "looking"          "guests"           "pleased"         
## [48361] "take"             "straight"         "yes"             
## [48364] "eye"              "watches"          "way"             
## [48367] "time"             "caught"           "sméagol"         
## [48370] "long"             "ago"              "gollum"          
## [48373] "shuddered"        "sméagol"          "used"            
## [48376] "eyes"             "since"            "yes"             
## [48379] "yes"              "ive"              "used"            
## [48382] "eyes"             "feet"             "nose"            
## [48385] "since"            "know"             "ways"            
## [48388] "difficult"        "quick"            "better"          
## [48391] "dont"             "want"             "see"             
## [48394] "follow"           "sméagol"          "can"             
## [48397] "take"             "marshes"          "mists"           
## [48400] "nice"             "thick"            "mists"           
## [48403] "follow"           "sméagol"          "carefully"       
## [48406] "may"              "go"               "long"            
## [48409] "way"              "quite"            "long"            
## [48412] "way"              "catches"          "yes"             
## [48415] "perhaps"          "already"          "day"             
## [48418] "windless"         "sullen"           "morning"         
## [48421] "marsh"            "reeks"            "lay"             
## [48424] "heavy"            "banks"            "sun"             
## [48427] "pierced"          "low"              "clouded"         
## [48430] "sky"              "gollum"           "seemed"          
## [48433] "anxious"          "continue"         "journey"         
## [48436] "brief"            "rest"             "set"             
## [48439] "soon"             "lost"             "shadowy"         
## [48442] "silent"           "world"            "cut"             
## [48445] "view"             "lands"            "either"          
## [48448] "hills"            "left"             "mountains"       
## [48451] "sought"           "went"             "slowly"          
## [48454] "single"           "file"             "gollum"          
## [48457] "sam"              "frodo"            "frodo"           
## [48460] "seemed"           "weary"            "three"           
## [48463] "slow"             "though"           "went"            
## [48466] "often"            "lagged"           "hobbits"         
## [48469] "soon"             "found"            "looked"          
## [48472] "like"             "one"              "vast"            
## [48475] "fen"              "really"           "endless"         
## [48478] "network"          "pools"            "soft"            
## [48481] "mires"            "winding"          "half"            
## [48484] "strangled"        "water"            "courses"         
## [48487] "among"            "cunning"          "eye"             
## [48490] "foot"             "thread"           "wandering"       
## [48493] "path"             "gollum"           "certainly"       
## [48496] "cunning"          "needed"           "head"            
## [48499] "long"             "neck"             "ever"            
## [48502] "turning"          "way"              "sniffed"         
## [48505] "muttered"         "time"             "sometimes"       
## [48508] "hold"             "hand"             "halt"            
## [48511] "went"             "forward"          "little"          
## [48514] "crouching"        "testing"          "ground"          
## [48517] "fingers"          "toes"             "merely"          
## [48520] "listening"        "one"              "ear"             
## [48523] "pressed"          "earth"            "dreary"          
## [48526] "wearisome"        "cold"             "clammy"          
## [48529] "winter"           "still"            "held"            
## [48532] "sway"             "forsaken"         "country"         
## [48535] "green"            "scum"             "livid"           
## [48538] "weed"             "dark"             "greasy"          
## [48541] "surfaces"         "sullen"           "waters"          
## [48544] "dead"             "grasses"          "rotting"         
## [48547] "reeds"            "loomed"           "mists"           
## [48550] "like"             "ragged"           "shadows"         
## [48553] "long"             "forgotten"        "summers"         
## [48556] "day"              "wore"             "light"           
## [48559] "increased"        "little"           "mists"           
## [48562] "lifted"           "growing"          "thinner"         
## [48565] "transparent"      "far"              "rot"             
## [48568] "vapours"          "world"            "sun"             
## [48571] "riding"           "high"             "golden"          
## [48574] "now"              "serene"           "country"         
## [48577] "floors"           "dazzling"         "foam"            
## [48580] "passing"          "ghost"            "see"             
## [48583] "bleared"          "pale"             "giving"          
## [48586] "colour"           "warmth"           "even"            
## [48589] "faint"            "reminder"         "presence"        
## [48592] "gollum"           "scowled"          "flinched"        
## [48595] "halted"           "journey"          "rested"          
## [48598] "squatting"        "like"             "little"          
## [48601] "hunted"           "animals"          "borders"         
## [48604] "great"            "brown"            "reed"            
## [48607] "thicket"          "deep"             "silence"         
## [48610] "scraped"          "surfaces"         "faint"           
## [48613] "quiver"           "empty"            "seed"            
## [48616] "plumes"           "broken"           "grass"           
## [48619] "blades"           "trembling"        "small"           
## [48622] "air"              "movements"        "feel"            
## [48625] "bird"             "said"             "sam"             
## [48628] "mournfully"       "birds"            "said"            
## [48631] "gollum"           "nice"             "birds"           
## [48634] "licked"           "teeth"            "birds"           
## [48637] "snakeses"         "wormses"          "things"          
## [48640] "pools"            "lots"             "things"          
## [48643] "lots"             "nasty"            "things"          
## [48646] "birds"            "ended"            "sadly"           
## [48649] "sam"              "looked"           "distaste"        
## [48652] "passed"           "third"            "day"             
## [48655] "journey"          "gollum"           "shadows"         
## [48658] "evening"          "long"             "happier"         
## [48661] "lands"            "went"             "always"          
## [48664] "brief"            "halts"            "made"            
## [48667] "much"             "rest"             "help"            
## [48670] "gollum"           "now"              "even"            
## [48673] "go"               "forward"          "great"           
## [48676] "care"             "sometimes"        "loss"            
## [48679] "come"             "midst"            "dead"            
## [48682] "marshes"          "dark"             "walked"          
## [48685] "slowly"           "stooping"         "keeping"         
## [48688] "close"            "line"             "following"       
## [48691] "attentively"      "every"            "move"            
## [48694] "gollum"           "made"             "fens"            
## [48697] "grew"             "wet"              "opening"         
## [48700] "wide"             "stagnant"         "meres"           
## [48703] "among"            "grew"             "difficult"       
## [48706] "find"             "firmer"           "places"          
## [48709] "feet"             "tread"            "without"         
## [48712] "sinking"          "gurgling"         "mud"             
## [48715] "travellers"       "light"            "maybe"           
## [48718] "none"             "ever"             "found"           
## [48721] "way"              "presently"        "grew"            
## [48724] "altogether"       "dark"             "air"             
## [48727] "seemed"           "black"            "heavy"           
## [48730] "breathe"          "lights"           "appeared"        
## [48733] "sam"              "rubbed"           "eyes"            
## [48736] "thought"          "head"             "going"           
## [48739] "queer"            "first"            "saw"             
## [48742] "one"              "corner"           "left"            
## [48745] "eye"              "wisp"             "pale"            
## [48748] "sheen"            "faded"            "away"            
## [48751] "others"           "appeared"         "soon"            
## [48754] "like"             "dimly"            "shining"         
## [48757] "smoke"            "like"             "misty"           
## [48760] "flames"           "flickering"       "slowly"          
## [48763] "unseen"           "candles"          "twisted"         
## [48766] "like"             "ghostly"          "sheets"          
## [48769] "unfurled"         "hidden"           "hands"           
## [48772] "neither"          "companions"       "spoke"           
## [48775] "word"             "last"             "sam"             
## [48778] "bear"             "longer"           "whats"           
## [48781] "gollum"           "said"             "whisper"         
## [48784] "lights"           "theyre"           "round"           
## [48787] "us"               "now"              "trapped"         
## [48790] "gollum"           "looked"           "dark"            
## [48793] "water"            "crawling"         "ground"          
## [48796] "way"              "doubtful"         "way"             
## [48799] "yes"              "round"            "us"              
## [48802] "whispered"        "tricksy"          "lights"          
## [48805] "candles"          "corpses"          "yes"             
## [48808] "yes"              "dont"             "heed"            
## [48811] "dont"             "look"             "dont"            
## [48814] "follow"           "wheres"           "master"          
## [48817] "sam"              "looked"           "back"            
## [48820] "found"            "frodo"            "lagged"          
## [48823] "see"              "went"             "paces"           
## [48826] "back"             "darkness"         "daring"          
## [48829] "move"             "far"              "call"            
## [48832] "hoarse"           "whisper"          "suddenly"        
## [48835] "stumbled"         "frodo"            "standing"        
## [48838] "lost"             "thought"          "looking"         
## [48841] "pale"             "lights"           "hands"           
## [48844] "hung"             "stiff"            "sides"           
## [48847] "water"            "slime"            "dripping"        
## [48850] "come"             "mr"               "frodo"           
## [48853] "said"             "sam"              "dont"            
## [48856] "look"             "gollum"           "says"            
## [48859] "mustnt"           "lets"             "keep"            
## [48862] "get"              "cursed"           "place"           
## [48865] "quick"            "can"              "can"             
## [48868] "right"            "said"             "frodo"           
## [48871] "returning"        "dream"            "im"              
## [48874] "coming"           "go"               "hurrying"        
## [48877] "forward"          "sam"              "tripped"         
## [48880] "catching"         "foot"             "old"             
## [48883] "root"             "tussock"          "fell"            
## [48886] "came"             "heavily"          "hands"           
## [48889] "sank"             "deep"             "sticky"          
## [48892] "ooze"             "face"             "brought"         
## [48895] "close"            "surface"          "dark"            
## [48898] "mere"             "faint"            "hiss"            
## [48901] "noisome"          "smell"            "went"            
## [48904] "lights"           "flickered"        "danced"          
## [48907] "swirled"          "moment"           "water"           
## [48910] "looked"           "like"             "window"          
## [48913] "glazed"           "grimy"            "glass"           
## [48916] "peering"          "wrenching"        "hands"           
## [48919] "bog"              "sprang"           "back"            
## [48922] "cry"              "dead"             "things"          
## [48925] "dead"             "faces"            "water"           
## [48928] "said"             "horror"           "dead"            
## [48931] "faces"            "gollum"           "laughed"         
## [48934] "dead"             "marshes"          "yes"             
## [48937] "yes"              "names"            "cackled"         
## [48940] "look"             "candles"          "lit"             
## [48943] "asked"            "sam"              "shuddering"      
## [48946] "turning"          "frodo"            "now"             
## [48949] "behind"           "dont"             "know"            
## [48952] "said"             "frodo"            "dreamlike"       
## [48955] "voice"            "seen"             "pools"           
## [48958] "candles"          "lit"              "lie"             
## [48961] "pools"            "pale"             "faces"           
## [48964] "deep"             "deep"             "dark"            
## [48967] "water"            "saw"              "grim"            
## [48970] "faces"            "evil"             "noble"           
## [48973] "faces"            "sad"              "many"            
## [48976] "faces"            "proud"            "fair"            
## [48979] "weeds"            "silver"           "hair"            
## [48982] "foul"             "rotting"          "dead"            
## [48985] "fell"             "light"            "frodo"           
## [48988] "hid"              "eyes"             "hands"           
## [48991] "know"             "thought"          "saw"             
## [48994] "men"              "elves"            "orcs"            
## [48997] "beside"           "yes"              "yes"             
## [49000] "said"             "gollum"           "dead"            
## [49003] "rotten"           "elves"            "men"             
## [49006] "orcs"             "dead"             "marshes"         
## [49009] "great"            "battle"           "long"            
## [49012] "ago"              "yes"              "told"            
## [49015] "sméagol"          "young"            "young"           
## [49018] "precious"         "came"             "great"           
## [49021] "battle"           "tall"             "men"             
## [49024] "long"             "swords"           "terrible"        
## [49027] "elves"            "orcses"           "shrieking"       
## [49030] "fought"           "plain"            "days"            
## [49033] "months"           "black"            "gates"           
## [49036] "marshes"          "grown"            "since"           
## [49039] "swallowed"        "graves"           "always"          
## [49042] "creeping"         "creeping"         "age"             
## [49045] "ago"              "said"             "sam"             
## [49048] "dead"             "cant"             "really"          
## [49051] "devilry"          "hatched"          "dark"            
## [49054] "land"             "knows"            "sméagol"         
## [49057] "doesnt"           "know"             "answered"        
## [49060] "gollum"           "reach"            "touch"           
## [49063] "tried"            "yes"              "precious"        
## [49066] "tried"            "reach"            "shapes"          
## [49069] "see"              "perhaps"          "touch"           
## [49072] "precious"         "dead"             "sam"             
## [49075] "looked"           "darkly"           "shuddered"       
## [49078] "thinking"         "guessed"          "sméagol"         
## [49081] "tried"            "touch"            "well"            
## [49084] "dont"             "want"             "see"             
## [49087] "said"             "never"            "cant"            
## [49090] "get"              "get"              "away"            
## [49093] "yes"              "yes"              "said"            
## [49096] "gollum"           "slowly"           "slowly"          
## [49099] "carefully"        "hobbits"          "go"              
## [49102] "join"             "dead"             "ones"            
## [49105] "light"            "little"           "candles"         
## [49108] "follow"           "sméagol"          "dont"            
## [49111] "look"             "lights"           "crawled"         
## [49114] "away"             "right"            "seeking"         
## [49117] "path"             "round"            "mere"            
## [49120] "came"             "close"            "behind"          
## [49123] "stooping"         "often"            "using"           
## [49126] "hands"            "even"             "three"           
## [49129] "precious"         "little"           "gollums"         
## [49132] "row"              "shall"            "goes"            
## [49135] "much"             "longer"           "thought"         
## [49138] "sam"              "last"             "came"            
## [49141] "end"              "black"            "mere"            
## [49144] "crossed"          "perilously"       "crawling"        
## [49147] "hopping"          "one"              "treacherous"     
## [49150] "island"           "tussock"          "another"         
## [49153] "often"            "floundered"       "stepping"        
## [49156] "falling"          "hands"            "first"           
## [49159] "waters"           "noisome"          "cesspool"        
## [49162] "till"             "slimed"           "fouled"          
## [49165] "almost"           "necks"            "stank"           
## [49168] "one"              "anothers"         "nostrils"        
## [49171] "late"             "night"            "length"          
## [49174] "reached"          "firmer"           "ground"          
## [49177] "gollum"           "hissed"           "whispered"       
## [49180] "appeared"         "pleased"          "mysterious"      
## [49183] "way"              "blended"          "sense"           
## [49186] "feel"             "smell"            "uncanny"         
## [49189] "memory"           "shapes"           "dark"            
## [49192] "seemed"           "know"             "just"            
## [49195] "sure"             "road"             "ahead"           
## [49198] "now"              "go"               "said"            
## [49201] "nice"             "hobbits"          "brave"           
## [49204] "hobbits"          "weary"            "course"          
## [49207] "precious"         "us"               "must"            
## [49210] "take"             "master"           "away"            
## [49213] "wicked"           "lights"           "yes"             
## [49216] "yes"              "must"             "words"           
## [49219] "started"          "almost"           "trot"            
## [49222] "appeared"         "long"             "lane"            
## [49225] "high"             "reeds"            "stumbled"        
## [49228] "quickly"          "little"           "stopped"         
## [49231] "suddenly"         "sniffed"          "air"             
## [49234] "doubtfully"       "hissing"          "troubled"        
## [49237] "displeased"       "growled"          "sam"             
## [49240] "misinterpreting"  "signs"            "whats"           
## [49243] "need"             "sniff"            "stink"           
## [49246] "nearly"           "knocks"           "nose"            
## [49249] "held"             "stink"            "master"          
## [49252] "stinks"           "whole"            "place"           
## [49255] "stinks"           "yes"              "yes"             
## [49258] "sam"              "stinks"           "answered"        
## [49261] "gollum"           "poor"             "sméagol"         
## [49264] "smells"           "good"             "sméagol"         
## [49267] "bears"            "helps"            "nice"            
## [49270] "master"           "thats"            "matter"          
## [49273] "airs"             "moving"           "change"          
## [49276] "coming"           "sméagol"          "wonders"         
## [49279] "hes"              "happy"            "went"            
## [49282] "uneasiness"       "grew"             "every"           
## [49285] "now"              "stood"            "full"            
## [49288] "height"           "craning"          "neck"            
## [49291] "eastward"         "southward"        "time"            
## [49294] "hobbits"          "hear"             "feel"            
## [49297] "troubling"        "suddenly"         "three"           
## [49300] "halted"           "stiffening"       "listening"       
## [49303] "frodo"            "sam"              "seemed"          
## [49306] "heard"            "far"              "away"            
## [49309] "long"             "wailing"          "cry"             
## [49312] "high"             "thin"             "cruel"           
## [49315] "shivered"         "moment"           "stirring"        
## [49318] "air"              "became"           "perceptible"     
## [49321] "grew"             "cold"             "stood"           
## [49324] "straining"        "ears"             "heard"           
## [49327] "noise"            "like"             "wind"            
## [49330] "coming"           "distance"         "misty"           
## [49333] "lights"           "wavered"          "dimmed"          
## [49336] "went"             "gollum"           "move"            
## [49339] "stood"            "shaking"          "gibbering"       
## [49342] "rush"             "wind"             "came"            
## [49345] "upon"             "hissing"          "snarling"        
## [49348] "marshes"          "night"            "became"          
## [49351] "less"             "dark"             "light"           
## [49354] "enough"           "see"              "half"            
## [49357] "see"              "shapeless"        "drifts"          
## [49360] "fog"              "curling"          "twisting"        
## [49363] "rolled"           "passed"           "looking"         
## [49366] "saw"              "clouds"           "breaking"        
## [49369] "shredding"        "high"             "south"           
## [49372] "moon"             "glimmered"        "riding"          
## [49375] "flying"           "wrack"            "moment"          
## [49378] "sight"            "gladdened"        "hearts"          
## [49381] "hobbits"          "gollum"           "cowered"         
## [49384] "muttering"        "curses"           "white"           
## [49387] "face"             "frodo"            "sam"             
## [49390] "staring"          "sky"              "breathing"       
## [49393] "deeply"           "fresher"          "air"             
## [49396] "saw"              "come"             "small"           
## [49399] "cloud"            "flying"           "accursed"        
## [49402] "hills"            "black"            "shadow"          
## [49405] "loosed"           "mordor"           "vast"            
## [49408] "shape"            "winged"           "ominous"         
## [49411] "scudded"          "across"           "moon"            
## [49414] "deadly"           "cry"              "went"            
## [49417] "away"             "westward"         "outrunning"      
## [49420] "wind"             "fell"             "speed"           
## [49423] "fell"             "forward"          "grovelling"      
## [49426] "heedlessly"       "cold"             "earth"           
## [49429] "shadow"           "horror"           "wheeled"         
## [49432] "returned"         "passing"          "lower"           
## [49435] "now"              "right"            "sweeping"        
## [49438] "fen"              "reek"             "ghastly"         
## [49441] "wings"            "gone"             "flying"          
## [49444] "back"             "mordor"           "speed"           
## [49447] "wrath"            "sauron"           "behind"          
## [49450] "wind"             "roared"           "away"            
## [49453] "leaving"          "dead"             "marshes"         
## [49456] "bare"             "bleak"            "naked"           
## [49459] "waste"            "far"              "eye"             
## [49462] "pierce"           "even"             "distant"         
## [49465] "menace"           "mountains"        "dappled"         
## [49468] "fitful"           "moonlight"        "frodo"           
## [49471] "sam"              "got"              "rubbing"         
## [49474] "eyes"             "like"             "children"        
## [49477] "wakened"          "evil"             "dream"           
## [49480] "find"             "familiar"         "night"           
## [49483] "still"            "world"            "gollum"          
## [49486] "lay"              "ground"           "stunned"         
## [49489] "roused"           "difficulty"       "time"            
## [49492] "lift"             "face"             "knelt"           
## [49495] "forward"          "elbows"           "covering"        
## [49498] "back"             "head"             "large"           
## [49501] "flat"             "hands"            "wraiths"         
## [49504] "wailed"           "wraiths"          "wings"           
## [49507] "precious"         "master"           "see"             
## [49510] "everything"       "everything"       "nothing"         
## [49513] "can"              "hide"             "curse"           
## [49516] "white"            "face"             "tell"            
## [49519] "everything"       "sees"             "knows"           
## [49522] "ach"              "gollum"           "gollum"          
## [49525] "gollum"           "moon"             "sunk"            
## [49528] "westering"        "far"              "beyond"          
## [49531] "tol"              "brandir"          "get"             
## [49534] "make"             "move"             "time"            
## [49537] "sam"              "thought"          "sensed"          
## [49540] "change"           "gollum"           "fawning"         
## [49543] "friendly"         "sam"              "surprised"       
## [49546] "strange"          "looks"            "eyes"            
## [49549] "times"            "especially"       "towards"         
## [49552] "frodo"            "went"             "back"            
## [49555] "old"              "manner"           "speaking"        
## [49558] "sam"              "another"          "growing"         
## [49561] "anxiety"          "frodo"            "seemed"          
## [49564] "weary"            "weary"            "point"           
## [49567] "exhaustion"       "said"             "nothing"         
## [49570] "indeed"           "hardly"           "spoke"           
## [49573] "complain"         "walked"           "like"            
## [49576] "one"              "carries"          "load"            
## [49579] "weight"           "ever"             "increasing"      
## [49582] "dragged"          "along"            "slower"          
## [49585] "slower"           "sam"              "often"           
## [49588] "beg"              "gollum"           "wait"            
## [49591] "leave"            "master"           "behind"          
## [49594] "fact"             "every"            "step"            
## [49597] "towards"          "gates"            "mordor"          
## [49600] "frodo"            "felt"             "ring"            
## [49603] "chain"            "neck"             "grow"            
## [49606] "burdensome"       "now"              "beginning"       
## [49609] "feel"             "actual"           "weight"          
## [49612] "dragging"         "earthwards"       "far"             
## [49615] "troubled"         "eye"              "called"          
## [49618] "drag"             "ring"             "made"            
## [49621] "cower"            "stoop"            "walked"          
## [49624] "eye"              "horrible"         "growing"         
## [49627] "sense"            "hostile"          "strove"          
## [49630] "great"            "power"            "pierce"          
## [49633] "shadows"          "cloud"            "earth"           
## [49636] "flesh"            "see"              "pin"             
## [49639] "deadly"           "gaze"             "naked"           
## [49642] "immovable"        "thin"             "frail"           
## [49645] "thin"             "veils"            "become"          
## [49648] "still"            "warded"           "frodo"           
## [49651] "knew"             "just"             "present"         
## [49654] "habitation"       "heart"            "now"             
## [49657] "certainly"        "man"              "can"             
## [49660] "tell"             "direction"        "sun"             
## [49663] "eyes"             "shut"             "facing"          
## [49666] "potency"          "beat"             "upon"            
## [49669] "brow"             "gollum"           "probably"        
## [49672] "felt"             "something"        "sort"            
## [49675] "went"             "wretched"         "heart"           
## [49678] "pressure"         "eye"              "lust"            
## [49681] "ring"             "near"             "grovelling"      
## [49684] "promise"          "made"             "half"            
## [49687] "fear"             "cold"             "iron"            
## [49690] "hobbits"          "guess"            "frodo"           
## [49693] "gave"             "thought"          "sams"            
## [49696] "mind"             "occupied"         "mostly"          
## [49699] "master"           "hardly"           "noticing"        
## [49702] "dark"             "cloud"            "fallen"          
## [49705] "heart"            "put"              "frodo"           
## [49708] "front"            "now"              "kept"            
## [49711] "watchful"         "eye"              "every"           
## [49714] "movement"         "supporting"       "stumbled"        
## [49717] "trying"           "encourage"        "clumsy"          
## [49720] "words"            "day"              "came"            
## [49723] "last"             "hobbits"          "surprised"       
## [49726] "see"              "much"             "closer"          
## [49729] "ominous"          "mountains"        "already"         
## [49732] "drawn"            "air"              "now"             
## [49735] "clearer"          "colder"           "though"          
## [49738] "still"            "far"              "walls"           
## [49741] "mordor"           "longer"           "cloudy"          
## [49744] "menace"           "edge"             "sight"           
## [49747] "grim"             "black"            "towers"          
## [49750] "frowned"          "across"           "dismal"          
## [49753] "waste"            "marshes"          "end"             
## [49756] "dying"            "away"             "dead"            
## [49759] "peats"            "wide"             "flats"           
## [49762] "dry"              "cracked"          "mud"             
## [49765] "land"             "ahead"            "rose"            
## [49768] "long"             "shallow"          "slopes"          
## [49771] "barren"           "pitiless"         "towards"         
## [49774] "desert"           "lay"              "saurons"         
## [49777] "gate"             "grey"             "light"           
## [49780] "lasted"           "cowered"          "black"           
## [49783] "stone"            "like"             "worms"           
## [49786] "shrinking"        "lest"             "winged"          
## [49789] "terror"           "pass"             "spy"             
## [49792] "cruel"            "eyes"             "remainder"       
## [49795] "journey"          "shadow"           "growing"         
## [49798] "fear"             "memory"           "find"            
## [49801] "nothing"          "rest"             "upon"            
## [49804] "two"              "nights"           "struggled"       
## [49807] "weary"            "pathless"         "land"            
## [49810] "air"              "seemed"           "grew"            
## [49813] "harsh"            "filled"           "bitter"          
## [49816] "reek"             "caught"           "breath"          
## [49819] "parched"          "mouths"           "last"            
## [49822] "fifth"            "morning"          "since"           
## [49825] "took"             "road"             "gollum"          
## [49828] "halted"           "dark"             "dawn"            
## [49831] "great"            "mountains"        "reached"         
## [49834] "roofs"            "smoke"            "cloud"           
## [49837] "feet"             "flung"            "huge"            
## [49840] "buttresses"       "broken"           "hills"           
## [49843] "now"              "nearest"          "scarce"          
## [49846] "dozen"            "miles"            "away"            
## [49849] "frodo"            "looked"           "round"           
## [49852] "horror"           "dreadful"         "dead"            
## [49855] "marshes"          "arid"             "moors"           
## [49858] "noman"            "lands"            "loathsome"       
## [49861] "far"              "country"          "crawling"        
## [49864] "day"              "now"              "slowly"          
## [49867] "unveiled"         "shrinking"        "eyes"            
## [49870] "even"             "mere"             "dead"            
## [49873] "faces"            "haggard"          "phantom"         
## [49876] "green"            "spring"           "come"            
## [49879] "neither"          "spring"           "summer"          
## [49882] "ever"             "come"             "nothing"         
## [49885] "lived"            "even"             "leprous"         
## [49888] "growths"          "feed"             "rottenness"      
## [49891] "gasping"          "pools"            "choked"          
## [49894] "ash"              "crawling"         "muds"            
## [49897] "sickly"           "white"            "grey"            
## [49900] "mountains"        "vomited"          "filth"           
## [49903] "entrails"         "upon"             "lands"           
## [49906] "high"             "mounds"           "crushed"         
## [49909] "powdered"         "rock"             "great"           
## [49912] "cones"            "earth"            "fire"            
## [49915] "blasted"          "poison"           "stained"         
## [49918] "stood"            "like"             "obscene"         
## [49921] "graveyard"        "endless"          "rows"            
## [49924] "slowly"           "revealed"         "reluctant"       
## [49927] "light"            "come"             "desolation"      
## [49930] "lay"              "mordor"           "lasting"         
## [49933] "monument"         "dark"             "labour"          
## [49936] "slaves"           "endure"           "purposes"        
## [49939] "made"             "void"             "land"            
## [49942] "defiled"          "diseased"         "beyond"          
## [49945] "healing"          "unless"           "great"           
## [49948] "sea"              "enter"            "wash"            
## [49951] "oblivion"         "feel"             "sick"            
## [49954] "said"             "sam"              "frodo"           
## [49957] "speak"            "stood"            "like"            
## [49960] "men"              "edge"             "sleep"           
## [49963] "nightmare"        "lurks"            "holding"         
## [49966] "though"           "know"             "can"             
## [49969] "come"             "morning"          "shadows"         
## [49972] "light"            "broadened"        "hardened"        
## [49975] "gasping"          "pits"             "poisonous"       
## [49978] "mounds"           "grew"             "hideously"       
## [49981] "clear"            "sun"              "walking"         
## [49984] "among"            "clouds"           "long"            
## [49987] "flags"            "smoke"            "even"            
## [49990] "sunlight"         "defiled"          "hobbits"         
## [49993] "welcome"          "light"            "unfriendly"      
## [49996] "seemed"           "revealing"        "helplessness"    
## [49999] "little"           "squeaking"        "ghosts"          
## [50002] "wandered"         "among"            "ash"             
## [50005] "heaps"            "dark"             "lord"            
## [50008] "weary"            "go"               "sought"          
## [50011] "place"            "rest"             "sat"             
## [50014] "without"          "speaking"         "shadow"          
## [50017] "mound"            "slag"             "foul"            
## [50020] "fumes"            "leaked"           "catching"        
## [50023] "throats"          "choking"          "gollum"          
## [50026] "first"            "get"              "spluttering"     
## [50029] "cursing"          "rose"             "without"         
## [50032] "word"             "glance"           "hobbits"         
## [50035] "crawled"          "away"             "fours"           
## [50038] "frodo"            "sam"              "crawled"         
## [50041] "came"             "wide"             "almost"          
## [50044] "circular"         "pit"              "high"            
## [50047] "banked"           "upon"             "west"            
## [50050] "cold"             "dead"             "foul"            
## [50053] "sump"             "oily"             "many"            
## [50056] "coloured"         "ooze"             "lay"             
## [50059] "bottom"           "evil"             "hole"            
## [50062] "cowered"          "hoping"           "shadow"          
## [50065] "escape"           "attention"        "eye"             
## [50068] "day"              "passed"           "slowly"          
## [50071] "great"            "thirst"           "troubled"        
## [50074] "drank"            "drops"            "bottles"         
## [50077] "last"             "filled"           "gully"           
## [50080] "now"              "looked"           "back"            
## [50083] "thought"          "seemed"           "place"           
## [50086] "peace"            "beauty"           "hobbits"         
## [50089] "took"             "turn"             "watch"           
## [50092] "first"            "tired"            "neither"         
## [50095] "sleep"            "sun"              "far"             
## [50098] "away"             "climbing"         "slow"            
## [50101] "moving"           "cloud"            "sam"             
## [50104] "dozed"            "frodos"           "turn"            
## [50107] "guard"            "lay"              "back"            
## [50110] "slope"            "pit"              "ease"            
## [50113] "sense"            "burden"           "looked"          
## [50116] "smoke"            "streaked"         "sky"             
## [50119] "saw"              "strange"          "phantoms"        
## [50122] "dark"             "riding"           "shapes"          
## [50125] "faces"            "past"             "lost"            
## [50128] "count"            "time"             "hovering"        
## [50131] "sleep"            "waking"           "forgetfulness"   
## [50134] "came"             "suddenly"         "sam"             
## [50137] "woke"             "thinking"         "heard"           
## [50140] "master"           "calling"          "evening"         
## [50143] "frodo"            "called"           "fallen"          
## [50146] "asleep"           "slid"             "nearly"          
## [50149] "bottom"           "pit"              "gollum"          
## [50152] "moment"           "sam"              "thought"         
## [50155] "trying"           "rouse"            "frodo"           
## [50158] "saw"              "gollum"           "talking"         
## [50161] "sméagol"          "holding"          "debate"          
## [50164] "thought"          "used"             "voice"           
## [50167] "made"             "squeak"           "hiss"            
## [50170] "pale"             "light"            "green"           
## [50173] "light"            "alternated"       "eyes"            
## [50176] "spoke"            "sméagol"          "promised"        
## [50179] "said"             "first"            "thought"         
## [50182] "yes"              "yes"              "precious"        
## [50185] "came"             "answer"           "promised"        
## [50188] "save"             "precious"         "let"             
## [50191] "never"            "going"            "yes"             
## [50194] "nearer"           "every"            "step"            
## [50197] "whats"            "hobbit"           "going"           
## [50200] "wonders"          "yes"              "wonders"         
## [50203] "dont"             "know"             "cant"            
## [50206] "help"             "masters"          "got"             
## [50209] "sméagol"          "promised"         "help"            
## [50212] "master"           "yes"              "yes"             
## [50215] "help"             "master"           "master"          
## [50218] "precious"         "master"           "help"            
## [50221] "ourselfs"         "yes"              "still"           
## [50224] "keep"             "promises"         "sméagol"         
## [50227] "said"             "good"             "nice"            
## [50230] "hobbit"           "took"             "cruel"           
## [50233] "rope"             "sméagols"         "leg"             
## [50236] "speaks"           "nicely"           "good"            
## [50239] "eh"               "precious"         "lets"            
## [50242] "good"             "good"             "fish"            
## [50245] "sweet"            "one"              "ourselfs"        
## [50248] "hurt"             "nice"             "hobbit"          
## [50251] "course"           "precious"         "holds"           
## [50254] "promise"          "voice"            "sméagol"         
## [50257] "objected"         "take"             "said"            
## [50260] "lets"             "hold"             "ourselfs"        
## [50263] "shall"            "master"           "gollum"          
## [50266] "make"             "hobbit"           "nasty"           
## [50269] "suspicious"       "hobbit"           "make"            
## [50272] "crawl"            "yes"              "gollum"          
## [50275] "nice"             "hobbit"           "oh"              
## [50278] "doesnt"           "please"           "us"              
## [50281] "still"            "hes"              "baggins"         
## [50284] "precious"         "yes"              "baggins"         
## [50287] "baggins"          "stole"            "found"           
## [50290] "said"             "nothing"          "nothing"         
## [50293] "hates"            "bagginses"        "baggins"         
## [50296] "yes"              "every"            "baggins"         
## [50299] "peoples"          "keep"             "precious"        
## [50302] "must"             "hell"             "see"             
## [50305] "hell"             "know"             "hell"            
## [50308] "take"             "us"               "sees"            
## [50311] "knows"            "heard"            "us"              
## [50314] "make"             "silly"            "promises"        
## [50317] "orders"           "yes"              "must"            
## [50320] "take"             "wraiths"          "searching"       
## [50323] "must"             "take"             "sweet"           
## [50326] "one"              "see"              "precious"        
## [50329] "can"              "escape"           "even"            
## [50332] "eh"               "perhaps"          "grows"           
## [50335] "strong"           "stronger"         "wraiths"         
## [50338] "lord"             "sméagol"          "gollum"          
## [50341] "great"            "gollum"           "eat"             
## [50344] "fish"             "every"            "day"             
## [50347] "three"            "times"            "day"             
## [50350] "fresh"            "sea"              "precious"        
## [50353] "gollum"           "must"             "wants"           
## [50356] "wants"            "wants"            "theres"          
## [50359] "two"              "theyll"           "wake"            
## [50362] "quick"            "kill"             "us"              
## [50365] "whined"           "sméagol"          "last"            
## [50368] "effort"           "now"              "yet"             
## [50371] "wants"            "long"             "pause"           
## [50374] "new"              "thought"          "wakened"         
## [50377] "yet"              "eh"               "perhaps"         
## [50380] "might"            "help"             "might"           
## [50383] "yes"              "way"              "wailed"          
## [50386] "sméagol"          "yes"              "wants"           
## [50389] "wants"            "time"             "second"          
## [50392] "thought"          "spoke"            "gollums"         
## [50395] "long"             "hand"             "crept"           
## [50398] "slowly"           "pawing"           "towards"         
## [50401] "frodo"            "drawn"            "back"            
## [50404] "jerk"             "sméagol"          "spoke"           
## [50407] "finally"          "arms"             "long"            
## [50410] "fingers"          "flexed"           "twitching"       
## [50413] "clawed"           "towards"          "neck"            
## [50416] "sam"              "lain"             "still"           
## [50419] "fascinated"       "debate"           "watching"        
## [50422] "every"            "move"             "gollum"          
## [50425] "made"             "half"             "closed"          
## [50428] "eye"              "lids"             "simple"          
## [50431] "mind"             "ordinary"         "hunger"          
## [50434] "desire"           "eat"              "hobbits"         
## [50437] "seemed"           "chief"            "danger"          
## [50440] "gollum"           "realized"         "now"             
## [50443] "gollum"           "feeling"          "terrible"        
## [50446] "call"             "ring"             "dark"            
## [50449] "lord"             "course"           "sam"             
## [50452] "wondered"         "one"              "nasty"           
## [50455] "friends"          "little"           "wretch"          
## [50458] "made"             "wanderings"       "supposed"        
## [50461] "forgot"           "point"            "things"          
## [50464] "plainly"          "gone"             "far"             
## [50467] "enough"           "getting"          "dangerous"       
## [50470] "great"            "heaviness"        "limbs"           
## [50473] "roused"           "effort"           "sat"             
## [50476] "something"        "warned"           "careful"         
## [50479] "reveal"           "overheard"        "debate"          
## [50482] "let"              "loud"             "sigh"            
## [50485] "gave"             "huge"             "yawn"            
## [50488] "whats"            "time"             "said"            
## [50491] "sleepily"         "gollum"           "sent"            
## [50494] "long"             "hiss"             "teeth"           
## [50497] "stood"            "moment"           "tense"           
## [50500] "menacing"         "collapsed"        "falling"         
## [50503] "forward"          "fours"            "crawling"        
## [50506] "bank"             "pit"              "nice"            
## [50509] "hobbits"          "nice"             "sam"             
## [50512] "said"             "sleepy"           "heads"           
## [50515] "yes"              "sleepy"           "heads"           
## [50518] "leave"            "good"             "sméagol"         
## [50521] "watch"            "evening"          "dusk"            
## [50524] "creeping"         "time"             "go"              
## [50527] "high"             "time"             "thought"         
## [50530] "sam"              "time"             "parted"          
## [50533] "yet"              "crossed"          "mind"            
## [50536] "wonder"           "indeed"           "gollum"          
## [50539] "now"              "dangerous"        "turned"          
## [50542] "loose"            "kept"             "curse"           
## [50545] "wish"             "choked"           "muttered"        
## [50548] "stumbled"         "bank"             "roused"          
## [50551] "master"           "strangely"        "enough"          
## [50554] "frodo"            "felt"             "refreshed"       
## [50557] "dreaming"         "dark"             "shadow"          
## [50560] "passed"           "fair"             "vision"          
## [50563] "visited"          "land"             "disease"         
## [50566] "nothing"          "remained"         "memory"          
## [50569] "yet"              "felt"             "glad"            
## [50572] "lighter"          "heart"            "burden"          
## [50575] "less"             "heavy"            "gollum"          
## [50578] "welcomed"         "dog"              "like"            
## [50581] "delight"          "chuckled"         "chattered"       
## [50584] "cracking"         "long"             "fingers"         
## [50587] "pawing"           "frodos"           "knees"           
## [50590] "frodo"            "smiled"           "come"            
## [50593] "said"             "guided"           "us"              
## [50596] "well"             "faithfully"       "last"            
## [50599] "stage"            "bring"            "us"              
## [50602] "gate"             "ask"              "go"              
## [50605] "bring"            "us"               "gate"            
## [50608] "may"              "go"               "wish"            
## [50611] "enemies"          "gate"             "eh"              
## [50614] "gollum"           "squeaked"         "seeming"         
## [50617] "surprised"        "frightened"       "gate"            
## [50620] "master"           "says"             "yes"             
## [50623] "says"             "good"             "sméagol"         
## [50626] "asks"             "yes"              "gets"            
## [50629] "closer"           "well"             "see"             
## [50632] "perhaps"          "well"             "see"             
## [50635] "wont"             "look"             "nice"            
## [50638] "go"               "said"             "sam"             
## [50641] "lets"             "get"              "falling"         
## [50644] "dusk"             "scrambled"        "pit"             
## [50647] "slowly"           "threaded"         "way"             
## [50650] "dead"             "land"             "gone"            
## [50653] "far"              "felt"             "fear"            
## [50656] "fallen"           "winged"           "shape"           
## [50659] "swept"            "marshes"          "halted"          
## [50662] "cowering"         "evil"             "smelling"        
## [50665] "ground"           "saw"              "nothing"         
## [50668] "gloomy"           "evening"          "sky"             
## [50671] "soon"             "menace"           "passed"          
## [50674] "high"             "overhead"         "going"           
## [50677] "maybe"            "swift"            "errand"          
## [50680] "barad"            "dûr"              "gollum"          
## [50683] "got"              "crept"            "forward"         
## [50686] "muttering"        "shaking"          "hour"            
## [50689] "midnight"         "fear"             "fell"            
## [50692] "third"            "time"             "now"             
## [50695] "seemed"           "remote"           "passing"         
## [50698] "far"              "clouds"           "rushing"         
## [50701] "terrible"         "speed"            "west"            
## [50704] "gollum"           "however"          "helpless"        
## [50707] "terror"           "convinced"        "hunted"          
## [50710] "approach"         "known"            "three"           
## [50713] "times"            "whimpered"        "three"           
## [50716] "times"            "threat"           "feel"            
## [50719] "us"               "feel"             "precious"        
## [50722] "precious"         "master"           "go"              
## [50725] "way"              "use"              "use"             
## [50728] "pleading"         "kind"             "words"           
## [50731] "longer"           "avail"            "frodo"           
## [50734] "commanded"        "angrily"          "laid"            
## [50737] "hand"             "sword"            "hilt"            
## [50740] "gollum"           "get"              "last"            
## [50743] "rose"             "snarl"            "went"            
## [50746] "like"             "beaten"           "dog"             
## [50749] "stumbled"         "weary"            "end"             
## [50752] "night"            "coming"           "another"         
## [50755] "day"              "fear"             "walked"          
## [50758] "silence"          "bowed"            "heads"           
## [50761] "seeing"           "nothing"          "hearing"         
## [50764] "nothing"          "wind"             "hissing"         
## [50767] "ears"             "chapter"          "black"           
## [50770] "gate"             "closed"           "next"            
## [50773] "day"              "dawned"           "journey"         
## [50776] "mordor"           "marshes"          "desert"          
## [50779] "behind"           "darkling"         "pallid"          
## [50782] "sky"              "great"            "mountains"       
## [50785] "reared"           "threatening"      "heads"           
## [50788] "upon"             "west"             "mordor"          
## [50791] "marched"          "gloomy"           "range"           
## [50794] "ephel"            "dúath"            "mountains"       
## [50797] "shadow"           "upon"             "north"           
## [50800] "broken"           "peaks"            "barren"          
## [50803] "ridges"           "ered"             "lithui"          
## [50806] "grey"             "ash"              "ranges"          
## [50809] "approached"       "one"              "another"         
## [50812] "indeed"           "parts"            "one"             
## [50815] "great"            "wall"             "mournful"        
## [50818] "plains"           "lithlad"          "gorgoroth"       
## [50821] "bitter"           "inland"           "sea"             
## [50824] "núrnen"           "amidmost"         "swung"           
## [50827] "long"             "arms"             "northward"       
## [50830] "arms"             "deep"             "defile"          
## [50833] "cirith"           "gorgor"           "haunted"         
## [50836] "pass"             "entrance"         "land"            
## [50839] "enemy"            "high"             "cliffs"          
## [50842] "lowered"          "upon"             "either"          
## [50845] "side"             "thrust"           "forward"         
## [50848] "mouth"            "two"              "sheer"           
## [50851] "hills"            "black"            "boned"           
## [50854] "bare"             "upon"             "stood"           
## [50857] "teeth"            "mordor"           "two"             
## [50860] "towers"           "strong"           "tall"            
## [50863] "days"             "long"             "past"            
## [50866] "built"            "men"              "gondor"          
## [50869] "pride"            "power"            "overthrow"       
## [50872] "sauron"           "flight"           "lest"            
## [50875] "seek"             "return"           "old"             
## [50878] "realm"            "strength"         "gondor"          
## [50881] "failed"           "men"              "slept"           
## [50884] "long"             "years"            "towers"          
## [50887] "stood"            "empty"            "sauron"          
## [50890] "returned"         "now"              "watch"           
## [50893] "towers"           "fallen"           "decay"           
## [50896] "repaired"         "filled"           "arms"            
## [50899] "garrisoned"       "ceaseless"        "vigilance"       
## [50902] "stony"            "faced"            "dark"            
## [50905] "window"           "holes"            "staring"         
## [50908] "north"            "east"             "west"            
## [50911] "window"           "full"             "sleepless"       
## [50914] "eyes"             "across"           "mouth"           
## [50917] "pass"             "cliff"            "cliff"           
## [50920] "dark"             "lord"             "built"           
## [50923] "rampart"          "stone"            "single"          
## [50926] "gate"             "iron"             "upon"            
## [50929] "battlement"       "sentinels"        "paced"           
## [50932] "unceasingly"      "beneath"          "hills"           
## [50935] "either"           "side"             "rock"            
## [50938] "bored"            "hundred"          "caves"           
## [50941] "maggot"           "holes"            "host"            
## [50944] "orcs"             "lurked"           "ready"           
## [50947] "signal"           "issue"            "forth"           
## [50950] "like"             "black"            "ants"            
## [50953] "going"            "war"              "none"            
## [50956] "pass"             "teeth"            "mordor"          
## [50959] "feel"             "bite"             "unless"          
## [50962] "summoned"         "sauron"           "knew"            
## [50965] "secret"           "passwords"        "open"            
## [50968] "morannon"         "black"            "gate"            
## [50971] "land"             "two"              "hobbits"         
## [50974] "gazed"            "towers"           "wall"            
## [50977] "despair"          "even"             "distance"        
## [50980] "see"              "dim"              "light"           
## [50983] "movement"         "black"            "guards"          
## [50986] "upon"             "wall"             "patrols"         
## [50989] "gate"             "lay"              "now"             
## [50992] "peering"          "edge"             "rocky"           
## [50995] "hollow"           "beneath"          "stretched"       
## [50998] "shadow"           "northmost"        "buttress"        
## [51001] "ephel"            "dúath"            "winging"         
## [51004] "heavy"            "air"              "straight"        
## [51007] "flight"           "crow"             "maybe"           
## [51010] "flown"            "furlong"          "hiding"          
## [51013] "place"            "black"            "summit"          
## [51016] "nearer"           "tower"            "faint"           
## [51019] "smoke"            "curled"           "fire"            
## [51022] "smouldered"       "hill"             "beneath"         
## [51025] "day"              "came"             "fallow"          
## [51028] "sun"              "blinked"          "lifeless"        
## [51031] "ridges"           "ered"             "lithui"          
## [51034] "suddenly"         "cry"              "brazen"          
## [51037] "throated"         "trumpets"         "heard"           
## [51040] "watch"            "towers"           "blared"          
## [51043] "far"              "away"             "hidden"          
## [51046] "holds"            "outposts"         "hills"           
## [51049] "came"             "answering"        "calls"           
## [51052] "still"            "remote"           "deep"            
## [51055] "ominous"          "echoed"           "hollow"          
## [51058] "land"             "beyond"           "mighty"          
## [51061] "horns"            "drums"            "barad"           
## [51064] "dûr"              "another"          "dreadful"        
## [51067] "day"              "fear"             "toil"            
## [51070] "come"             "mordor"           "night"           
## [51073] "guards"           "summoned"         "dungeons"        
## [51076] "deep"             "halls"            "day"             
## [51079] "guards"           "evil"             "eyed"            
## [51082] "fell"             "marching"         "posts"           
## [51085] "steel"            "gleamed"          "dimly"           
## [51088] "battlement"       "well"             "said"            
## [51091] "sam"              "heres"            "gate"            
## [51094] "looks"            "thats"            "far"             
## [51097] "ever"             "going"            "get"             
## [51100] "word"             "gaffer"           "thing"           
## [51103] "two"              "say"              "saw"             
## [51106] "now"              "often"            "said"            
## [51109] "id"               "come"             "bad"             
## [51112] "end"              "didnt"            "watch"           
## [51115] "step"             "now"              "dont"            
## [51118] "suppose"          "ill"              "ever"            
## [51121] "see"              "old"              "fellow"          
## [51124] "hell"             "miss"             "chance"          
## [51127] "toldee"           "sam"              "mores"           
## [51130] "pity"             "go"               "telling"         
## [51133] "long"             "hed"              "got"             
## [51136] "breath"           "see"              "old"             
## [51139] "face"             "id"               "get"             
## [51142] "wash"             "first"            "wouldnt"         
## [51145] "know"             "suppose"          "good"            
## [51148] "asking"           "way"              "go"              
## [51151] "now"              "cant"             "go"              
## [51154] "unless"           "want"             "ask"             
## [51157] "orcs"             "lift"             "said"            
## [51160] "gollum"           "use"              "cant"            
## [51163] "go"               "sméagol"          "said"            
## [51166] "said"             "well"             "go"              
## [51169] "gate"             "well"             "see"             
## [51172] "see"              "yes"              "precious"        
## [51175] "see"              "sméagol"          "knew"            
## [51178] "hobbits"          "go"               "way"             
## [51181] "yes"              "sméagol"          "knew"            
## [51184] "plague"           "bring"            "us"              
## [51187] "said"             "sam"              "feeling"         
## [51190] "mood"             "just"             "reasonable"      
## [51193] "master"           "said"             "master"          
## [51196] "says"             "bring"            "us"              
## [51199] "gate"             "good"             "sméagol"         
## [51202] "master"           "said"             "wise"            
## [51205] "master"           "said"             "frodo"           
## [51208] "face"             "grim"             "set"             
## [51211] "resolute"         "filthy"           "haggard"         
## [51214] "pinched"          "weariness"        "cowered"         
## [51217] "longer"           "eyes"             "clear"           
## [51220] "said"             "purpose"          "enter"           
## [51223] "mordor"           "know"             "way"             
## [51226] "therefore"        "shall"            "go"              
## [51229] "way"              "ask"              "anyone"          
## [51232] "go"               "master"           "wailed"          
## [51235] "gollum"           "pawing"           "seeming"         
## [51238] "great"            "distress"         "use"             
## [51241] "way"              "use"              "dont"            
## [51244] "take"             "precious"         "hell"            
## [51247] "eat"              "us"               "gets"            
## [51250] "eat"              "world"            "keep"            
## [51253] "nice"             "master"           "kind"            
## [51256] "sméagol"          "dont"             "let"             
## [51259] "go"               "away"             "go"              
## [51262] "nice"             "places"           "give"            
## [51265] "back"             "little"           "sméagol"         
## [51268] "yes"              "yes"              "master"          
## [51271] "give"             "back"             "eh"              
## [51274] "sméagol"          "keep"             "safe"            
## [51277] "lots"             "good"             "especially"      
## [51280] "nice"             "hobbits"          "hobbits"         
## [51283] "go"               "home"             "dont"            
## [51286] "go"               "gate"             "commanded"       
## [51289] "go"               "land"             "mordor"          
## [51292] "therefore"        "shall"            "go"              
## [51295] "said"             "frodo"            "one"             
## [51298] "way"              "must"             "take"            
## [51301] "comes"            "must"             "come"            
## [51304] "sam"              "said"             "nothing"         
## [51307] "look"             "frodos"           "face"            
## [51310] "enough"           "knew"             "words"           
## [51313] "useless"          "never"            "real"            
## [51316] "hope"             "affair"           "beginning"       
## [51319] "cheerful"         "hobbit"           "needed"          
## [51322] "hope"             "long"             "despair"         
## [51325] "postponed"        "now"              "come"            
## [51328] "bitter"           "end"              "stuck"           
## [51331] "master"           "way"              "chiefly"         
## [51334] "come"             "still"            "stick"           
## [51337] "master"           "go"               "mordor"          
## [51340] "alone"            "sam"              "go"              
## [51343] "rate"             "get"              "rid"             
## [51346] "gollum"           "gollum"           "however"         
## [51349] "intend"           "got"              "rid"             
## [51352] "yet"              "knelt"            "frodos"          
## [51355] "feet"             "wringing"         "hands"           
## [51358] "squeaking"        "way"              "master"          
## [51361] "pleaded"          "another"          "way"             
## [51364] "yes"              "indeed"           "another"         
## [51367] "way"              "darker"           "difficult"       
## [51370] "find"             "secret"           "sméagol"         
## [51373] "knows"            "let"              "sméagol"         
## [51376] "show"             "another"          "way"             
## [51379] "said"             "frodo"            "doubtfully"      
## [51382] "looking"          "gollum"           "searching"       
## [51385] "eyes"             "yess"             "yess"            
## [51388] "indeed"           "another"          "way"             
## [51391] "sméagol"          "found"            "lets"            
## [51394] "go"               "see"              "still"           
## [51397] "spoken"           "master"           "ask"             
## [51400] "master"           "say"              "meant"           
## [51403] "tell"             "poor"             "sméagol"         
## [51406] "says"             "sméagol"          "take"            
## [51409] "gate"             "good"             "bye"             
## [51412] "sméagol"          "can"              "run"             
## [51415] "away"             "good"             "now"             
## [51418] "says"             "purpose"          "enter"           
## [51421] "mordor"           "way"              "sméagol"         
## [51424] "afraid"           "want"             "lose"            
## [51427] "nice"             "master"           "promised"        
## [51430] "master"           "made"             "promise"         
## [51433] "save"             "precious"         "master"          
## [51436] "going"            "take"             "straight"        
## [51439] "black"            "hand"             "master"          
## [51442] "go"               "way"              "sméagol"         
## [51445] "must"             "save"             "thinks"          
## [51448] "another"          "way"              "upon"            
## [51451] "time"             "nice"             "master"          
## [51454] "sméagol"          "good"             "always"          
## [51457] "helps"            "sam"              "frowned"         
## [51460] "bored"            "holes"            "gollum"          
## [51463] "eyes"             "done"             "mind"            
## [51466] "full"             "doubt"            "appearances"     
## [51469] "gollum"           "genuinely"        "distressed"      
## [51472] "anxious"          "help"             "frodo"           
## [51475] "sam"              "remembering"      "overheard"       
## [51478] "debate"           "found"            "hard"            
## [51481] "believe"          "long"             "submerged"       
## [51484] "sméagol"          "come"             "top"             
## [51487] "voice"            "rate"             "last"            
## [51490] "word"             "debate"           "sams"            
## [51493] "guess"            "sméagol"          "gollum"          
## [51496] "halves"           "mind"             "called"          
## [51499] "slinker"          "stinker"          "made"            
## [51502] "truce"            "temporary"        "alliance"        
## [51505] "neither"          "wanted"           "enemy"           
## [51508] "get"              "ring"             "wished"          
## [51511] "keep"             "frodo"            "capture"         
## [51514] "eye"              "long"             "possible"        
## [51517] "rate"             "long"             "stinker"         
## [51520] "still"            "chance"           "laying"          
## [51523] "hands"            "precious"         "whether"         
## [51526] "really"           "another"          "way"             
## [51529] "mordor"           "sam"              "doubted"         
## [51532] "good"             "thing"            "neither"         
## [51535] "half"             "old"              "villain"         
## [51538] "dont"             "know"             "master"          
## [51541] "means"            "thought"          "knew"            
## [51544] "mr"               "frodo"            "trying"          
## [51547] "put"              "end"              "precious"        
## [51550] "good"             "thered"           "trouble"         
## [51553] "pretty"           "quick"            "bet"             
## [51556] "anyhow"           "old"              "stinker"         
## [51559] "frightened"       "enemy"            "hes"             
## [51562] "orders"           "kind"             "hed"             
## [51565] "give"             "us"               "away"            
## [51568] "rather"           "caught"           "helping"         
## [51571] "us"               "rather"           "let"             
## [51574] "precious"         "melted"           "maybe"           
## [51577] "least"            "thats"            "idea"            
## [51580] "hope"             "master"           "think"           
## [51583] "carefully"        "hes"              "wise"            
## [51586] "hes"              "soft"             "hearted"         
## [51589] "thats"            "beyond"           "gamgee"          
## [51592] "guess"            "hell"             "next"            
## [51595] "frodo"            "answer"           "gollum"          
## [51598] "doubts"           "passing"          "sams"            
## [51601] "slow"             "shrewd"           "mind"            
## [51604] "stood"            "gazing"           "towards"         
## [51607] "dark"             "cliff"            "cirith"          
## [51610] "gorgor"           "hollow"           "taken"           
## [51613] "refuge"           "delved"           "side"            
## [51616] "low"              "hill"             "little"          
## [51619] "height"           "long"             "trenchlike"      
## [51622] "valley"           "lay"              "outer"           
## [51625] "buttresses"       "mountains"        "midst"           
## [51628] "valley"           "stood"            "black"           
## [51631] "foundations"      "western"          "watch"           
## [51634] "tower"            "morning"          "light"           
## [51637] "roads"            "converged"        "upon"            
## [51640] "gate"             "mordor"           "now"             
## [51643] "clearly"          "seen"             "pale"            
## [51646] "dusty"            "one"              "winding"         
## [51649] "back"             "northwards"       "another"         
## [51652] "dwindling"        "eastwards"        "mists"           
## [51655] "clung"            "feet"             "ered"            
## [51658] "lithui"           "third"            "ran"             
## [51661] "towards"          "bent"             "sharply"         
## [51664] "round"            "tower"            "entered"         
## [51667] "narrow"           "defile"           "passed"          
## [51670] "far"              "hollow"           "stood"           
## [51673] "westward"         "right"            "turned"          
## [51676] "skirting"         "shoulders"        "mountains"       
## [51679] "went"             "southwards"       "deep"            
## [51682] "shadows"          "mantled"          "western"         
## [51685] "sides"            "ephel"            "dúath"           
## [51688] "beyond"           "sight"            "journeyed"       
## [51691] "narrow"           "land"             "mountains"       
## [51694] "great"            "river"            "gazed"           
## [51697] "frodo"            "became"           "aware"           
## [51700] "great"            "stir"             "movement"        
## [51703] "plain"            "seemed"           "whole"           
## [51706] "armies"           "march"            "though"          
## [51709] "part"             "hidden"           "reeks"           
## [51712] "fumes"            "drifting"         "fens"            
## [51715] "wastes"           "beyond"           "caught"          
## [51718] "gleam"            "spears"           "helmets"         
## [51721] "levels"           "beside"           "roads"           
## [51724] "horsemen"         "seen"             "riding"          
## [51727] "many"             "companies"        "remembered"      
## [51730] "vision"           "afar"             "upon"            
## [51733] "amon"             "hen"              "days"            
## [51736] "though"           "now"              "seemed"          
## [51739] "many"             "years"            "ago"             
## [51742] "knew"             "hope"             "one"             
## [51745] "wild"             "moment"           "stirred"         
## [51748] "heart"            "vain"             "trumpets"        
## [51751] "rung"             "challenge"        "greeting"        
## [51754] "assault"          "upon"             "dark"            
## [51757] "lord"             "men"              "gondor"          
## [51760] "risen"            "like"             "avenging"        
## [51763] "ghosts"           "graves"           "valour"          
## [51766] "long"             "passed"           "away"            
## [51769] "men"              "race"             "wide"            
## [51772] "eastlands"        "gathering"        "summons"         
## [51775] "overlord"         "armies"           "encamped"        
## [51778] "gate"             "night"            "now"             
## [51781] "marched"          "swell"            "mounting"        
## [51784] "power"            "suddenly"         "made"            
## [51787] "fully"            "aware"            "peril"           
## [51790] "position"         "alone"            "growing"         
## [51793] "light"            "day"              "near"            
## [51796] "vast"             "menace"           "frodo"           
## [51799] "quickly"          "drew"             "frail"           
## [51802] "grey"             "hood"             "close"           
## [51805] "upon"             "head"             "stepped"         
## [51808] "dell"             "turned"           "gollum"          
## [51811] "sméagol"          "said"             "trust"           
## [51814] "lndeed"           "seems"            "must"            
## [51817] "fate"             "receive"          "help"            
## [51820] "least"            "looked"           "fate"            
## [51823] "help"             "long"             "pursued"         
## [51826] "evil"             "purpose"          "far"             
## [51829] "deserved"         "well"             "kept"            
## [51832] "promise"          "truly"            "truly"           
## [51835] "say"              "mean"             "added"           
## [51838] "glance"           "sam"              "twice"           
## [51841] "now"              "power"            "done"            
## [51844] "harm"             "us"               "tried"           
## [51847] "take"             "sought"           "may"             
## [51850] "third"            "time"             "prove"           
## [51853] "best"             "warn"             "sméagol"         
## [51856] "danger"           "yes"              "yes"             
## [51859] "master"           "said"             "gollum"          
## [51862] "dreadful"         "danger"           "sméagols"        
## [51865] "bones"            "shake"            "think"           
## [51868] "doesnt"           "run"              "away"            
## [51871] "must"             "help"             "nice"            
## [51874] "master"           "mean"             "danger"          
## [51877] "share"            "said"             "frodo"           
## [51880] "mean"             "danger"           "alone"           
## [51883] "swore"            "promise"          "call"            
## [51886] "precious"         "remember"         "hold"            
## [51889] "seek"             "way"              "twist"           
## [51892] "undoing"          "already"          "twisted"         
## [51895] "revealed"         "just"             "now"             
## [51898] "foolishly"        "give"             "back"            
## [51901] "sméagol"          "said"             "say"             
## [51904] "let"              "thought"          "grow"            
## [51907] "never"            "get"              "back"            
## [51910] "desire"           "may"              "betray"          
## [51913] "bitter"           "end"              "never"           
## [51916] "get"              "back"             "last"            
## [51919] "need"             "sméagol"          "put"             
## [51922] "precious"         "precious"         "mastered"        
## [51925] "long"             "ago"              "wearing"         
## [51928] "command"          "obey"             "even"            
## [51931] "leap"             "precipice"        "cast"            
## [51934] "fire"             "command"          "care"            
## [51937] "sméagol"          "sam"              "looked"          
## [51940] "master"           "approval"         "also"            
## [51943] "surprise"         "look"             "face"            
## [51946] "tone"             "voice"            "known"           
## [51949] "always"           "notion"           "kindness"        
## [51952] "dear"             "mr"               "frodo"           
## [51955] "high"             "degree"           "must"            
## [51958] "imply"            "fair"             "measure"         
## [51961] "blindness"        "course"           "also"            
## [51964] "firmly"           "held"             "incompatible"    
## [51967] "belief"           "mr"               "frodo"           
## [51970] "wisest"           "person"           "world"           
## [51973] "possible"         "exception"        "old"             
## [51976] "mr"               "bilbo"            "gandalf"         
## [51979] "gollum"           "way"              "much"            
## [51982] "excuse"           "acquaintance"     "much"            
## [51985] "briefer"          "may"              "made"            
## [51988] "similar"          "mistake"          "confusing"       
## [51991] "kindness"         "blindness"        "rate"            
## [51994] "speech"           "abashed"          "terrified"       
## [51997] "grovelled"        "ground"           "speak"           
## [52000] "clear"            "words"            "nice"            
## [52003] "master"           "frodo"            "waited"          
## [52006] "patiently"        "spoke"            "less"            
## [52009] "sternly"          "come"             "now"             
## [52012] "gollum"           "sméagol"          "wish"            
## [52015] "tell"             "way"              "show"            
## [52018] "can"              "hope"             "enough"          
## [52021] "justify"          "turning"          "aside"           
## [52024] "plain"            "path"             "haste"           
## [52027] "gollum"           "pitiable"         "state"           
## [52030] "frodos"           "threat"           "quite"           
## [52033] "unnerved"         "easy"             "get"             
## [52036] "clear"            "account"          "amid"            
## [52039] "mumblings"        "squeakings"       "frequent"        
## [52042] "interruptions"    "crawled"          "floor"           
## [52045] "begged"           "kind"             "poor"            
## [52048] "little"           "sméagol"          "grew"            
## [52051] "little"           "calmer"           "frodo"           
## [52054] "gathered"         "bit"              "bit"             
## [52057] "traveller"        "followed"         "road"            
## [52060] "turned"           "west"             "ephel"           
## [52063] "dúath"            "come"             "time"            
## [52066] "crossing"         "circle"           "dark"            
## [52069] "trees"            "right"            "road"            
## [52072] "went"             "osgiliath"        "bridges"         
## [52075] "anduin"           "middle"           "road"            
## [52078] "went"             "southwards"       "said"            
## [52081] "gollum"           "never"            "went"            
## [52084] "way"              "say"              "goes"            
## [52087] "hundred"          "leagues"          "can"             
## [52090] "see"              "great"            "water"           
## [52093] "never"            "still"            "lots"            
## [52096] "fishes"           "big"              "birds"           
## [52099] "eat"              "fishes"           "nice"            
## [52102] "birds"            "never"            "went"            
## [52105] "alas"             "never"            "chance"          
## [52108] "still"            "lands"            "say"             
## [52111] "yellow"           "face"             "hot"             
## [52114] "seldom"           "clouds"           "men"             
## [52117] "fierce"           "dark"             "faces"           
## [52120] "want"             "see"              "land"            
## [52123] "said"             "frodo"            "wander"          
## [52126] "road"             "third"            "turning"         
## [52129] "yes"              "yes"              "third"           
## [52132] "way"              "said"             "gollum"          
## [52135] "road"             "left"             "begins"          
## [52138] "climb"            "winding"          "climbing"        
## [52141] "back"             "towards"          "tall"            
## [52144] "shadows"          "turns"            "round"           
## [52147] "black"            "rock"             "youll"           
## [52150] "see"              "suddenly"         "youll"           
## [52153] "see"              "youll"            "want"            
## [52156] "hide"             "see"              "see"             
## [52159] "see"              "old"              "fortress"        
## [52162] "old"              "horrible"         "now"             
## [52165] "used"             "hear"             "tales"           
## [52168] "south"            "sméagol"          "young"           
## [52171] "long"             "ago"              "yes"             
## [52174] "used"             "tell"             "lots"            
## [52177] "tales"            "evening"          "sitting"         
## [52180] "banks"            "great"            "river"           
## [52183] "willow"           "lands"            "river"           
## [52186] "younger"          "gollum"           "gollum"          
## [52189] "began"            "weep"             "mutter"          
## [52192] "hobbits"          "waited"           "patiently"       
## [52195] "tales"            "south"            "gollum"          
## [52198] "went"             "tall"             "men"             
## [52201] "shining"          "eyes"             "houses"          
## [52204] "like"             "hills"            "stone"           
## [52207] "silver"           "crown"            "king"            
## [52210] "white"            "tree"             "wonderful"       
## [52213] "tales"            "built"            "tall"            
## [52216] "towers"           "one"              "raised"          
## [52219] "silver"           "white"            "stone"           
## [52222] "like"             "moon"             "round"           
## [52225] "great"            "white"            "walls"           
## [52228] "yes"              "many"             "tales"           
## [52231] "tower"            "moon"             "minas"           
## [52234] "ithil"            "isildur"          "son"             
## [52237] "elendil"          "built"            "said"            
## [52240] "frodo"            "isildur"          "cut"             
## [52243] "finger"           "enemy"            "yes"             
## [52246] "four"             "black"            "hand"            
## [52249] "enough"           "said"             "gollum"          
## [52252] "shuddering"       "hated"            "isildurs"        
## [52255] "city"             "hate"             "said"            
## [52258] "frodo"            "tower"            "moon"            
## [52261] "us"               "well"             "master"          
## [52264] "tall"             "tower"            "white"           
## [52267] "houses"           "wall"             "nice"            
## [52270] "now"              "beautiful"        "conquered"       
## [52273] "long"             "ago"              "terrible"        
## [52276] "place"            "now"              "travellers"      
## [52279] "shiver"           "see"              "creep"           
## [52282] "sight"            "avoid"            "shadow"          
## [52285] "master"           "go"               "way"             
## [52288] "way"              "mountains"        "lower"           
## [52291] "old"              "road"             "goes"            
## [52294] "reaches"          "dark"             "pass"            
## [52297] "top"              "goes"             "gorgoroth"       
## [52300] "voice"            "sank"             "whisper"         
## [52303] "shuddered"        "help"             "us"              
## [52306] "asked"            "sam"              "surely"          
## [52309] "enemy"            "knows"            "mountains"       
## [52312] "road"             "guarded"          "close"           
## [52315] "tower"            "isnt"             "empty"           
## [52318] "empty"            "whispered"        "gollum"          
## [52321] "seems"            "empty"            "isnt"            
## [52324] "dreadful"         "things"           "live"            
## [52327] "orcs"             "yes"              "always"          
## [52330] "orcs"             "worse"            "things"          
## [52333] "worse"            "things"           "live"            
## [52336] "road"             "climbs"           "right"           
## [52339] "shadow"           "walls"            "passes"          
## [52342] "gate"             "nothing"          "moves"           
## [52345] "road"             "dont"             "know"            
## [52348] "things"           "inside"           "know"            
## [52351] "silent"           "watchers"         "thats"           
## [52354] "advice"           "said"             "sam"             
## [52357] "go"               "another"          "long"            
## [52360] "march"            "south"            "find"            
## [52363] "fix"              "worse"            "one"             
## [52366] "get"              "ever"             "indeed"          
## [52369] "said"             "gollum"           "hobbits"         
## [52372] "must"             "see"              "must"            
## [52375] "try"              "understand"       "expect"          
## [52378] "attack"           "way"              "eye"             
## [52381] "round"            "attends"          "places"          
## [52384] "others"           "cant"             "see"             
## [52387] "everything"       "yet"              "see"             
## [52390] "conquered"        "country"          "west"            
## [52393] "shadowy"          "mountains"        "river"           
## [52396] "holds"            "bridges"          "now"             
## [52399] "thinks"           "one"              "can"             
## [52402] "come"             "moontower"        "without"         
## [52405] "fighting"         "big"              "battle"          
## [52408] "bridges"          "getting"          "lots"            
## [52411] "boats"            "hide"             "know"            
## [52414] "seem"             "know"             "lot"             
## [52417] "hes"              "thinking"         "said"            
## [52420] "sam"              "talking"          "lately"          
## [52423] "just"             "hobnobbing"       "orcs"            
## [52426] "nice"             "hobbit"           "sensible"        
## [52429] "said"             "gollum"           "giving"          
## [52432] "sam"              "angry"            "glance"          
## [52435] "turning"          "frodo"            "sméagol"         
## [52438] "talked"           "orcs"             "yes"             
## [52441] "course"           "met"              "master"          
## [52444] "many"             "peoples"          "walked"          
## [52447] "far"              "says"             "now"             
## [52450] "many"             "peoples"          "saying"          
## [52453] "north"            "big"              "danger"          
## [52456] "us"               "come"             "black"           
## [52459] "gate"             "one"              "day"             
## [52462] "one"              "day"              "soon"            
## [52465] "way"              "big"              "armies"          
## [52468] "can"              "come"             "away"            
## [52471] "west"             "afraid"           "silent"          
## [52474] "watchers"         "just"             "said"            
## [52477] "sam"              "put"              "walk"            
## [52480] "knock"            "gate"             "ask"             
## [52483] "right"            "road"             "mordor"          
## [52486] "silent"           "answer"           "sense"           
## [52489] "might"            "well"             "save"            
## [52492] "long"             "tramp"            "dont"            
## [52495] "make"             "jokes"            "hissed"          
## [52498] "gollum"           "isnt"             "funny"           
## [52501] "amusing"          "nut"              "sense"           
## [52504] "try"              "get"              "mordor"          
## [52507] "master"           "says"             "must"            
## [52510] "go"               "go"               "must"            
## [52513] "try"              "way"              "must"            
## [52516] "go"               "terrible"         "city"            
## [52519] "course"           "sméagol"          "helps"           
## [52522] "nice"             "sméagol"          "though"          
## [52525] "one"              "tells"            "sméagol"         
## [52528] "helps"            "found"            "knows"           
## [52531] "find"             "asked"            "frodo"           
## [52534] "gollum"           "crouched"         "voice"           
## [52537] "sank"             "whisper"          "little"          
## [52540] "path"             "leading"          "mountains"       
## [52543] "stair"            "narrow"           "stair"           
## [52546] "yes"              "long"             "narrow"          
## [52549] "stairs"           "voice"            "sank"            
## [52552] "even"             "lower"            "tunnel"          
## [52555] "dark"             "tunnel"           "last"            
## [52558] "little"           "cleft"            "path"            
## [52561] "high"             "main"             "pass"            
## [52564] "way"              "sméagol"          "got"             
## [52567] "darkness"         "years"            "ago"             
## [52570] "path"             "may"              "vanished"        
## [52573] "now"              "perhaps"          "perhaps"         
## [52576] "dont"             "like"             "sound"           
## [52579] "said"             "sam"              "sounds"          
## [52582] "easy"             "rate"             "telling"         
## [52585] "path"             "still"            "itll"            
## [52588] "guarded"          "wasnt"            "guarded"         
## [52591] "gollum"           "said"             "caught"          
## [52594] "fancied"          "caught"           "green"           
## [52597] "gleam"            "gollums"          "eye"             
## [52600] "gollum"           "muttered"         "reply"           
## [52603] "guarded"          "asked"            "frodo"           
## [52606] "sternly"          "escape"           "darkness"        
## [52609] "sméagol"          "rather"           "permitted"       
## [52612] "depart"           "upon"             "errand"          
## [52615] "least"            "hat"              "aragorn"         
## [52618] "thought"          "found"            "dead"            
## [52621] "marshes"          "years"            "ago"             
## [52624] "lie"              "hissed"           "gollum"          
## [52627] "evil"             "light"            "came"            
## [52630] "eyes"             "naming"           "aragorn"         
## [52633] "lied"             "yes"              "escape"          
## [52636] "poor"             "self"             "indeed"          
## [52639] "told"             "seek"             "precious"        
## [52642] "searched"         "searched"         "course"          
## [52645] "black"            "one"              "precious"        
## [52648] "mine"             "tell"             "escape"          
## [52651] "frodo"            "felt"             "strange"         
## [52654] "certainty"        "matter"           "gollum"          
## [52657] "far"              "truth"            "might"           
## [52660] "suspected"        "somehow"          "found"           
## [52663] "way"              "mordor"           "least"           
## [52666] "believed"         "cunning"          "one"             
## [52669] "thing"            "noted"            "gollum"          
## [52672] "used"             "seemed"           "usually"         
## [52675] "sign"             "rare"             "appearances"     
## [52678] "remnants"         "old"              "truth"           
## [52681] "sincerity"        "moment"           "top"             
## [52684] "even"             "gollum"           "trusted"         
## [52687] "point"            "frodo"            "forget"          
## [52690] "wiles"            "enemy"            "escape"          
## [52693] "may"              "allowed"          "arranged"        
## [52696] "well"             "known"            "dark"            
## [52699] "tower"            "case"             "gollum"          
## [52702] "plainly"          "keeping"          "good"            
## [52705] "deal"             "back"             "ask"             
## [52708] "said"             "secret"           "way"             
## [52711] "guarded"          "name"             "aragorn"         
## [52714] "put"              "gollum"           "sullen"          
## [52717] "mood"             "injured"          "air"             
## [52720] "liar"             "suspected"        "told"            
## [52723] "truth"            "part"             "answer"          
## [52726] "guarded"          "frodo"            "repeated"        
## [52729] "yes"              "yes"              "perhaps"         
## [52732] "safe"             "places"           "country"         
## [52735] "said"             "gollum"           "sulkily"         
## [52738] "safe"             "places"           "master"          
## [52741] "must"             "try"              "go"              
## [52744] "home"             "way"              "get"             
## [52747] "say"              "name"             "perilous"        
## [52750] "place"            "high"             "pass"            
## [52753] "tell"             "name"             "cirith"          
## [52756] "ungol"            "name"             "dreadful"        
## [52759] "rumour"           "aragorn"          "perhaps"         
## [52762] "told"             "name"             "significance"    
## [52765] "gandalf"          "warned"           "alone"           
## [52768] "aragorn"          "far"              "away"            
## [52771] "gandalf"          "stood"            "amid"            
## [52774] "ruin"             "isengard"         "strove"          
## [52777] "saruman"          "delayed"          "treason"         
## [52780] "yet"              "even"             "spoke"           
## [52783] "last"             "words"            "saruman"         
## [52786] "palantír"         "crashed"          "fire"            
## [52789] "upon"             "steps"            "orthanc"         
## [52792] "thought"          "ever"             "upon"            
## [52795] "frodo"            "samwise"          "long"            
## [52798] "leagues"          "mind"             "sought"          
## [52801] "hope"             "pity"             "maybe"           
## [52804] "frodo"            "felt"             "knowing"         
## [52807] "upon"             "amon"             "hen"             
## [52810] "even"             "though"           "believed"        
## [52813] "gandalf"          "gone"             "gone"            
## [52816] "ever"             "shadow"           "moria"           
## [52819] "far"              "away"             "sat"             
## [52822] "upon"             "ground"           "long"            
## [52825] "silent"           "head"             "bowed"           
## [52828] "striving"         "recall"           "gandalf"         
## [52831] "said"             "choice"           "recall"          
## [52834] "counsel"          "indeed"           "gandalfs"        
## [52837] "guidance"         "taken"            "soon"            
## [52840] "soon"             "dark"             "land"            
## [52843] "still"            "far"              "away"            
## [52846] "enter"            "last"             "gandalf"         
## [52849] "said"             "perhaps"          "say"             
## [52852] "stronghold"       "enemy"            "north"           
## [52855] "dol"              "guldur"           "ventured"        
## [52858] "mordor"           "mountain"         "fire"            
## [52861] "barad"            "dûr"              "since"           
## [52864] "dark"             "lord"             "rose"            
## [52867] "power"            "ever"             "journeyed"       
## [52870] "frodo"            "think"            "little"          
## [52873] "halfling"         "shire"            "simple"          
## [52876] "hobbit"           "quiet"            "countryside"     
## [52879] "expected"         "find"             "way"             
## [52882] "great"            "ones"             "go"              
## [52885] "dared"            "go"               "evil"            
## [52888] "fate"             "taken"            "sitting"         
## [52891] "room"             "far"              "spring"          
## [52894] "another"          "year"             "remote"          
## [52897] "now"              "like"             "chapter"         
## [52900] "story"            "worlds"           "youth"           
## [52903] "trees"            "silver"           "gold"            
## [52906] "still"            "bloom"            "evil"            
## [52909] "choice"           "way"              "choose"          
## [52912] "led"              "terror"           "death"           
## [52915] "good"             "lay"              "choice"          
## [52918] "day"              "drew"             "deep"            
## [52921] "silence"          "fell"             "upon"            
## [52924] "little"           "grey"             "hollow"          
## [52927] "lay"              "near"             "borders"         
## [52930] "land"             "fear"             "silence"         
## [52933] "felt"             "thick"            "veil"            
## [52936] "cut"              "world"            "dome"            
## [52939] "pale"             "sky"              "barred"          
## [52942] "fleeting"         "smoke"            "seemed"          
## [52945] "high"             "far"              "away"            
## [52948] "seen"             "great"            "deeps"           
## [52951] "air"              "heavy"            "brooding"        
## [52954] "thought"          "even"             "eagle"           
## [52957] "poised"           "sun"              "marked"          
## [52960] "hobbits"          "sitting"          "weight"          
## [52963] "doom"             "silent"           "µ"               
## [52966] "moving"           "shrouded"         "thin"            
## [52969] "grey"             "cloaks"           "moment"          
## [52972] "might"            "paused"           "consider"        
## [52975] "gollum"           "tiny"             "figure"          
## [52978] "sprawling"        "ground"           "perhaps"         
## [52981] "lay"              "famished"         "skeleton"        
## [52984] "child"            "men"              "ragged"          
## [52987] "garment"          "still"            "clinging"        
## [52990] "long"             "arms"             "legs"            
## [52993] "almost"           "bone"             "white"           
## [52996] "bone"             "thin"             "flesh"           
## [52999] "worth"            "peck"             "frodos"          
## [53002] "head"             "bowed"            "knees"           
## [53005] "sam"              "leaned"           "back"            
## [53008] "hands"            "behind"           "head"            
## [53011] "staring"          "hood"             "empty"           
## [53014] "sky"              "least"            "long"            
## [53017] "empty"            "presently"        "sam"             
## [53020] "thought"          "saw"              "dark"            
## [53023] "bird"             "like"             "figure"          
## [53026] "wheel"            "circle"           "sight"           
## [53029] "hover"            "wheel"            "away"            
## [53032] "two"              "followed"         "fourth"          
## [53035] "small"            "look"             "yet"             
## [53038] "knew"             "somehow"          "huge"            
## [53041] "vast"             "stretch"          "pinion"          
## [53044] "flying"           "great"            "height"          
## [53047] "covered"          "eyes"             "bent"            
## [53050] "forward"          "cowering"         "warning"         
## [53053] "fear"             "felt"             "presence"        
## [53056] "black"            "riders"           "helpless"        
## [53059] "horror"           "come"             "cry"             
## [53062] "wind"             "shadow"           "moon"            
## [53065] "though"           "now"              "crushing"        
## [53068] "compelling"       "menace"           "remote"          
## [53071] "menace"           "frodo"            "felt"            
## [53074] "thought"          "broken"           "stirred"         
## [53077] "shivered"         "look"             "gollum"          
## [53080] "huddled"          "together"         "like"            
## [53083] "cornered"         "spider"           "winged"          
## [53086] "shapes"           "wheeled"          "stooped"         
## [53089] "swiftly"          "speeding"         "back"            
## [53092] "mordor"           "sam"              "took"            
## [53095] "deep"             "breath"           "riders"          
## [53098] "air"              "said"             "hoarse"          
## [53101] "whisper"          "saw"              "think"           
## [53104] "see"              "us"               "high"            
## [53107] "black"            "riders"           "cant"            
## [53110] "see"              "much"             "daylight"        
## [53113] "can"              "perhaps"          "said"            
## [53116] "frodo"            "steeds"           "see"             
## [53119] "winged"           "creatures"        "ride"            
## [53122] "now"              "can"              "probably"        
## [53125] "see"              "creature"         "like"            
## [53128] "great"            "carrion"          "birds"           
## [53131] "looking"          "something"        "enemy"           
## [53134] "watch"            "fear"             "feeling"         
## [53137] "dread"            "passed"           "enfolding"       
## [53140] "silence"          "broken"           "time"            
## [53143] "cut"              "world"            "invisible"       
## [53146] "island"           "now"              "laid"            
## [53149] "bare"             "peril"            "returned"        
## [53152] "still"            "frodo"            "speak"           
## [53155] "gollum"           "make"             "choice"          
## [53158] "eyes"             "closed"           "dreaming"        
## [53161] "looking"          "inward"           "heart"           
## [53164] "memory"           "last"             "stirred"         
## [53167] "stood"            "seemed"           "speak"           
## [53170] "decide"           "hark"             "said"            
## [53173] "new"              "fear"             "upon"            
## [53176] "heard"            "singing"          "hoarse"          
## [53179] "shouting"         "first"            "seemed"          
## [53182] "long"             "way"              "drew"            
## [53185] "nearer"           "coming"           "towards"         
## [53188] "leaped"           "minds"            "black"           
## [53191] "wings"            "spied"            "sent"            
## [53194] "armed"            "soldiers"         "seize"           
## [53197] "speed"            "seemed"           "great"           
## [53200] "terrible"         "servants"         "sauron"          
## [53203] "crouched"         "listening"        "voices"          
## [53206] "clink"            "weapons"          "harness"         
## [53209] "close"            "frodo"            "sam"             
## [53212] "loosened"         "small"            "swords"          
## [53215] "sheaths"          "flight"           "impossible"      
## [53218] "gollum"           "rose"             "slowly"          
## [53221] "crawled"          "insect"           "like"            
## [53224] "lip"              "hollow"           "cautiously"      
## [53227] "raised"           "inch"             "inch"            
## [53230] "peer"             "two"              "broken"          
## [53233] "points"           "stone"            "remained"        
## [53236] "without"          "moving"           "time"            
## [53239] "making"           "sound"            "presently"       
## [53242] "voices"           "began"            "recede"          
## [53245] "slowly"           "faded"            "away"            
## [53248] "far"              "horn"             "blew"            
## [53251] "ramparts"         "morannon"         "quietly"         
## [53254] "gollum"           "drew"             "back"            
## [53257] "slipped"          "hollow"           "men"             
## [53260] "going"            "mordor"           "said"            
## [53263] "low"              "voice"            "dark"            
## [53266] "faces"            "seen"             "men"             
## [53269] "like"             "sméagol"          "fierce"          
## [53272] "black"            "eyes"             "long"            
## [53275] "black"            "hair"             "gold"            
## [53278] "rings"            "ears"             "yes"             
## [53281] "lots"             "beautiful"        "gold"            
## [53284] "red"              "paint"            "cheeks"          
## [53287] "red"              "cloaks"           "flags"           
## [53290] "red"              "tips"             "spears"          
## [53293] "round"            "shields"          "yellow"          
## [53296] "black"            "big"              "spikes"          
## [53299] "nice"             "cruel"            "wicked"          
## [53302] "men"              "look"             "almost"          
## [53305] "bad"              "orcs"             "much"            
## [53308] "bigger"           "sméagol"          "thinks"          
## [53311] "come"             "south"            "beyond"          
## [53314] "great"            "rivers"           "end"             
## [53317] "came"             "road"             "passed"          
## [53320] "black"            "gate"             "may"             
## [53323] "follow"           "always"           "people"          
## [53326] "coming"           "mordor"           "one"             
## [53329] "day"              "peoples"          "inside"          
## [53332] "oliphaunts"       "asked"            "sam"             
## [53335] "forgetting"       "fear"             "eagerness"       
## [53338] "news"             "strange"          "places"          
## [53341] "oliphaunts"       "oliphaunts"       "said"            
## [53344] "gollum"           "sam"              "stood"           
## [53347] "putting"          "hands"            "behind"          
## [53350] "back"             "always"           "speaking"        
## [53353] "poetry"           "began"            "grey"            
## [53356] "mouse"            "big"              "house"           
## [53359] "nose"             "like"             "snake"           
## [53362] "make"             "earth"            "shake"           
## [53365] "tramp"            "grass"            "trees"           
## [53368] "crack"            "pass"             "horns"           
## [53371] "mouth"            "walk"             "south"           
## [53374] "flapping"         "big"              "ears"            
## [53377] "beyond"           "count"            "years"           
## [53380] "stump"            "round"            "round"           
## [53383] "never"            "lie"              "ground"          
## [53386] "even"             "die"              "oliphaunt"       
## [53389] "biggest"          "huge"             "old"             
## [53392] "tall"             "ever"             "youd"            
## [53395] "met"              "wouldnt"          "forget"          
## [53398] "never"            "wont"             "think"           
## [53401] "im"               "true"             "old"             
## [53404] "oliphaunt"        "never"            "lie"             
## [53407] "said"             "sam"              "finished"        
## [53410] "reciting"         "thats"            "rhyme"           
## [53413] "shire"            "nonsense"         "maybe"           
## [53416] "maybe"            "tales"            "news"            
## [53419] "south"            "know"             "old"             
## [53422] "days"             "hobbits"          "used"            
## [53425] "go"               "travels"          "now"             
## [53428] "many"             "ever"             "came"            
## [53431] "back"             "said"             "believed"        
## [53434] "news"             "bree"             "sure"            
## [53437] "shiretalk"        "sayings"          "go"              
## [53440] "ive"              "heard"            "tales"           
## [53443] "big"              "folk"             "away"            
## [53446] "sunlands"         "swertings"        "call"            
## [53449] "em"               "tales"            "ride"            
## [53452] "oliphaunts"       "tis"              "said"            
## [53455] "fight"            "put"              "houses"          
## [53458] "towers"           "oliphauntses"     "backs"           
## [53461] "oliphaunts"       "throw"            "rocks"           
## [53464] "trees"            "one"              "another"         
## [53467] "said"             "men"              "south"           
## [53470] "red"              "gold"             "said"            
## [53473] "oliphaunts"       "going"            "take"            
## [53476] "look"             "risk"             "now"             
## [53479] "dont"             "suppose"          "ill"             
## [53482] "ever"             "see"              "oliphaunt"       
## [53485] "maybe"            "aint"             "beast"           
## [53488] "sighed"           "oliphaunts"       "said"            
## [53491] "gollum"           "sméagol"          "heard"           
## [53494] "want"             "see"              "want"            
## [53497] "sméagol"          "wants"            "go"              
## [53500] "away"             "hide"             "somewhere"       
## [53503] "safer"            "sméagol"          "wants"           
## [53506] "master"           "go"               "nice"            
## [53509] "master"           "wont"             "come"            
## [53512] "sméagol"          "frodo"            "stood"           
## [53515] "laughed"          "midst"            "cares"           
## [53518] "sam"              "trotted"          "old"             
## [53521] "fireside"         "rhyme"            "oliphaunt"       
## [53524] "laugh"            "released"         "hesitation"      
## [53527] "wish"             "thousand"         "oliphaunts"      
## [53530] "gandalf"          "white"            "one"             
## [53533] "head"             "said"             "wed"             
## [53536] "break"            "way"              "evil"            
## [53539] "land"             "perhaps"          "weve"            
## [53542] "just"             "tired"            "legs"            
## [53545] "thats"            "well"             "sméagol"         
## [53548] "third"            "turn"             "may"             
## [53551] "turn"             "best"             "come"            
## [53554] "good"             "master"           "wise"            
## [53557] "master"           "nice"             "master"          
## [53560] "cried"            "gollum"           "delight"         
## [53563] "patting"          "frodos"           "knees"           
## [53566] "good"             "master"           "rest"            
## [53569] "now"              "nice"             "hobbits"         
## [53572] "shadow"           "stones"           "close"           
## [53575] "stones"           "rest"             "lie"             
## [53578] "quiet"            "till"             "yellow"          
## [53581] "face"             "goes"             "away"            
## [53584] "can"              "go"               "quickly"         
## [53587] "soft"             "quick"            "shadows"         
## [53590] "must"             "chapter"          "herbs"           
## [53593] "stewed"           "rabbit"           "hours"           
## [53596] "daylight"         "left"             "rested"          
## [53599] "shifting"         "shade"            "sun"             
## [53602] "moved"            "last"             "shadow"          
## [53605] "western"          "rim"              "dell"            
## [53608] "grew"             "long"             "darkness"        
## [53611] "filled"           "hollow"           "ate"             
## [53614] "little"           "drank"            "sparingly"       
## [53617] "gollum"           "ate"              "nothing"         
## [53620] "accepted"         "water"            "gladly"          
## [53623] "soon"             "get"              "now"             
## [53626] "said"             "licking"          "lips"            
## [53629] "good"             "water"            "runs"            
## [53632] "streams"          "great"            "river"           
## [53635] "nice"             "water"            "lands"           
## [53638] "going"            "sméagol"          "get"             
## [53641] "food"             "perhaps"          "hes"             
## [53644] "hungry"           "yes"              "gollum"          
## [53647] "set"              "two"              "large"           
## [53650] "flat"             "hands"            "shrunken"        
## [53653] "belly"            "pale"             "green"           
## [53656] "light"            "came"             "eyes"            
## [53659] "dusk"             "deep"             "length"          
## [53662] "set"              "creeping"         "westward"        
## [53665] "rim"              "dell"             "fading"          
## [53668] "like"             "ghosts"           "broken"          
## [53671] "country"          "borders"          "road"            
## [53674] "moon"             "now"              "three"           
## [53677] "nights"           "full"             "climb"           
## [53680] "mountains"        "nearly"           "midnight"        
## [53683] "early"            "night"            "dark"            
## [53686] "single"           "red"              "light"           
## [53689] "burned"           "high"             "towers"          
## [53692] "teeth"            "otherwise"        "sign"            
## [53695] "seen"             "heard"            "sleepless"       
## [53698] "watch"            "morannon"         "many"            
## [53701] "miles"            "red"              "eye"             
## [53704] "seemed"           "stare"            "fled"            
## [53707] "stumbling"        "barren"           "stony"           
## [53710] "country"          "dare"             "take"            
## [53713] "road"             "kept"             "left"            
## [53716] "following"        "line"             "well"            
## [53719] "little"           "distance"         "last"            
## [53722] "night"            "growing"          "old"             
## [53725] "already"          "weary"            "taken"           
## [53728] "one"              "short"            "rest"            
## [53731] "eye"              "dwindled"         "small"           
## [53734] "fiery"            "point"            "vanished"        
## [53737] "turned"           "dark"             "northern"        
## [53740] "shoulder"         "lower"            "mountains"       
## [53743] "heading"          "southwards"       "hearts"          
## [53746] "strangely"        "lightened"        "now"             
## [53749] "rested"           "long"             "going"           
## [53752] "quick"            "enough"           "gollum"          
## [53755] "reckoning"        "nearly"           "thirty"          
## [53758] "leagues"          "morannon"         "cross"           
## [53761] "roads"            "osgiliath"        "hoped"           
## [53764] "cover"            "distance"         "four"            
## [53767] "journeys"         "soon"             "struggled"       
## [53770] "dawn"             "began"            "spread"          
## [53773] "slowly"           "wide"             "grey"            
## [53776] "solitude"         "walked"           "almost"          
## [53779] "eight"            "leagues"          "hobbits"         
## [53782] "gone"             "even"             "dared"           
## [53785] "growing"          "light"            "revealed"        
## [53788] "land"             "already"          "less"            
## [53791] "barren"           "ruinous"          "mountains"       
## [53794] "still"            "loomed"           "ominously"       
## [53797] "left"             "near"             "hand"            
## [53800] "see"              "southward"        "road"            
## [53803] "now"              "bearing"          "away"            
## [53806] "black"            "roots"            "hills"           
## [53809] "slanting"         "westwards"        "beyond"          
## [53812] "slopes"           "covered"          "sombre"          
## [53815] "trees"            "like"             "dark"            
## [53818] "clouds"           "lay"              "tumbled"         
## [53821] "heathland"        "grown"            "ling"            
## [53824] "broom"            "cornel"           "shrubs"          
## [53827] "know"             "saw"              "knots"           
## [53830] "tall"             "pine"             "trees"           
## [53833] "hearts"           "hobbits"          "rose"            
## [53836] "little"           "spite"            "weariness"       
## [53839] "air"              "fresh"            "fragrant"        
## [53842] "reminded"         "uplands"          "northfarthing"   
## [53845] "far"              "away"             "seemed"          
## [53848] "good"             "reprieved"        "walk"            
## [53851] "land"             "years"            "dominion"        
## [53854] "dark"             "lord"             "yet"             
## [53857] "fallen"           "wholly"           "decay"           
## [53860] "forget"           "danger"           "black"           
## [53863] "gate"             "still"            "near"            
## [53866] "hidden"           "though"           "behind"          
## [53869] "gloomy"           "heights"          "looked"          
## [53872] "hiding"           "place"            "shelter"         
## [53875] "evil"             "eyes"             "light"           
## [53878] "lasted"           "day"              "passed"          
## [53881] "uneasily"         "lay"              "deep"            
## [53884] "heather"          "counted"          "slow"            
## [53887] "hours"            "seemed"           "little"          
## [53890] "change"           "still"            "shadows"         
## [53893] "ephel"            "dúath"            "sun"             
## [53896] "veiled"           "frodo"            "slept"           
## [53899] "times"            "deeply"           "peacefully"      
## [53902] "either"           "trusting"         "gollum"          
## [53905] "tired"            "trouble"          "sam"             
## [53908] "found"            "difficult"        "doze"            
## [53911] "even"             "gollum"           "plainly"         
## [53914] "fast"             "asleep"           "whiffling"       
## [53917] "twitching"        "secret"           "dreams"          
## [53920] "hunger"           "perhaps"          "mistrust"        
## [53923] "kept"             "wakeful"          "begun"           
## [53926] "long"             "good"             "homely"          
## [53929] "meal"             "something"        "hot"             
## [53932] "pot"              "soon"             "land"            
## [53935] "faded"            "formless"         "grey"            
## [53938] "coming"           "night"            "started"         
## [53941] "little"           "gollum"           "led"             
## [53944] "southward"        "road"             "went"            
## [53947] "quickly"          "though"           "danger"          
## [53950] "greater"          "ears"             "strained"        
## [53953] "sound"            "hoof"             "foot"            
## [53956] "road"             "ahead"            "following"       
## [53959] "behind"           "night"            "passed"          
## [53962] "heard"            "sound"            "walker"          
## [53965] "rider"            "road"             "made"            
## [53968] "long"             "lost"             "time"            
## [53971] "perhaps"          "thirty"           "miles"           
## [53974] "morannon"         "newly"            "repaired"        
## [53977] "went"             "south"            "wild"            
## [53980] "encroached"       "upon"             "handiwork"       
## [53983] "men"              "old"              "still"           
## [53986] "seen"             "straight"         "sure"            
## [53989] "flight"           "level"            "course"          
## [53992] "now"              "cut"              "way"             
## [53995] "hillside"         "slopes"           "leaped"          
## [53998] "stream"           "upon"             "wide"            
## [54001] "shapely"          "arch"             "enduring"        
## [54004] "masonry"          "last"             "signs"           
## [54007] "stonework"        "faded"            "save"            
## [54010] "broken"           "pillar"           "peering"         
## [54013] "bushes"           "side"             "old"             
## [54016] "paving"           "stones"           "still"           
## [54019] "lurking"          "amid"             "weeds"           
## [54022] "moss"             "heather"          "trees"           
## [54025] "bracken"          "scrambled"        "overhung"        
## [54028] "banks"            "sprawled"         "surface"         
## [54031] "dwindled"         "last"             "country"         
## [54034] "cart"             "road"             "little"          
## [54037] "used"             "wind"             "held"            
## [54040] "sure"             "course"           "guided"          
## [54043] "swiftest"         "way"              "passed"          
## [54046] "northern"         "marches"          "land"            
## [54049] "men"              "called"           "ithilien"        
## [54052] "fair"             "country"          "climbing"        
## [54055] "woods"            "swift"            "falling"         
## [54058] "streams"          "night"            "became"          
## [54061] "fine"             "star"             "round"           
## [54064] "moon"             "seemed"           "hobbits"         
## [54067] "fragrance"        "air"              "grew"            
## [54070] "went"             "forward"          "blowing"         
## [54073] "muttering"        "gollum"           "seemed"          
## [54076] "noticed"          "relish"           "first"           
## [54079] "signs"            "day"              "halted"          
## [54082] "come"             "end"              "long"            
## [54085] "cutting"          "deep"             "sheer"           
## [54088] "sided"            "middle"           "road"            
## [54091] "clove"            "way"              "stony"           
## [54094] "ridge"            "now"              "climbed"         
## [54097] "westward"         "bank"             "looked"          
## [54100] "abroad"           "day"              "opening"         
## [54103] "sky"              "saw"              "mountains"       
## [54106] "now"              "much"             "receding"        
## [54109] "eastward"         "long"             "curve"           
## [54112] "lost"             "distance"         "turned"          
## [54115] "west"             "gentle"           "slopes"          
## [54118] "ran"              "dim"              "hazes"           
## [54121] "far"              "small"            "woods"           
## [54124] "resinous"         "trees"            "fir"             
## [54127] "cedar"            "cypress"          "kinds"           
## [54130] "unknown"          "shire"            "wide"            
## [54133] "glades"           "among"            "everywhere"      
## [54136] "wealth"           "sweet"            "smelling"        
## [54139] "herbs"            "shrubs"           "long"            
## [54142] "journey"          "rivendell"        "brought"         
## [54145] "far"              "south"            "land"            
## [54148] "now"              "sheltered"        "region"          
## [54151] "hobbits"          "felt"             "change"          
## [54154] "clime"            "spring"           "already"         
## [54157] "busy"             "fronds"           "pierced"         
## [54160] "moss"             "mould"            "larches"         
## [54163] "green"            "fingered"         "small"           
## [54166] "flowers"          "opening"          "turf"            
## [54169] "birds"            "singing"          "ithilien"        
## [54172] "garden"           "gondor"           "now"             
## [54175] "desolate"         "kept"             "still"           
## [54178] "dishevelled"      "dryad"            "loveliness"      
## [54181] "south"            "west"             "looked"          
## [54184] "towards"          "warm"             "lower"           
## [54187] "vales"            "anduin"           "shielded"        
## [54190] "east"             "ephel"            "dúath"           
## [54193] "yet"              "mountain"         "shadow"          
## [54196] "protected"        "north"            "emyn"            
## [54199] "muil"             "open"             "southern"        
## [54202] "airs"             "moist"            "winds"           
## [54205] "sea"              "far"              "away"            
## [54208] "many"             "great"            "trees"           
## [54211] "grew"             "planted"          "long"            
## [54214] "ago"              "falling"          "untended"        
## [54217] "age"              "amid"             "riot"            
## [54220] "careless"         "descendants"      "groves"          
## [54223] "thickets"         "tamarisk"         "pungent"         
## [54226] "terebinth"        "olive"            "bay"             
## [54229] "junipers"         "myrtles"          "thymes"          
## [54232] "grew"             "bushes"           "woody"           
## [54235] "creeping"         "stems"            "mantled"         
## [54238] "deep"             "tapestries"       "hidden"          
## [54241] "stones"           "sages"            "many"            
## [54244] "kinds"            "putting"          "forth"           
## [54247] "blue"             "flowers"          "red"             
## [54250] "pale"             "green"            "marjorams"       
## [54253] "new"              "sprouting"        "parsleys"        
## [54256] "many"             "herbs"            "forms"           
## [54259] "scents"           "beyond"           "garden"          
## [54262] "lore"             "sam"              "grots"           
## [54265] "rocky"            "walls"            "already"         
## [54268] "starred"          "saxifrages"       "stonecrops"      
## [54271] "primeroles"       "anemones"         "awake"           
## [54274] "filbert"          "brakes"           "asphodel"        
## [54277] "many"             "lily"             "flowers"         
## [54280] "nodded"           "half"             "opened"          
## [54283] "heads"            "grass"            "deep"            
## [54286] "green"            "grass"            "beside"          
## [54289] "pools"            "falling"          "streams"         
## [54292] "halted"           "cool"             "hollows"         
## [54295] "journey"          "anduin"           "travellers"      
## [54298] "turned"           "backs"            "road"            
## [54301] "went"             "downhill"         "walked"          
## [54304] "brushing"         "way"              "bush"            
## [54307] "herb"             "sweet"            "odours"          
## [54310] "rose"             "gollum"           "coughed"         
## [54313] "retched"          "hobbits"          "breathed"        
## [54316] "deep"             "suddenly"         "sam"             
## [54319] "laughed"          "hearts"           "ease"            
## [54322] "jest"             "followed"         "stream"          
## [54325] "went"             "quickly"          "presently"       
## [54328] "brought"          "small"            "clear"           
## [54331] "lake"             "shallow"          "dell"            
## [54334] "lay"              "broken"           "ruins"           
## [54337] "ancient"          "stone"            "basin"           
## [54340] "carven"           "rim"              "almost"          
## [54343] "wholly"           "covered"          "mosses"          
## [54346] "rose"             "brambles"         "iris"            
## [54349] "swords"           "stood"            "ranks"           
## [54352] "water"            "lily"             "leaves"          
## [54355] "floated"          "dark"             "gently"          
## [54358] "rippling"         "surface"          "deep"            
## [54361] "fresh"            "spilled"          "ever"            
## [54364] "softly"           "stony"            "lip"             
## [54367] "far"              "end"              "washed"          
## [54370] "drank"            "fill"             "falling"         
## [54373] "freshet"          "sought"           "resting"         
## [54376] "place"            "hiding"           "place"           
## [54379] "land"             "fair"             "seeming"         
## [54382] "still"            "nonetheless"      "now"             
## [54385] "territory"        "enemy"            "come"            
## [54388] "far"              "road"             "yet"             
## [54391] "even"             "short"            "space"           
## [54394] "seen"             "scars"            "old"             
## [54397] "wars"             "newer"            "wounds"          
## [54400] "made"             "orcs"             "foul"            
## [54403] "servants"         "dark"             "lord"            
## [54406] "pit"              "uncovered"        "filth"           
## [54409] "refuse"           "trees"            "hewn"            
## [54412] "wantonly"         "left"             "die"             
## [54415] "evil"             "runes"            "fell"            
## [54418] "sign"             "eye"              "cut"             
## [54421] "rude"             "strokes"          "bark"            
## [54424] "sam"              "scrambling"       "outfall"         
## [54427] "lake"             "smelling"         "touching"        
## [54430] "unfamiliar"       "plants"           "trees"           
## [54433] "forgetful"        "moment"           "mordor"          
## [54436] "reminded"         "suddenly"         "ever"            
## [54439] "present"          "peril"            "stumbled"        
## [54442] "ring"             "still"            "scorched"        
## [54445] "fire"             "midst"            "found"           
## [54448] "pile"             "charred"          "broken"          
## [54451] "bones"            "skulls"           "swift"           
## [54454] "growth"           "wild"             "briar"           
## [54457] "eglantine"        "trailing"         "clematis"        
## [54460] "already"          "drawing"          "veil"            
## [54463] "place"            "dreadful"         "feast"           
## [54466] "slaughter"        "ancient"          "hurried"         
## [54469] "back"             "companions"       "said"            
## [54472] "nothing"          "bones"            "best"            
## [54475] "left"             "peace"            "pawed"           
## [54478] "routed"           "gollum"           "lets"            
## [54481] "find"             "place"            "lie"             
## [54484] "said"             "lower"            "higher"          
## [54487] "little"           "way"              "back"            
## [54490] "lake"             "found"            "deep"            
## [54493] "brown"            "bed"              "last"            
## [54496] "years"            "fern"             "beyond"          
## [54499] "thicket"          "dark"             "leaved"          
## [54502] "bay"              "trees"            "climbing"        
## [54505] "steep"            "bank"             "crowned"         
## [54508] "old"              "cedars"           "decided"         
## [54511] "rest"             "pass"             "day"             
## [54514] "already"          "promised"         "bright"          
## [54517] "warm"             "good"             "day"             
## [54520] "strolling"        "way"              "along"           
## [54523] "groves"           "glades"           "ithilien"        
## [54526] "though"           "orcs"             "may"             
## [54529] "shun"             "sunlight"         "many"            
## [54532] "places"           "lie"              "hid"             
## [54535] "watch"            "evil"             "eyes"            
## [54538] "abroad"           "sauron"           "many"            
## [54541] "servants"         "gollum"           "case"            
## [54544] "move"             "yellow"           "face"            
## [54547] "soon"             "look"             "dark"            
## [54550] "ridges"           "ephel"            "dúath"           
## [54553] "faint"            "cower"            "light"           
## [54556] "heat"             "sam"              "giving"          
## [54559] "earnest"          "thought"          "food"            
## [54562] "marched"          "now"              "despair"         
## [54565] "impassable"       "gate"             "behind"          
## [54568] "feel"             "inclined"         "master"          
## [54571] "take"             "thought"          "livelihood"      
## [54574] "beyond"           "end"              "errand"          
## [54577] "anyway"           "seemed"           "wiser"           
## [54580] "save"             "waybread"         "elves"           
## [54583] "worse"            "times"            "ahead"           
## [54586] "six"              "days"             "passed"          
## [54589] "since"            "reckoned"         "bare"            
## [54592] "supply"           "three"            "weeks"           
## [54595] "reach"            "fire"             "time"            
## [54598] "well"             "lucky"            "rate"            
## [54601] "thought"          "might"            "wanting"         
## [54604] "get"              "back"             "might"           
## [54607] "besides"          "end"              "long"            
## [54610] "night"            "march"            "bathing"         
## [54613] "drinking"         "felt"             "even"            
## [54616] "hungry"           "usual"            "supper"          
## [54619] "breakfast"        "fire"             "old"             
## [54622] "kitchen"          "bagshot"          "row"             
## [54625] "really"           "wanted"           "idea"            
## [54628] "struck"           "turned"           "gollum"          
## [54631] "gollum"           "just"             "begun"           
## [54634] "sneak"            "crawling"         "away"            
## [54637] "fours"            "fern"             "hi"              
## [54640] "gollum"           "said"             "sam"             
## [54643] "going"            "hunting"          "well"            
## [54646] "see"              "old"              "noser"           
## [54649] "dont"             "like"             "food"            
## [54652] "id"               "sorry"            "change"          
## [54655] "new"              "mottos"           "always"          
## [54658] "ready"            "help"             "find"            
## [54661] "anything"         "fit"              "hungry"          
## [54664] "hobbit"           "yes"              "perhaps"         
## [54667] "yes"              "said"             "gollum"          
## [54670] "sméagol"          "always"           "helps"           
## [54673] "asks"             "asks"             "nicely"          
## [54676] "right"            "said"             "sam"             
## [54679] "ask"              "isnt"             "nice"            
## [54682] "enough"           "begs"             "gollum"          
## [54685] "disappeared"      "away"             "time"            
## [54688] "frodo"            "mouthfuls"        "lembas"          
## [54691] "settled"          "deep"             "brown"           
## [54694] "fern"             "went"             "sleep"           
## [54697] "sam"              "looked"           "early"           
## [54700] "daylight"         "just"             "creeping"        
## [54703] "shadows"          "trees"            "saw"             
## [54706] "masters"          "face"             "clearly"         
## [54709] "hands"            "lying"            "rest"            
## [54712] "ground"           "beside"           "reminded"        
## [54715] "suddenly"         "frodo"            "lain"            
## [54718] "asleep"           "house"            "elrond"          
## [54721] "deadly"           "wound"            "kept"            
## [54724] "watch"            "sam"              "noticed"         
## [54727] "times"            "light"            "seemed"          
## [54730] "shining"          "faintly"          "within"          
## [54733] "now"              "light"            "even"            
## [54736] "clearer"          "stronger"         "frodos"          
## [54739] "face"             "peaceful"         "marks"           
## [54742] "fear"             "care"             "left"            
## [54745] "looked"           "old"              "old"             
## [54748] "beautiful"        "chiselling"       "shaping"         
## [54751] "years"            "now"              "revealed"        
## [54754] "many"             "fine"             "lines"           
## [54757] "hidden"           "though"           "identity"        
## [54760] "face"             "changed"          "sam"             
## [54763] "gamgee"           "put"              "way"             
## [54766] "shook"            "head"             "finding"         
## [54769] "words"            "useless"          "murmured"        
## [54772] "love"             "hes"              "like"            
## [54775] "sometimes"        "shines"           "somehow"         
## [54778] "love"             "whether"          "gollum"          
## [54781] "returned"         "quietly"          "peered"          
## [54784] "sams"             "shoulder"         "looking"         
## [54787] "frodo"            "shut"             "eyes"            
## [54790] "crawled"          "away"             "without"         
## [54793] "sound"            "sam"              "came"            
## [54796] "moment"           "later"            "found"           
## [54799] "chewing"          "something"        "muttering"       
## [54802] "ground"           "beside"           "lay"             
## [54805] "two"              "small"            "rabbits"         
## [54808] "beginning"        "eye"              "greedily"        
## [54811] "sméagol"          "always"           "helps"           
## [54814] "said"             "brought"          "rabbits"         
## [54817] "nice"             "rabbits"          "master"          
## [54820] "gone"             "sleep"            "perhaps"         
## [54823] "sam"              "wants"            "sleep"           
## [54826] "doesnt"           "want"             "rabbits"         
## [54829] "now"              "sméagol"          "tries"           
## [54832] "help"             "cant"             "catch"           
## [54835] "things"           "minute"           "sam"             
## [54838] "however"          "objection"        "rabbit"          
## [54841] "said"             "least"            "cooked"          
## [54844] "rabbit"           "hobbits"          "course"          
## [54847] "can"              "cook"             "begin"           
## [54850] "learn"            "art"              "letters"         
## [54853] "many"             "never"            "reach"           
## [54856] "sam"              "good"             "cook"            
## [54859] "even"             "hobbit"           "reckoning"       
## [54862] "done"             "good"             "deal"            
## [54865] "camp"             "cooking"          "travels"         
## [54868] "chance"           "still"            "hopefully"       
## [54871] "carried"          "gear"             "pack"            
## [54874] "small"            "tinder"           "box"             
## [54877] "two"              "small"            "shallow"         
## [54880] "pans"             "smaller"          "fitting"         
## [54883] "larger"           "inside"           "wooden"          
## [54886] "spoon"            "short"            "two"             
## [54889] "pronged"          "fork"             "skewers"         
## [54892] "stowed"           "hidden"           "bottom"          
## [54895] "pack"             "flat"             "wooden"          
## [54898] "box"              "dwindling"        "treasure"        
## [54901] "salt"             "needed"           "fire"            
## [54904] "things"           "besides"          "thought"         
## [54907] "bit"              "took"             "knife"           
## [54910] "cleaned"          "whetted"          "began"           
## [54913] "dress"            "rabbits"          "going"           
## [54916] "leave"            "frodo"            "alone"           
## [54919] "asleep"           "even"             "minutes"         
## [54922] "now"              "gollum"           "said"            
## [54925] "ive"              "another"          "job"             
## [54928] "go"               "fill"             "pans"            
## [54931] "water"            "bring"            "em"              
## [54934] "back"             "sméagol"          "fetch"           
## [54937] "water"            "yes"              "said"            
## [54940] "gollum"           "hobbit"           "want"            
## [54943] "water"            "drunk"            "washed"          
## [54946] "never"            "mind"             "said"            
## [54949] "sam"              "cant"             "guess"           
## [54952] "youll"            "soon"             "find"            
## [54955] "sooner"           "fetch"            "water"           
## [54958] "sooner"           "youll"            "learn"           
## [54961] "dont"             "damage"           "one"             
## [54964] "pans"             "ill"              "carve"           
## [54967] "mincemeat"        "gollum"           "away"            
## [54970] "sam"              "took"             "another"         
## [54973] "look"             "frodo"            "still"           
## [54976] "sleeping"         "quietly"          "sam"             
## [54979] "now"              "struck"           "leanness"        
## [54982] "face"             "hands"            "thin"            
## [54985] "drawn"            "muttered"         "right"           
## [54988] "hobbit"           "can"              "get"             
## [54991] "coneys"           "cooked"           "im"              
## [54994] "going"            "wake"             "sam"             
## [54997] "gathered"         "pile"             "driest"          
## [55000] "fern"             "scrambled"        "bank"            
## [55003] "collecting"       "bundle"           "twigs"           
## [55006] "broken"           "wood"             "fallen"          
## [55009] "branch"           "cedar"            "top"             
## [55012] "gave"             "good"             "supply"          
## [55015] "cut"              "turves"           "foot"            
## [55018] "bank"             "just"             "outside"         
## [55021] "fern"             "brake"            "made"            
## [55024] "shallow"          "hole"             "laid"            
## [55027] "fuel"             "handy"            "flint"           
## [55030] "tinder"           "soon"             "small"           
## [55033] "blaze"            "going"            "made"            
## [55036] "little"           "smoke"            "gave"            
## [55039] "aromatic"         "scent"            "just"            
## [55042] "stooping"         "fire"             "shielding"       
## [55045] "building"         "heavier"          "wood"            
## [55048] "gollum"           "returned"         "carrying"        
## [55051] "pans"             "carefully"        "grumbling"       
## [55054] "set"              "pans"             "suddenly"        
## [55057] "saw"              "sam"              "gave"            
## [55060] "thin"             "hissing"          "shriek"          
## [55063] "seemed"           "frightened"       "angry"           
## [55066] "ach"              "sss"              "cried"           
## [55069] "silly"            "hobbits"          "foolish"         
## [55072] "yes"              "foolish"          "mustnt"          
## [55075] "mustnt"           "asked"            "sam"             
## [55078] "surprise"         "make"             "nassty"          
## [55081] "red"              "tongues"          "hissed"          
## [55084] "gollum"           "fire"             "fire"            
## [55087] "dangerous"        "yes"              "burns"           
## [55090] "kills"            "bring"            "enemies"         
## [55093] "yes"              "dont"             "think"           
## [55096] "said"             "sam"              "dont"            
## [55099] "see"              "dont"             "put"             
## [55102] "wet"              "stuff"            "make"            
## [55105] "smother"          "im"               "going"           
## [55108] "risk"             "anyhow"           "im"              
## [55111] "going"            "stew"             "coneys"          
## [55114] "stew"             "rabbits"          "squealed"        
## [55117] "gollum"           "dismay"           "spoil"           
## [55120] "beautiful"        "meat"             "sméagol"         
## [55123] "saved"            "poor"             "hungry"          
## [55126] "sméagol"          "silly"            "hobbit"          
## [55129] "young"            "tender"           "nice"            
## [55132] "eat"              "eat"              "clawed"          
## [55135] "nearest"          "rabbit"           "already"         
## [55138] "skinned"          "lying"            "fire"            
## [55141] "now"              "now"              "said"            
## [55144] "sam"              "fashion"          "bread"           
## [55147] "chokes"           "raw"              "coney"           
## [55150] "chokes"           "give"             "coney"           
## [55153] "coneys"           "mine"             "see"             
## [55156] "cook"             "mind"             "neednt"          
## [55159] "watch"            "go"               "catch"           
## [55162] "another"          "eat"              "fancy"           
## [55165] "somewhere"        "private"          "sight"           
## [55168] "wont"             "see"              "fire"            
## [55171] "shant"            "see"              "well"            
## [55174] "happier"          "ill"              "see"             
## [55177] "fire"             "dont"             "smoke"           
## [55180] "thats"            "comfort"          "gollum"          
## [55183] "withdrew"         "grumbling"        "crawled"         
## [55186] "fern"             "sam"              "busied"          
## [55189] "pans"             "hobbit"           "needs"           
## [55192] "coney"            "said"             "herbs"           
## [55195] "roots"            "especially"       "taters"          
## [55198] "mention"          "bread"            "herbs"           
## [55201] "can"              "manage"           "seemingly"       
## [55204] "gollum"           "called"           "softly"          
## [55207] "third"            "time"             "pays"            
## [55210] "want"             "herbs"            "gollums"         
## [55213] "head"             "peeped"           "fern"            
## [55216] "looks"            "neither"          "helpful"         
## [55219] "friendly"         "bay"              "leaves"          
## [55222] "thyme"            "sage"             "water"           
## [55225] "boils"            "said"             "sam"             
## [55228] "said"             "gollum"           "sméagol"         
## [55231] "pleased"          "sméagol"          "doesnt"          
## [55234] "like"             "smelly"           "leaves"          
## [55237] "doesnt"           "eat"              "grasses"         
## [55240] "roots"            "precious"         "till"            
## [55243] "hes"              "starving"         "sick"            
## [55246] "poor"             "sméagol"          "sméagolll"       
## [55249] "get"              "real"             "true"            
## [55252] "hot"              "water"            "water"           
## [55255] "boils"            "dont"             "hes"             
## [55258] "asked"            "growled"          "sam"             
## [55261] "samll"            "put"              "head"            
## [55264] "yes"              "precious"         "id"              
## [55267] "make"             "look"             "turnips"         
## [55270] "carrots"          "taters"           "time"            
## [55273] "year"             "ill"              "bet"             
## [55276] "theres"           "sorts"            "good"            
## [55279] "things"           "running"          "wild"            
## [55282] "country"          "id"               "give"            
## [55285] "lot"              "half"             "dozen"           
## [55288] "taters"           "sméagol"          "wont"            
## [55291] "go"               "precious"         "time"            
## [55294] "hissed"           "gollum"           "hes"             
## [55297] "frightened"       "hes"              "tired"           
## [55300] "hobbits"          "nice"             "nice"            
## [55303] "sméagol"          "wont"             "grub"            
## [55306] "roots"            "carrotses"        "taters"          
## [55309] "whats"            "taters"           "precious"        
## [55312] "eh"               "whats"            "taters"          
## [55315] "po"               "ta"               "toes"            
## [55318] "said"             "sam"              "gaffers"         
## [55321] "delight"          "rare"             "good"            
## [55324] "ballast"          "empty"            "belly"           
## [55327] "wont"             "find"             "neednt"          
## [55330] "look"             "good"             "sméagol"         
## [55333] "fetch"            "herbs"            "ill"             
## [55336] "think"            "better"           "whats"           
## [55339] "turn"             "new"              "leaf"            
## [55342] "keep"             "turned"           "ill"             
## [55345] "cook"             "taters"           "one"             
## [55348] "days"             "fried"            "fish"            
## [55351] "chips"            "served"           "gamgee"          
## [55354] "couldnt"          "say"              "yes"             
## [55357] "yes"              "spoiling"         "nice"            
## [55360] "fish"             "scorching"        "give"            
## [55363] "fish"             "now"              "keep"            
## [55366] "nassty"           "chips"            "oh"              
## [55369] "youre"            "hopeless"         "said"            
## [55372] "sam"              "go"               "sleep"           
## [55375] "end"              "find"             "wanted"          
## [55378] "go"               "far"              "sight"           
## [55381] "place"            "master"           "lay"             
## [55384] "still"            "sleeping"         "sam"             
## [55387] "sat"              "musing"           "tending"         
## [55390] "fire"             "till"             "water"           
## [55393] "boiled"           "daylight"         "grew"            
## [55396] "air"              "became"           "warm"            
## [55399] "dew"              "faded"            "turf"            
## [55402] "leaf"             "soon"             "rabbits"         
## [55405] "cut"              "lay"              "simmering"       
## [55408] "pans"             "bunched"          "herbs"           
## [55411] "almost"           "sam"              "fell"            
## [55414] "asleep"           "time"             "went"            
## [55417] "let"              "stew"             "close"           
## [55420] "hour"             "testing"          "now"             
## [55423] "fork"             "tasting"          "broth"           
## [55426] "thought"          "ready"            "lifted"          
## [55429] "pans"             "fire"             "crept"           
## [55432] "along"            "frodo"            "frodo"           
## [55435] "half"             "opened"           "eyes"            
## [55438] "sam"              "stood"            "wakened"         
## [55441] "dreaming"         "another"          "gentle"          
## [55444] "unrecoverable"    "dream"            "peace"           
## [55447] "hullo"            "sam"              "said"            
## [55450] "resting"          "anything"         "wrong"           
## [55453] "time"             "couple"           "hours"           
## [55456] "daybreak"         "said"             "sam"             
## [55459] "nigh"             "half"             "past"            
## [55462] "eight"            "shire"            "clocks"          
## [55465] "maybe"            "nothings"         "wrong"           
## [55468] "though"           "aint"             "quite"           
## [55471] "id"               "call"             "right"           
## [55474] "stock"            "onions"           "taters"          
## [55477] "ive"              "got"              "bit"             
## [55480] "stew"             "broth"            "mr"              
## [55483] "frodo"            "good"             "youll"           
## [55486] "sup"              "mug"              "straight"        
## [55489] "pan"              "cooled"           "bit"             
## [55492] "havent"           "brought"          "bowls"           
## [55495] "nothing"          "proper"           "frodo"           
## [55498] "yawned"           "stretched"        "resting"         
## [55501] "sam"              "said"             "lighting"        
## [55504] "fire"             "dangerous"        "parts"           
## [55507] "feel"             "hungry"           "hmm"             
## [55510] "can"              "smell"            "stewed"          
## [55513] "present"          "sméagol"          "said"            
## [55516] "sam"              "brace"            "young"           
## [55519] "coneys"           "though"           "fancy"           
## [55522] "gollums"          "regretting"       "now"             
## [55525] "theres"           "nought"           "go"              
## [55528] "herbs"            "sam"              "master"          
## [55531] "sat"              "just"             "within"          
## [55534] "fern"             "brake"            "ate"             
## [55537] "stew"             "pans"             "sharing"         
## [55540] "old"              "fork"             "spoon"           
## [55543] "allowed"          "half"             "piece"           
## [55546] "elvish"           "waybread"         "seemed"          
## [55549] "feast"            "wheew"            "gollum"          
## [55552] "sam"              "called"           "whistled"        
## [55555] "softly"           "come"             "still"           
## [55558] "time"             "change"           "mind"            
## [55561] "theres"           "left"             "want"            
## [55564] "try"              "stewed"           "coney"           
## [55567] "answer"           "oh"               "well"            
## [55570] "suppose"          "hes"              "gone"            
## [55573] "find"             "something"        "well"            
## [55576] "finish"           "said"             "sam"             
## [55579] "must"             "take"             "sleep"           
## [55582] "said"             "frodo"            "dont"            
## [55585] "drop"             "im"               "nodding"         
## [55588] "mr"               "frodo"            "dont"            
## [55591] "feel"             "sure"             "theres"          
## [55594] "good"             "deal"             "stinker"         
## [55597] "bad"              "gollum"           "understand"      
## [55600] "still"            "getting"          "stronger"        
## [55603] "think"            "hed"              "try"             
## [55606] "throttle"         "first"            "now"             
## [55609] "dont"             "see"              "eye"             
## [55612] "eye"              "hes"              "pleased"         
## [55615] "sam"              "precious"         "pleased"         
## [55618] "finished"         "sam"              "went"            
## [55621] "stream"           "rinse"            "gear"            
## [55624] "stood"            "return"           "looked"          
## [55627] "back"             "slope"            "moment"          
## [55630] "saw"              "sun"              "rise"            
## [55633] "reek"             "haze"             "dark"            
## [55636] "shadow"           "whatever"         "lay"             
## [55639] "ever"             "east"             "sent"            
## [55642] "golden"           "beams"            "upon"            
## [55645] "trees"            "glades"           "noticed"         
## [55648] "thin"             "spiral"           "blue"            
## [55651] "grey"             "smoke"            "plain"           
## [55654] "see"              "caught"           "sunlight"        
## [55657] "rising"           "thicket"          "shock"           
## [55660] "realized"         "smoke"            "little"          
## [55663] "cooking"          "fire"             "neglected"       
## [55666] "put"              "wont"             "never"           
## [55669] "thought"          "show"             "like"            
## [55672] "muttered"         "started"          "hurry"           
## [55675] "back"             "suddenly"         "halted"          
## [55678] "listened"         "heard"            "whistle"         
## [55681] "call"             "strange"          "bird"            
## [55684] "whistle"          "come"             "frodos"          
## [55687] "direction"        "went"             "another"         
## [55690] "place"            "sam"              "began"           
## [55693] "run"              "well"             "uphill"          
## [55696] "found"            "small"            "brand"           
## [55699] "burning"          "away"             "outer"           
## [55702] "end"              "kindled"          "fern"            
## [55705] "edge"             "fire"             "fern"            
## [55708] "blazing"          "set"              "turves"          
## [55711] "smouldering"      "hastily"          "stamped"         
## [55714] "left"             "fire"             "scattered"       
## [55717] "ashes"            "laid"             "turves"          
## [55720] "hole"             "crept"            "back"            
## [55723] "frodo"            "hear"             "whistle"         
## [55726] "sounded"          "like"             "answer"          
## [55729] "asked"            "minutes"          "back"            
## [55732] "hope"             "bird"             "didnt"           
## [55735] "sound"            "quite"            "like"            
## [55738] "like"             "somebody"         "mimicking"       
## [55741] "bird"             "call"             "thought"         
## [55744] "im"               "afraid"           "bit"             
## [55747] "fires"            "smoking"          "now"             
## [55750] "ive"              "gone"             "brought"         
## [55753] "trouble"          "ill"              "never"           
## [55756] "forgive"          "wont"             "chance"          
## [55759] "maybe"            "hush"             "whispered"       
## [55762] "frodo"            "thought"          "heard"           
## [55765] "voices"           "two"              "hobbits"         
## [55768] "trussed"          "small"            "packs"           
## [55771] "put"              "ready"            "flight"          
## [55774] "crawled"          "deeper"           "fern"            
## [55777] "crouched"         "listening"        "doubt"           
## [55780] "voices"           "speaking"         "low"             
## [55783] "furtively"        "near"             "coming"          
## [55786] "nearer"           "quite"            "suddenly"        
## [55789] "one"              "spoke"            "clearly"         
## [55792] "close"            "hand"             "smoke"           
## [55795] "came"             "said"             "twill"           
## [55798] "nigh"             "hand"             "fern"            
## [55801] "doubt"            "shall"            "like"            
## [55804] "coney"            "trap"             "shall"           
## [55807] "learn"            "kind"             "thing"           
## [55810] "aye"              "knows"            "said"            
## [55813] "second"           "voice"            "four"            
## [55816] "men"              "came"             "striding"        
## [55819] "fern"             "different"        "directions"      
## [55822] "since"            "flight"           "hiding"          
## [55825] "longer"           "possible"         "frodo"           
## [55828] "sam"              "sprang"           "feet"            
## [55831] "putting"          "back"             "back"            
## [55834] "whipping"         "small"            "swords"          
## [55837] "astonished"       "saw"              "captors"         
## [55840] "even"             "astonished"       "four"            
## [55843] "tall"             "men"              "stood"           
## [55846] "two"              "spears"           "hands"           
## [55849] "broad"            "bright"           "heads"           
## [55852] "two"              "great"            "bows"            
## [55855] "almost"           "height"           "great"           
## [55858] "quivers"          "long"             "green"           
## [55861] "feathered"        "arrows"           "swords"          
## [55864] "sides"            "clad"             "green"           
## [55867] "brown"            "varied"           "hues"            
## [55870] "better"           "walk"             "unseen"          
## [55873] "glades"           "ithilien"         "green"           
## [55876] "gauntlets"        "covered"          "hands"           
## [55879] "faces"            "hooded"           "masked"          
## [55882] "green"            "except"           "eyes"            
## [55885] "keen"             "bright"           "frodo"           
## [55888] "thought"          "boromir"          "men"             
## [55891] "like"             "stature"          "bearing"         
## [55894] "manner"           "speech"           "found"           
## [55897] "sought"           "said"             "one"             
## [55900] "found"            "orcs"             "said"            
## [55903] "another"          "releasing"        "hilt"            
## [55906] "sword"            "seized"           "saw"             
## [55909] "glitter"          "sting"            "frodos"          
## [55912] "hand"             "elves"            "said"            
## [55915] "third"            "doubtfully"       "nay"             
## [55918] "elves"            "said"             "fourth"          
## [55921] "tallest"          "appeared"         "chief"           
## [55924] "among"            "elves"            "walk"            
## [55927] "ithilien"         "days"             "elves"           
## [55930] "wondrous"         "fair"             "look"            
## [55933] "upon"             "tis"              "said"            
## [55936] "meaning"          "take"             "said"            
## [55939] "sam"              "thank"            "kindly"          
## [55942] "youve"            "finished"         "discussing"      
## [55945] "us"               "perhaps"          "youll"           
## [55948] "say"              "cant"             "let"             
## [55951] "two"              "tired"            "travellers"      
## [55954] "rest"             "tall"             "green"           
## [55957] "man"              "laughed"          "grimly"          
## [55960] "faramir"          "captain"          "gondor"          
## [55963] "said"             "travellers"       "land"            
## [55966] "servants"         "dark"             "tower"           
## [55969] "white"            "neither"          "said"            
## [55972] "frodo"            "travellers"       "whatever"        
## [55975] "captain"          "faramir"          "may"             
## [55978] "say"              "make"             "haste"           
## [55981] "declare"          "errand"           "said"            
## [55984] "faramir"          "work"             "time"            
## [55987] "place"            "riddling"         "parleying"       
## [55990] "come"             "third"            "company"         
## [55993] "third"            "yes"              "skulking"        
## [55996] "fellow"           "saw"              "nose"            
## [55999] "pool"             "yonder"           "ill"             
## [56002] "favoured"         "look"             "spying"          
## [56005] "breed"            "orc"              "guess"           
## [56008] "creature"         "gave"             "us"              
## [56011] "slip"             "fox"              "trick"           
## [56014] "know"             "said"             "frodo"           
## [56017] "chance"           "companion"        "met"             
## [56020] "upon"             "road"             "answerable"      
## [56023] "come"             "spare"            "bring"           
## [56026] "send"             "us"               "wretched"        
## [56029] "gangrel"          "creature"         "care"            
## [56032] "us"               "hobbits"          "shire"           
## [56035] "far"              "north"            "west"            
## [56038] "beyond"           "many"             "rivers"          
## [56041] "frodo"            "son"              "drogo"           
## [56044] "name"             "samwise"          "son"             
## [56047] "hamfast"          "worthy"           "hobbit"          
## [56050] "service"          "come"             "long"            
## [56053] "ways"             "rivendell"        "imladris"        
## [56056] "call"             "faramir"          "started"         
## [56059] "grew"             "intent"           "seven"           
## [56062] "companions"       "one"              "lost"            
## [56065] "moria"            "others"           "left"            
## [56068] "parth"            "galen"            "rauros"          
## [56071] "two"              "kin"              "dwarf"           
## [56074] "also"             "elf"              "two"             
## [56077] "men"              "aragorn"          "boromir"         
## [56080] "said"             "came"             "minas"           
## [56083] "tirith"           "city"             "south"           
## [56086] "boromir"          "four"             "men"             
## [56089] "exclaimed"        "boromir"          "son"             
## [56092] "lord"             "denethor"         "said"            
## [56095] "faramir"          "strange"          "stern"           
## [56098] "look"             "came"             "face"            
## [56101] "came"             "news"             "indeed"          
## [56104] "true"             "know"             "little"          
## [56107] "strangers"        "boromir"          "son"             
## [56110] "denethor"         "high"             "warden"          
## [56113] "white"            "tower"            "captain"         
## [56116] "general"          "sorely"           "miss"            
## [56119] "swift"            "sun"              "climbing"        
## [56122] "riddling"         "words"            "known"           
## [56125] "boromir"          "brought"          "rivendell"       
## [56128] "frodo"            "replied"          "seek"            
## [56131] "sword"            "broken"           "imladris"        
## [56134] "dwells"           "words"            "known"           
## [56137] "indeed"           "said"             "faramir"         
## [56140] "astonishment"     "token"            "truth"           
## [56143] "also"             "know"             "aragorn"         
## [56146] "named"            "bearer"           "sword"           
## [56149] "broken"           "said"             "frodo"           
## [56152] "halflings"        "rhyme"            "spoke"           
## [56155] "see"              "said"             "faramir"         
## [56158] "thoughtfully"     "see"              "might"           
## [56161] "isildurs"         "bane"             "hidden"          
## [56164] "answered"         "frodo"            "doubtless"       
## [56167] "made"             "clear"            "time"            
## [56170] "must"             "learn"            "said"            
## [56173] "faramir"          "know"             "brings"          
## [56176] "far"              "east"             "shadow"          
## [56179] "yonder"           "pointed"          "said"            
## [56182] "name"             "now"              "business"        
## [56185] "hand"             "peril"            "gone"            
## [56188] "far"              "field"            "road"            
## [56191] "day"              "hard"             "handstrokes"     
## [56194] "nigh"             "hand"             "ere"             
## [56197] "day"              "full"             "death"           
## [56200] "swift"            "flight"           "bark"            
## [56203] "anduin"           "leave"            "two"             
## [56206] "guard"            "good"             "mine"            
## [56209] "wise"             "man"              "trusts"          
## [56212] "chance"           "meeting"          "road"            
## [56215] "land"             "return"           "speak"           
## [56218] "farewell"         "said"             "frodo"           
## [56221] "bowing"           "low"              "think"           
## [56224] "friend"           "enemies"          "one"             
## [56227] "enemy"            "go"               "halfling"        
## [56230] "folk"             "hope"             "serve"           
## [56233] "doughty"          "men"              "strong"          
## [56236] "seem"             "errand"           "permitted"       
## [56239] "may"              "light"            "shine"           
## [56242] "swords"           "halflings"        "courteous"       
## [56245] "folk"             "whatever"         "else"            
## [56248] "said"             "faramir"          "farewell"        
## [56251] "hobbits"          "sat"              "said"            
## [56254] "nothing"          "one"              "another"         
## [56257] "thoughts"         "doubts"           "close"           
## [56260] "just"             "dappling"         "shadow"          
## [56263] "dark"             "bay"              "trees"           
## [56266] "two"              "men"              "remained"        
## [56269] "guard"            "took"             "masks"           
## [56272] "now"              "cool"             "day"             
## [56275] "heat"             "grew"             "frodo"           
## [56278] "saw"              "goodly"           "men"             
## [56281] "pale"             "skinned"          "dark"            
## [56284] "hair"             "grey"             "eyes"            
## [56287] "faces"            "sad"              "proud"           
## [56290] "spoke"            "together"         "soft"            
## [56293] "voices"           "first"            "using"           
## [56296] "common"           "speech"           "manner"          
## [56299] "older"            "days"             "changing"        
## [56302] "another"          "language"         "amazement"       
## [56305] "listened"         "frodo"            "became"          
## [56308] "aware"            "elven"            "tongue"          
## [56311] "spoke"            "one"              "little"          
## [56314] "different"        "looked"           "wonder"          
## [56317] "knew"             "must"             "dúnedain"        
## [56320] "south"            "men"              "line"            
## [56323] "lords"            "westernesse"      "spoke"           
## [56326] "slow"             "cautious"         "answering"       
## [56329] "named"            "mablung"          "damrod"          
## [56332] "soldiers"         "gondor"           "rangers"         
## [56335] "ithilien"         "descended"        "folk"            
## [56338] "lived"            "ithilien"         "one"             
## [56341] "time"             "overrun"          "men"             
## [56344] "lord"             "denethor"         "chose"           
## [56347] "forayers"         "crossed"          "anduin"          
## [56350] "secretly"         "say"              "harry"           
## [56353] "orcs"             "enemies"          "roamed"          
## [56356] "ephel"            "dúath"            "river"           
## [56359] "close"            "ten"              "leagues"         
## [56362] "hence"            "east"             "shore"           
## [56365] "anduin"           "said"             "mablung"         
## [56368] "seldom"           "come"             "far"             
## [56371] "afield"           "new"              "errand"          
## [56374] "journey"          "come"             "ambush"          
## [56377] "men"              "harad"            "curse"           
## [56380] "aye"              "curse"            "southrons"       
## [56383] "said"             "damrod"           "tis"             
## [56386] "said"             "dealings"         "old"             
## [56389] "gondor"           "kingdoms"         "harad"           
## [56392] "far"              "south"            "though"          
## [56395] "never"            "friendship"       "days"            
## [56398] "bounds"           "away"             "south"           
## [56401] "beyond"           "mouths"           "anduin"          
## [56404] "umbar"            "nearest"          "realms"          
## [56407] "acknowledged"     "sway"             "long"            
## [56410] "since"            "tis"              "many"            
## [56413] "lives"            "men"              "since"           
## [56416] "passed"           "fro"              "us"              
## [56419] "now"              "late"             "learned"         
## [56422] "enemy"            "among"            "gone"            
## [56425] "back"             "ever"             "ready"           
## [56428] "many"             "also"             "east"            
## [56431] "doubt"            "days"             "gondor"          
## [56434] "numbered"         "walls"            "minas"           
## [56437] "tirith"           "doomed"           "great"           
## [56440] "strength"         "malice"           "still"           
## [56443] "sit"              "idle"             "let"             
## [56446] "said"             "mablung"          "cursed"          
## [56449] "southrons"        "come"             "now"             
## [56452] "marching"         "ancient"          "roads"           
## [56455] "swell"            "hosts"            "dark"            
## [56458] "tower"            "yea"              "roads"           
## [56461] "craft"            "gondor"           "made"            
## [56464] "go"               "ever"             "heedlessly"      
## [56467] "learn"            "thinking"         "power"           
## [56470] "new"              "master"           "great"           
## [56473] "enough"           "mere"             "shadow"          
## [56476] "hills"            "protect"          "come"            
## [56479] "teach"            "another"          "lesson"          
## [56482] "great"            "strength"         "reported"        
## [56485] "us"               "days"             "ago"             
## [56488] "marching"         "north"            "one"             
## [56491] "regiments"        "due"              "reckoning"       
## [56494] "pass"             "time"             "ere"             
## [56497] "noon"             "road"             "passes"          
## [56500] "cloven"           "way"              "road"            
## [56503] "may"              "pass"             "shall"           
## [56506] "faramir"          "captain"          "leads"           
## [56509] "now"              "perilous"         "ventures"        
## [56512] "life"             "charmed"          "fate"            
## [56515] "spares"           "end"              "talk"            
## [56518] "died"             "listening"        "silence"         
## [56521] "seemed"           "still"            "watchful"        
## [56524] "sam"              "crouched"         "edge"            
## [56527] "fern"             "brake"            "peered"          
## [56530] "keen"             "hobbit"           "eyes"            
## [56533] "saw"              "many"             "men"             
## [56536] "see"              "stealing"         "slopes"          
## [56539] "singly"           "long"             "files"           
## [56542] "keeping"          "always"           "shade"           
## [56545] "grove"            "thicket"          "crawling"        
## [56548] "hardly"           "visible"          "brown"           
## [56551] "green"            "raiment"          "grass"           
## [56554] "brake"            "hooded"           "masked"          
## [56557] "gauntlets"        "hands"            "armed"           
## [56560] "like"             "faramir"          "companions"      
## [56563] "long"             "passed"           "vanished"        
## [56566] "sun"              "rose"             "till"            
## [56569] "neared"           "south"            "shadows"         
## [56572] "shrank"           "wonder"           "dratted"         
## [56575] "gollum"           "thought"          "sam"             
## [56578] "crawled"          "back"             "deeper"          
## [56581] "shade"            "stands"           "fair"            
## [56584] "chance"           "spitted"          "orc"             
## [56587] "roasted"          "yellow"           "face"            
## [56590] "fancy"            "hell"             "look"            
## [56593] "lay"              "beside"           "frodo"           
## [56596] "began"            "doze"             "woke"            
## [56599] "thinking"         "heard"            "horns"           
## [56602] "blowing"          "sat"              "now"             
## [56605] "high"             "noon"             "guards"          
## [56608] "stood"            "alert"            "tense"           
## [56611] "shadow"           "trees"            "suddenly"        
## [56614] "horns"            "rang"             "louder"          
## [56617] "beyond"           "mistake"          "top"             
## [56620] "slope"            "sam"              "thought"         
## [56623] "heard"            "cries"            "wild"            
## [56626] "shouting"         "also"             "sound"           
## [56629] "faint"            "came"             "distant"         
## [56632] "cave"             "presently"        "noise"           
## [56635] "fighting"         "broke"            "near"            
## [56638] "hand"             "just"             "hiding"          
## [56641] "place"            "hear"             "plainly"         
## [56644] "ringing"          "grate"            "steel"           
## [56647] "steel"            "clang"            "sword"           
## [56650] "iron"             "cap"              "dull"            
## [56653] "beat"             "blade"            "shield"          
## [56656] "men"              "yelling"          "screaming"       
## [56659] "one"              "clear"            "loud"            
## [56662] "voice"            "calling"          "gondor"          
## [56665] "gondor"           "sounds"           "like"            
## [56668] "hundred"          "blacksmiths"      "smithying"       
## [56671] "together"         "said"             "sam"             
## [56674] "frodo"            "theyre"           "near"            
## [56677] "want"             "now"              "noise"           
## [56680] "grew"             "closer"           "coming"          
## [56683] "cried"            "damrod"           "see"             
## [56686] "southrons"        "broken"           "trap"            
## [56689] "flying"           "road"             "go"              
## [56692] "men"              "captain"          "leading"         
## [56695] "sam"              "eager"            "see"             
## [56698] "went"             "now"              "joined"          
## [56701] "guards"           "scrambled"        "little"          
## [56704] "way"              "one"              "larger"          
## [56707] "bay"              "trees"            "moment"          
## [56710] "caught"           "glimpse"          "swarthy"         
## [56713] "men"              "red"              "running"         
## [56716] "slope"            "way"              "green"           
## [56719] "clad"             "warriors"         "leaping"         
## [56722] "hewing"           "fled"             "arrows"          
## [56725] "thick"            "air"              "suddenly"        
## [56728] "straight"         "rim"              "sheltering"      
## [56731] "bank"             "man"              "fell"            
## [56734] "crashing"         "slender"          "trees"           
## [56737] "nearly"           "top"              "came"            
## [56740] "rest"             "fern"             "feet"            
## [56743] "away"             "face"             "downward"        
## [56746] "green"            "arrow"            "feathers"        
## [56749] "sticking"         "neck"             "golden"          
## [56752] "collar"           "scarlet"          "robes"           
## [56755] "tattered"         "corslet"          "overlapping"     
## [56758] "brazen"           "plates"           "rent"            
## [56761] "hewn"             "black"            "plaits"          
## [56764] "hair"             "braided"          "gold"            
## [56767] "drenched"         "blood"            "brown"           
## [56770] "hand"             "still"            "clutched"        
## [56773] "hilt"             "broken"           "sword"           
## [56776] "sams"             "first"            "view"            
## [56779] "battle"           "men"              "men"             
## [56782] "like"             "much"             "glad"            
## [56785] "see"              "dead"             "face"            
## [56788] "wondered"         "mans"             "name"            
## [56791] "came"             "really"           "evil"            
## [56794] "heart"            "lies"             "threats"         
## [56797] "led"              "long"             "march"           
## [56800] "home"             "really"           "rather"          
## [56803] "stayed"           "peace"            "flash"           
## [56806] "thought"          "quickly"          "driven"          
## [56809] "mind"             "just"             "mablung"         
## [56812] "stepped"          "towards"          "fallen"          
## [56815] "body"             "new"              "noise"           
## [56818] "great"            "crying"           "shouting"        
## [56821] "amidst"           "sam"              "heard"           
## [56824] "shrill"           "bellowing"        "trumpeting"      
## [56827] "great"            "thudding"         "bumping"         
## [56830] "like"             "huge"             "rams"            
## [56833] "dinning"          "ground"           "ware"            
## [56836] "ware"             "cried"            "damrod"          
## [56839] "companion"        "may"              "valar"           
## [56842] "turn"             "aside"            "mûmak"           
## [56845] "mûmak"            "astonishment"     "terror"          
## [56848] "lasting"          "delight"          "sam"             
## [56851] "saw"              "vast"             "shape"           
## [56854] "crash"            "trees"            "come"            
## [56857] "careering"        "slope"            "big"             
## [56860] "house"            "much"             "bigger"          
## [56863] "house"            "looked"           "grey"            
## [56866] "clad"             "moving"           "hill"            
## [56869] "fear"             "wonder"           "maybe"           
## [56872] "enlarged"         "hobbits"          "eyes"            
## [56875] "mûmak"            "harad"            "indeed"          
## [56878] "beast"            "vast"             "bulk"            
## [56881] "like"             "walk"             "now"             
## [56884] "middle"           "earth"            "kin"             
## [56887] "live"             "still"            "latter"          
## [56890] "days"             "memories"         "girth"           
## [56893] "majesty"          "came"             "straight"        
## [56896] "towards"          "watchers"         "swerved"         
## [56899] "aside"            "nick"             "time"            
## [56902] "passing"          "yards"            "away"            
## [56905] "rocking"          "ground"           "beneath"         
## [56908] "feet"             "great"            "legs"            
## [56911] "like"             "trees"            "enormous"        
## [56914] "sail"             "like"             "ears"            
## [56917] "spread"           "long"             "snout"           
## [56920] "upraised"         "like"             "huge"            
## [56923] "serpent"          "strike"           "small"           
## [56926] "red"              "eyes"             "raging"          
## [56929] "upturned"         "hornlike"         "tusks"           
## [56932] "bound"            "bands"            "gold"            
## [56935] "dripped"          "blood"            "trappings"       
## [56938] "scarlet"          "gold"             "flapped"         
## [56941] "wild"             "tatters"          "ruins"           
## [56944] "seemed"           "war"              "tower"           
## [56947] "lay"              "upon"             "heaving"         
## [56950] "back"             "smashed"          "furious"         
## [56953] "passage"          "woods"            "high"            
## [56956] "upon"             "neck"             "still"           
## [56959] "desperately"      "clung"            "tiny"            
## [56962] "figure"           "body"             "mighty"          
## [56965] "warrior"          "giant"            "among"           
## [56968] "swertings"        "great"            "beast"           
## [56971] "thundered"        "blundering"       "blind"           
## [56974] "wrath"            "pool"             "thicket"         
## [56977] "arrows"           "skipped"          "snapped"         
## [56980] "harmlessly"       "triple"           "hide"            
## [56983] "flanks"           "men"              "sides"           
## [56986] "fled"             "many"             "overtook"        
## [56989] "crushed"          "ground"           "soon"            
## [56992] "lost"             "view"             "still"           
## [56995] "trumpeting"       "stamping"         "far"             
## [56998] "away"             "became"           "sam"             
## [57001] "never"            "heard"            "whether"         
## [57004] "escaped"          "roam"             "wild"            
## [57007] "time"             "perished"         "far"             
## [57010] "home"             "trapped"          "deep"            
## [57013] "pit"              "whether"          "raged"           
## [57016] "plunged"          "great"            "river"           
## [57019] "swallowed"        "sam"              "drew"            
## [57022] "deep"             "breath"           "oliphaunt"       
## [57025] "said"             "oliphaunts"       "seen"            
## [57028] "one"              "life"             "one"             
## [57031] "home"             "ever"             "believe"         
## [57034] "well"             "thats"            "ill"             
## [57037] "bit"              "sleep"            "sleep"           
## [57040] "may"              "said"             "mablung"         
## [57043] "captain"          "return"           "unhurt"          
## [57046] "comes"            "shall"            "depart"          
## [57049] "swiftly"          "shall"            "pursued"         
## [57052] "soon"             "news"             "deed"            
## [57055] "reaches"          "enemy"            "long"            
## [57058] "go"               "quietly"          "must"            
## [57061] "said"             "sam"              "need"            
## [57064] "disturb"          "sleep"            "walking"         
## [57067] "night"            "mablung"          "laughed"         
## [57070] "think"            "captain"          "leave"           
## [57073] "master"           "samwise"          "said"            
## [57076] "shall"            "see"              "chapter"         
## [57079] "window"           "west"             "seemed"          
## [57082] "sam"              "dozed"            "minutes"         
## [57085] "awoke"            "find"             "late"            
## [57088] "afternoon"        "faramir"          "come"            
## [57091] "back"             "brought"          "many"            
## [57094] "men"              "indeed"           "survivors"       
## [57097] "foray"            "now"              "gathered"        
## [57100] "slope"            "nearby"           "two"             
## [57103] "three"            "hundred"          "strong"          
## [57106] "sat"              "wide"             "semicircle"      
## [57109] "arms"             "faramir"          "seated"          
## [57112] "ground"           "frodo"            "stood"           
## [57115] "looked"           "strangely"        "like"            
## [57118] "trial"            "prisoner"         "sam"             
## [57121] "crept"            "fern"             "one"             
## [57124] "paid"             "attention"        "placed"          
## [57127] "end"              "rows"             "men"             
## [57130] "see"              "hear"             "going"           
## [57133] "watched"          "listened"         "intently"        
## [57136] "ready"            "dash"             "masters"         
## [57139] "aid"              "needed"           "see"             
## [57142] "faramirs"         "face"             "now"             
## [57145] "unmasked"         "stern"            "commanding"      
## [57148] "keen"             "wit"              "lay"             
## [57151] "behind"           "searching"        "glance"          
## [57154] "doubt"            "grey"             "eyes"            
## [57157] "gazed"            "steadily"         "frodo"           
## [57160] "sam"              "soon"             "became"          
## [57163] "aware"            "captain"          "satisfied"       
## [57166] "frodos"           "account"          "several"         
## [57169] "points"           "part"             "play"            
## [57172] "company"          "set"              "rivendell"       
## [57175] "left"             "boromir"          "now"             
## [57178] "going"            "particular"       "returned"        
## [57181] "often"            "isildurs"         "bane"            
## [57184] "plainly"          "saw"              "frodo"           
## [57187] "concealing"       "matter"           "great"           
## [57190] "importance"       "coming"           "halfling"        
## [57193] "isildurs"         "bane"             "waken"           
## [57196] "one"              "must"             "read"            
## [57199] "words"            "insisted"         "halfling"        
## [57202] "named"            "doubtless"        "brought"         
## [57205] "thing"            "whatever"         "may"             
## [57208] "council"          "speak"            "boromir"         
## [57211] "saw"              "deny"             "frodo"           
## [57214] "made"             "answer"           "said"            
## [57217] "faramir"          "wish"             "learn"           
## [57220] "concerns"         "boromir"          "concerns"        
## [57223] "orc"              "arrow"            "slew"            
## [57226] "isildur"          "far"              "old"             
## [57229] "tales"            "tell"             "orc"             
## [57232] "arrows"           "plenty"           "sight"           
## [57235] "one"              "taken"            "sign"            
## [57238] "doom"             "boromir"          "gondor"          
## [57241] "thing"            "keeping"          "hidden"          
## [57244] "say"              "choose"           "hide"            
## [57247] "choose"           "answered"         "frodo"           
## [57250] "belong"           "belong"           "mortal"          
## [57253] "great"            "small"            "though"          
## [57256] "claim"            "aragorn"          "son"             
## [57259] "arathorn"         "named"            "leader"          
## [57262] "company"          "moria"            "rauros"          
## [57265] "boromir"          "prince"           "city"            
## [57268] "sons"             "elendil"          "founded"         
## [57271] "aragorn"          "descended"        "direct"          
## [57274] "lineage"          "father"           "father"          
## [57277] "isildur"          "elendils"         "son"             
## [57280] "sword"            "bears"            "elendils"        
## [57283] "sword"            "murmur"           "astonishment"    
## [57286] "ran"              "ring"             "men"             
## [57289] "cried"            "aloud"            "sword"           
## [57292] "elendil"          "sword"            "elendil"         
## [57295] "comes"            "minas"            "tirith"          
## [57298] "great"            "tidings"          "faramirs"        
## [57301] "face"             "unmoved"          "maybe"           
## [57304] "said"             "great"            "claim"           
## [57307] "need"             "established"      "clear"           
## [57310] "proofs"           "required"         "aragorn"         
## [57313] "ever"             "come"             "minas"           
## [57316] "tirith"           "come"             "company"         
## [57319] "set"              "six"              "days"            
## [57322] "ago"              "boromir"          "satisfied"       
## [57325] "claim"            "said"             "frodo"           
## [57328] "indeed"           "boromir"          "answer"          
## [57331] "questions"        "since"            "already"         
## [57334] "rauros"           "many"             "days"            
## [57337] "back"             "intended"         "go"              
## [57340] "straight"         "city"             "return"          
## [57343] "may"              "soon"             "learn"           
## [57346] "answers"          "part"             "company"         
## [57349] "known"            "others"           "appointed"       
## [57352] "elrond"           "imladris"         "whole"           
## [57355] "council"          "errand"           "came"            
## [57358] "country"          "mine"             "reveal"          
## [57361] "outside"          "company"          "yet"             
## [57364] "claim"            "oppose"           "enemy"           
## [57367] "well"             "hinder"           "frodos"          
## [57370] "tone"             "proud"            "whatever"        
## [57373] "felt"             "sam"              "approved"        
## [57376] "appease"          "faramir"          "said"            
## [57379] "bid"              "mind"             "affairs"         
## [57382] "get"              "back"             "home"            
## [57385] "let"              "boromir"          "tell"            
## [57388] "comes"            "comes"            "say"             
## [57391] "friend"           "boromir"          "vividly"         
## [57394] "frodos"           "mind"             "came"            
## [57397] "memory"           "boromirs"         "assault"         
## [57400] "upon"             "moment"           "hesitated"       
## [57403] "faramirs"         "eyes"             "watching"        
## [57406] "grew"             "harder"           "boromir"         
## [57409] "valiant"          "member"           "company"         
## [57412] "said"             "frodo"            "length"          
## [57415] "yes"              "friend"           "part"            
## [57418] "faramir"          "smiled"           "grimly"          
## [57421] "grieve"           "learn"            "boromir"         
## [57424] "dead"             "grieve"           "indeed"          
## [57427] "said"             "frodo"            "catching"        
## [57430] "look"             "faramirs"         "eyes"            
## [57433] "faltered"         "dead"             "said"            
## [57436] "mean"             "dead"             "knew"            
## [57439] "trying"           "trap"             "words"           
## [57442] "playing"          "now"              "trying"          
## [57445] "snare"            "falsehood"        "snare"           
## [57448] "even"             "orc"              "falsehood"       
## [57451] "said"             "faramir"          "die"             
## [57454] "know"             "since"            "say"             
## [57457] "none"             "company"          "reached"         
## [57460] "city"             "left"             "manner"          
## [57463] "death"            "hoped"            "friend"          
## [57466] "companion"        "tell"             "alive"           
## [57469] "strong"           "parted"           "lives"           
## [57472] "still"            "know"             "though"          
## [57475] "surely"           "many"             "perils"          
## [57478] "world"            "many"             "indeed"          
## [57481] "said"             "faramir"          "treachery"       
## [57484] "least"            "sam"              "getting"         
## [57487] "impatient"        "angry"            "conversation"    
## [57490] "last"             "words"            "bear"            
## [57493] "bursting"         "middle"           "ring"            
## [57496] "strode"           "masters"          "side"            
## [57499] "begging"          "pardon"           "mr"              
## [57502] "frodo"            "said"             "gone"            
## [57505] "long"             "enough"           "hes"             
## [57508] "right"            "talk"             "youve"           
## [57511] "gone"             "much"             "good"            
## [57514] "great"            "men"              "anyone"          
## [57517] "else"             "see"              "captain"         
## [57520] "planted"          "squarely"         "front"           
## [57523] "faramir"          "hands"            "hips"            
## [57526] "look"             "face"             "addressing"      
## [57529] "young"            "hobbit"           "offered"         
## [57532] "called"           "sauce"            "questioned"      
## [57535] "visits"           "orchard"          "murmuring"       
## [57538] "also"             "grins"            "faces"           
## [57541] "men"              "looking"          "sight"           
## [57544] "captain"          "sitting"          "ground"          
## [57547] "eye"              "eye"              "young"           
## [57550] "hobbit"           "legs"             "well"            
## [57553] "apart"            "bristling"        "wrath"           
## [57556] "one"              "beyond"           "experience"      
## [57559] "see"              "said"             "driving"         
## [57562] "lets"             "come"             "point"           
## [57565] "orcs"             "mordor"           "come"            
## [57568] "us"               "think"            "master"          
## [57571] "murdered"         "boromir"          "ran"             
## [57574] "away"             "youve"            "got"             
## [57577] "sense"            "say"              "done"            
## [57580] "let"              "us"               "know"            
## [57583] "mean"             "pity"             "folk"            
## [57586] "talk"             "fighting"         "enemy"           
## [57589] "cant"             "let"              "others"          
## [57592] "bit"              "way"              "without"         
## [57595] "interfering"      "hed"              "mighty"          
## [57598] "pleased"          "see"              "now"             
## [57601] "think"            "hed"              "got"             
## [57604] "new"              "friend"           "patience"        
## [57607] "said"             "faramir"          "without"         
## [57610] "anger"            "speak"            "master"          
## [57613] "whose"            "wit"              "greater"         
## [57616] "need"             "teach"            "peril"           
## [57619] "even"             "spare"            "brief"           
## [57622] "time"             "order"            "judge"           
## [57625] "justly"           "hard"             "matter"          
## [57628] "hasty"            "might"            "slain"           
## [57631] "long"             "ago"              "commanded"       
## [57634] "slay"             "find"             "land"            
## [57637] "without"          "leave"            "lord"            
## [57640] "gondor"           "slay"             "man"             
## [57643] "beast"            "needlessly"       "gladly"          
## [57646] "even"             "needed"           "neither"         
## [57649] "talk"             "vain"             "comforted"       
## [57652] "sit"              "master"           "silent"          
## [57655] "sam"              "sat"              "heavily"         
## [57658] "red"              "face"             "faramir"         
## [57661] "turned"           "frodo"            "asked"           
## [57664] "know"             "son"              "denethor"        
## [57667] "dead"             "tidings"          "death"           
## [57670] "many"             "wings"            "night"           
## [57673] "oft"              "brings"           "news"            
## [57676] "near"             "kindred"          "tis"             
## [57679] "said"             "boromir"          "brother"         
## [57682] "shadow"           "sorrow"           "passed"          
## [57685] "face"             "remember"         "aught"           
## [57688] "special"          "mark"             "lord"            
## [57691] "boromir"          "bore"             "among"           
## [57694] "gear"             "frodo"            "thought"         
## [57697] "moment"           "fearing"          "trap"            
## [57700] "wondering"        "debate"           "turn"            
## [57703] "end"              "hardly"           "saved"           
## [57706] "ring"             "proud"            "grasp"           
## [57709] "boromir"          "fare"             "now"             
## [57712] "among"            "many"             "men"             
## [57715] "warlike"          "strong"           "know"            
## [57718] "yet"              "felt"             "heart"           
## [57721] "faramir"          "though"           "much"            
## [57724] "like"             "brother"          "looks"           
## [57727] "man"              "less"             "self"            
## [57730] "regarding"        "sterner"          "wiser"           
## [57733] "remember"         "boromir"          "bore"            
## [57736] "horn"             "said"             "last"            
## [57739] "remember"         "well"             "one"             
## [57742] "truth"            "seen"             "said"            
## [57745] "faramir"          "maybe"            "can"             
## [57748] "see"              "minds"            "eye"             
## [57751] "great"            "horn"             "wild"            
## [57754] "ox"               "east"             "bound"           
## [57757] "silver"           "written"          "ancient"         
## [57760] "characters"       "horn"             "eldest"          
## [57763] "son"              "house"            "borne"           
## [57766] "many"             "generations"      "said"            
## [57769] "blown"            "need"             "anywhere"        
## [57772] "within"           "bounds"           "gondor"          
## [57775] "realm"            "old"              "voice"           
## [57778] "pass"             "unheeded"         "five"            
## [57781] "days"             "ere"              "set"             
## [57784] "venture"          "eleven"           "days"            
## [57787] "ago"              "hour"             "day"             
## [57790] "heard"            "blowing"          "horn"            
## [57793] "northward"        "seemed"           "dim"             
## [57796] "echo"             "mind"             "boding"          
## [57799] "ill"              "thought"          "father"          
## [57802] "tidings"          "heard"            "boromir"         
## [57805] "since"            "went"             "away"            
## [57808] "watcher"          "borders"          "seen"            
## [57811] "pass"             "third"            "night"           
## [57814] "another"          "stranger"         "thing"           
## [57817] "befell"           "sat"              "night"           
## [57820] "waters"           "anduin"           "grey"            
## [57823] "dark"             "young"            "pale"            
## [57826] "moon"             "watching"         "ever"            
## [57829] "moving"           "stream"           "sad"             
## [57832] "reeds"            "rustling"         "ever"            
## [57835] "watch"            "shores"           "nigh"            
## [57838] "osgiliath"        "enemies"          "now"             
## [57841] "partly"           "hold"             "issue"           
## [57844] "harry"            "lands"            "night"           
## [57847] "world"            "slept"            "midnight"        
## [57850] "hour"             "saw"              "seemed"          
## [57853] "saw"              "boat"             "floating"        
## [57856] "water"            "glimmering"       "grey"            
## [57859] "small"            "boat"             "strange"         
## [57862] "fashion"          "high"             "prow"            
## [57865] "none"             "row"              "steer"           
## [57868] "awe"              "fell"             "pale"            
## [57871] "light"            "round"            "rose"            
## [57874] "went"             "bank"             "began"           
## [57877] "walk"             "stream"           "drawn"           
## [57880] "towards"          "boat"             "turned"          
## [57883] "towards"          "stayed"           "pace"            
## [57886] "floated"          "slowly"           "within"          
## [57889] "hands"            "reach"            "yet"             
## [57892] "durst"            "handle"           "waded"           
## [57895] "deep"             "heavily"          "burdened"        
## [57898] "seemed"           "passed"           "gaze"            
## [57901] "almost"           "filled"           "clear"           
## [57904] "water"            "came"             "light"           
## [57907] "lapped"           "water"            "warrior"         
## [57910] "lay"              "asleep"           "broken"          
## [57913] "sword"            "knee"             "saw"             
## [57916] "many"             "wounds"           "boromir"         
## [57919] "brother"          "dead"             "knew"            
## [57922] "gear"             "sword"            "beloved"         
## [57925] "face"             "one"              "thing"           
## [57928] "missed"           "horn"             "one"             
## [57931] "thing"            "knew"             "fair"            
## [57934] "belt"             "linked"           "golden"          
## [57937] "leaves"           "waist"            "boromir"         
## [57940] "cried"            "thy"              "horn"            
## [57943] "whither"          "goest"            "thou"            
## [57946] "boromir"          "gone"             "boat"            
## [57949] "turned"           "stream"           "passed"          
## [57952] "glimmering"       "night"            "dreamlike"       
## [57955] "yet"              "dream"            "waking"          
## [57958] "doubt"            "dead"             "passed"          
## [57961] "river"            "sea"              "alas"            
## [57964] "said"             "frodo"            "indeed"          
## [57967] "boromir"          "knew"             "golden"          
## [57970] "belt"             "given"            "lothlórien"      
## [57973] "lady"             "galadriel"        "clothed"         
## [57976] "us"               "see"              "us"              
## [57979] "elven"            "grey"             "brooch"          
## [57982] "workmanship"      "touched"          "green"           
## [57985] "silver"           "leaf"             "fastened"        
## [57988] "cloak"            "beneath"          "throat"          
## [57991] "faramir"          "looked"           "closely"         
## [57994] "beautiful"        "said"             "yes"             
## [57997] "tis"              "work"             "craft"           
## [58000] "passed"           "land"             "lórien"          
## [58003] "laurelindórenan"  "named"            "old"             
## [58006] "long"             "now"              "lain"            
## [58009] "beyond"           "knowledge"        "men"             
## [58012] "added"            "softly"           "regarding"       
## [58015] "frodo"            "new"              "wonder"          
## [58018] "eyes"             "much"             "strange"         
## [58021] "begin"            "now"              "understand"      
## [58024] "tell"             "bitter"           "thought"         
## [58027] "boromir"          "died"             "within"          
## [58030] "sight"            "land"             "home"            
## [58033] "can"              "say"              "said"            
## [58036] "answered"         "frodo"            "though"          
## [58039] "tale"             "fills"            "foreboding"      
## [58042] "vision"           "saw"              "think"           
## [58045] "shadow"           "evil"             "fortune"         
## [58048] "unless"           "indeed"           "lying"           
## [58051] "trick"            "enemy"            "seen"            
## [58054] "faces"            "fair"             "warriors"        
## [58057] "old"              "laid"             "sleep"           
## [58060] "beneath"          "pools"            "dead"            
## [58063] "marshes"          "seeming"          "foul"            
## [58066] "arts"             "nay"              "said"            
## [58069] "faramir"          "works"            "fill"            
## [58072] "heart"            "loathing"         "heart"           
## [58075] "filled"           "grief"            "pity"            
## [58078] "yet"              "thing"            "happened"        
## [58081] "truth"            "asked"            "frodo"           
## [58084] "boat"             "carried"          "stony"           
## [58087] "hills"            "tol"              "brandir"         
## [58090] "boromir"          "purposed"         "go"              
## [58093] "home"             "across"           "entwash"         
## [58096] "fields"           "rohan"            "yet"             
## [58099] "vessel"           "ride"             "foam"            
## [58102] "great"            "falls"            "founder"         
## [58105] "boiling"          "pools"            "though"          
## [58108] "laden"            "water"            "know"            
## [58111] "said"             "faramir"          "whence"          
## [58114] "came"             "boat"             "lórien"          
## [58117] "said"             "frodo"            "three"           
## [58120] "boats"            "rowed"            "anduin"          
## [58123] "falls"            "also"             "elven"           
## [58126] "work"             "passed"           "hidden"          
## [58129] "land"             "said"             "faramir"         
## [58132] "seems"            "little"           "understood"      
## [58135] "power"            "men"              "dealings"        
## [58138] "mistress"         "magic"            "dwells"          
## [58141] "golden"           "wood"             "may"             
## [58144] "look"             "strange"          "things"          
## [58147] "follow"           "perilous"         "mortal"          
## [58150] "man"              "walk"             "world"           
## [58153] "sun"              "old"              "came"            
## [58156] "thence"           "unchanged"        "tis"             
## [58159] "said"             "boromir"          "boromir"         
## [58162] "cried"            "say"              "lady"            
## [58165] "dies"             "see"              "woke"            
## [58168] "heart"            "went"             "ever"            
## [58171] "laurelindórenan"  "came"             "road"            
## [58174] "upon"             "horses"           "rohan"           
## [58177] "riding"           "home"             "morning"         
## [58180] "turning"          "frodo"            "spoke"           
## [58183] "quiet"            "voice"            "questions"       
## [58186] "guess"            "make"             "answer"          
## [58189] "frodo"            "son"              "drogo"           
## [58192] "now"              "maybe"            "lest"            
## [58195] "still"            "think"            "tale"            
## [58198] "vision"           "tell"             "horn"            
## [58201] "boromir"          "least"            "returned"        
## [58204] "truth"            "seeming"          "horn"            
## [58207] "came"             "cloven"           "two"             
## [58210] "axe"              "sword"            "shards"          
## [58213] "came"             "severally"        "shore"           
## [58216] "one"              "found"            "among"           
## [58219] "reeds"            "watchers"         "gondor"          
## [58222] "lay"              "northwards"       "infalls"         
## [58225] "entwash"          "found"            "spinning"        
## [58228] "flood"            "one"              "errand"          
## [58231] "water"            "strange"          "chances"         
## [58234] "murder"           "tis"              "said"            
## [58237] "now"              "horn"             "elder"           
## [58240] "son"              "lies"             "two"             
## [58243] "pieces"           "upon"             "lap"             
## [58246] "denethor"         "sitting"          "high"            
## [58249] "chair"            "waiting"          "news"            
## [58252] "can"              "tell"             "nothing"         
## [58255] "cleaving"         "horn"             "know"            
## [58258] "said"             "frodo"            "day"             
## [58261] "heard"            "blowing"          "reckoning"       
## [58264] "true"             "day"              "parted"          
## [58267] "servant"          "left"             "company"         
## [58270] "now"              "tale"             "fills"           
## [58273] "dread"            "boromir"          "peril"           
## [58276] "slain"            "must"             "fear"            
## [58279] "companions"       "perished"         "kindred"         
## [58282] "friends"          "put"              "aside"           
## [58285] "doubt"            "let"              "go"              
## [58288] "weary"            "full"             "grief"           
## [58291] "afraid"           "deed"             "attempt"         
## [58294] "slain"            "need"             "haste"           
## [58297] "two"              "halflings"        "remain"          
## [58300] "fellowship"       "go"               "back"            
## [58303] "faramir"          "valiant"          "captain"         
## [58306] "gondor"           "defend"           "city"            
## [58309] "may"              "let"              "go"              
## [58312] "doom"             "takes"            "comfort"         
## [58315] "speech"           "together"         "said"            
## [58318] "faramir"          "surely"           "draw"            
## [58321] "dread"            "need"             "unless"          
## [58324] "people"           "lórien"           "came"            
## [58327] "arrayed"          "boromir"          "funeral"         
## [58330] "orcs"             "servants"         "nameless"        
## [58333] "company"          "guess"            "live"            
## [58336] "still"            "whatever"         "befell"          
## [58339] "north"            "march"            "frodo"           
## [58342] "doubt"            "longer"           "hard"            
## [58345] "days"             "made"             "judge"           
## [58348] "mens"             "words"            "faces"           
## [58351] "may"              "make"             "guess"           
## [58354] "halflings"        "though"           "now"             
## [58357] "smiled"           "something"        "strange"         
## [58360] "frodo"            "elvish"           "air"             
## [58363] "maybe"            "lies"             "upon"            
## [58366] "words"            "together"         "thought"         
## [58369] "first"            "now"              "take"            
## [58372] "back"             "minas"            "tirith"          
## [58375] "answer"           "denethor"         "life"            
## [58378] "justly"           "forfeit"          "now"             
## [58381] "choose"           "course"           "proves"          
## [58384] "ill"              "city"             "decide"          
## [58387] "haste"            "done"             "yet"             
## [58390] "must"             "move"             "hence"           
## [58393] "without"          "delay"            "sprang"          
## [58396] "feet"             "issued"           "orders"          
## [58399] "men"              "gathered"         "round"           
## [58402] "broke"            "small"            "groups"          
## [58405] "went"             "way"              "vanishing"       
## [58408] "quickly"          "shadows"          "rocks"           
## [58411] "trees"            "soon"             "mablung"         
## [58414] "damrod"           "remained"         "now"             
## [58417] "frodo"            "samwise"          "come"            
## [58420] "guards"           "said"             "faramir"         
## [58423] "go"               "along"            "road"            
## [58426] "southwards"       "purpose"          "unsafe"          
## [58429] "days"             "always"           "closely"         
## [58432] "watched"          "affray"           "yet"             
## [58435] "think"            "go"               "far"             
## [58438] "today"            "case"             "weary"           
## [58441] "going"            "now"              "secret"          
## [58444] "place"            "somewhat"         "less"            
## [58447] "ten"              "miles"            "orcs"            
## [58450] "spies"            "enemy"            "found"           
## [58453] "yet"              "hold"             "long"            
## [58456] "even"             "many"             "may"             
## [58459] "lie"              "rest"             "us"              
## [58462] "morning"          "decide"           "best"            
## [58465] "nothing"          "frodo"            "fall"            
## [58468] "request"          "order"            "seemed"          
## [58471] "case"             "wise"             "course"          
## [58474] "moment"           "since"            "foray"           
## [58477] "men"              "gondor"           "made"            
## [58480] "journey"          "ithilien"         "dangerous"       
## [58483] "ever"             "set"              "mablung"         
## [58486] "damrod"           "little"           "ahead"           
## [58489] "faramir"          "frodo"            "sam"             
## [58492] "behind"           "skirting"         "hither"          
## [58495] "side"             "pool"             "hobbits"         
## [58498] "bathed"           "crossed"          "stream"          
## [58501] "climbed"          "long"             "bank"            
## [58504] "passed"           "green"            "shadowed"        
## [58507] "woodlands"        "marched"          "ever"            
## [58510] "downwards"        "westwards"        "walked"          
## [58513] "swiftly"          "hobbits"          "go"              
## [58516] "talked"           "hushed"           "voices"          
## [58519] "broke"            "speech"           "together"        
## [58522] "said"             "faramir"          "time"            
## [58525] "pressed"          "master"           "samwise"         
## [58528] "reminded"         "also"             "drawing"         
## [58531] "near"             "matters"          "better"          
## [58534] "debated"          "openly"           "many"            
## [58537] "men"              "reason"           "turned"          
## [58540] "rather"           "matter"           "brother"         
## [58543] "let"              "isildurs"         "bane"            
## [58546] "wholly"           "frank"            "frodo"           
## [58549] "told"             "lies"             "truth"           
## [58552] "said"             "frodo"            "blame"           
## [58555] "said"             "faramir"          "spoke"           
## [58558] "skill"            "hard"             "place"           
## [58561] "wisely"           "seemed"           "learned"         
## [58564] "guessed"          "words"            "said"            
## [58567] "friendly"         "boromir"          "part"            
## [58570] "friendship"       "master"           "samwise"         
## [58573] "guess"            "grievance"        "now"             
## [58576] "loved"            "dearly"           "gladly"          
## [58579] "avenge"           "death"            "yet"             
## [58582] "knew"             "well"             "isildurs"        
## [58585] "bane"             "hazard"           "isildurs"        
## [58588] "bane"             "lay"              "cause"           
## [58591] "contention"       "company"          "clearly"         
## [58594] "mighty"           "heirloom"         "sort"            
## [58597] "things"           "breed"            "peace"           
## [58600] "among"            "confederates"     "aught"           
## [58603] "may"              "learned"          "ancient"         
## [58606] "tales"            "hit"              "near"            
## [58609] "mark"             "near"             "said"            
## [58612] "frodo"            "gold"             "contention"      
## [58615] "company"          "though"           "doubt"           
## [58618] "doubt"            "way"              "take"            
## [58621] "emyn"             "muil"             "may"             
## [58624] "ancient"          "tales"            "teach"           
## [58627] "us"               "also"             "peril"           
## [58630] "rash"             "words"            "concerning"      
## [58633] "things"           "heirlooms"        "ah"              
## [58636] "thought"          "trouble"          "boromir"         
## [58639] "alone"            "wished"           "thing"           
## [58642] "brought"          "minas"            "tirith"          
## [58645] "alas"             "crooked"          "fate"            
## [58648] "seals"            "lips"             "saw"             
## [58651] "last"             "holds"            "long"            
## [58654] "know"             "heart"            "thought"         
## [58657] "latest"           "hours"            "whether"         
## [58660] "erred"            "sure"             "died"            
## [58663] "well"             "achieving"        "good"            
## [58666] "thing"            "face"             "beautiful"       
## [58669] "even"             "life"             "frodo"           
## [58672] "pressed"          "hard"             "first"           
## [58675] "isildurs"         "bane"             "forgive"         
## [58678] "unwise"           "hour"             "place"           
## [58681] "time"             "thought"          "hard"            
## [58684] "fight"            "enough"           "fill"            
## [58687] "mind"             "even"             "spoke"           
## [58690] "drew"             "nearer"           "mark"            
## [58693] "deliberately"     "shot"             "wider"           
## [58696] "must"             "know"             "much"            
## [58699] "still"            "preserved"        "ancient"         
## [58702] "lore"             "among"            "rulers"          
## [58705] "city"             "spread"           "abroad"          
## [58708] "house"            "line"             "elendil"         
## [58711] "though"           "blood"            "númenor"         
## [58714] "us"               "reckon"           "back"            
## [58717] "line"             "mardil"           "good"            
## [58720] "steward"          "ruled"            "kings"           
## [58723] "stead"            "went"             "away"            
## [58726] "war"              "king"             "eärnur"          
## [58729] "last"             "line"             "anárion"         
## [58732] "childless"        "came"             "never"           
## [58735] "back"             "stewards"         "governed"        
## [58738] "city"             "since"            "day"             
## [58741] "though"           "many"             "generations"     
## [58744] "men"              "ago"              "remember"        
## [58747] "boromir"          "boy"              "together"        
## [58750] "learned"          "tale"             "sires"           
## [58753] "history"          "city"             "always"          
## [58756] "displeased"       "father"           "king"            
## [58759] "many"             "hundreds"         "years"           
## [58762] "needs"            "make"             "steward"         
## [58765] "king"             "king"             "returns"         
## [58768] "asked"            "years"            "maybe"           
## [58771] "places"           "less"             "royalty"         
## [58774] "father"           "answered"         "gondor"          
## [58777] "ten"              "thousand"         "years"           
## [58780] "suffice"          "alas"             "poor"            
## [58783] "boromir"          "tell"             "something"       
## [58786] "said"             "frodo"            "yet"             
## [58789] "always"           "treated"          "aragorn"         
## [58792] "honour"           "doubt"            "said"            
## [58795] "faramir"          "satisfied"        "aragorns"        
## [58798] "claim"            "say"              "greatly"         
## [58801] "reverence"        "pinch"            "yet"             
## [58804] "come"             "yet"              "reached"         
## [58807] "minas"            "tirith"           "become"          
## [58810] "rivals"           "wars"             "stray"           
## [58813] "house"            "denethor"         "know"            
## [58816] "much"             "ancient"          "lore"            
## [58819] "long"             "tradition"        "moreover"        
## [58822] "treasuries"       "many"             "things"          
## [58825] "preserved"        "books"            "tablets"         
## [58828] "writ"             "withered"         "parchments"      
## [58831] "yea"              "stone"            "leaves"          
## [58834] "silver"           "gold"             "divers"          
## [58837] "characters"       "none"             "can"             
## [58840] "now"              "read"             "rest"            
## [58843] "ever"             "unlock"           "can"             
## [58846] "read"             "little"           "teaching"        
## [58849] "records"          "brought"          "grey"            
## [58852] "pilgrim"          "us"               "first"           
## [58855] "saw"              "child"            "twice"           
## [58858] "thrice"           "since"            "grey"            
## [58861] "pilgrim"          "said"             "frodo"           
## [58864] "name"             "mithrandir"       "called"          
## [58867] "elf"              "fashion"          "said"            
## [58870] "faramir"          "content"          "many"            
## [58873] "names"            "many"             "countries"       
## [58876] "said"             "mithrandir"       "among"           
## [58879] "elves"            "tharkûn"          "dwarves"         
## [58882] "olórin"           "youth"            "west"            
## [58885] "forgotten"        "south"            "incánus"         
## [58888] "north"            "gandalf"          "east"            
## [58891] "go"               "gandalf"          "said"            
## [58894] "frodo"            "thought"          "gandalf"         
## [58897] "grey"             "dearest"          "counsellors"     
## [58900] "leader"           "company"          "lost"            
## [58903] "moria"            "mithrandir"       "lost"            
## [58906] "said"             "faramir"          "evil"            
## [58909] "fate"             "seems"            "pursued"         
## [58912] "fellowship"       "hard"             "indeed"          
## [58915] "believe"          "one"              "great"           
## [58918] "wisdom"           "power"            "many"            
## [58921] "wonderful"        "things"           "among"           
## [58924] "us"               "perish"           "much"            
## [58927] "lore"             "taken"            "world"           
## [58930] "sure"             "just"             "leave"           
## [58933] "depart"           "alas"             "yes"             
## [58936] "said"             "frodo"            "saw"             
## [58939] "fall"             "abyss"            "see"             
## [58942] "great"            "tale"             "dread"           
## [58945] "said"             "faramir"          "perhaps"         
## [58948] "may"              "tell"             "evening"         
## [58951] "time"             "mithrandir"       "now"             
## [58954] "guess"            "lore"             "master"          
## [58957] "great"            "mover"            "deeds"           
## [58960] "done"             "time"             "among"           
## [58963] "us"               "consult"          "concerning"      
## [58966] "hard"             "words"            "dream"           
## [58969] "made"             "clear"            "us"              
## [58972] "without"          "need"             "messenger"       
## [58975] "yet"              "maybe"            "done"            
## [58978] "journey"          "boromir"          "doomed"          
## [58981] "mithrandir"       "never"            "spoke"           
## [58984] "us"               "reveal"           "purposes"        
## [58987] "got"              "leave"            "denethor"        
## [58990] "know"             "look"             "secrets"         
## [58993] "treasury"         "learned"          "little"          
## [58996] "teach"            "seldom"           "ever"            
## [58999] "search"           "question"         "us"              
## [59002] "else"             "concerning"       "great"           
## [59005] "battle"           "fought"           "upon"            
## [59008] "dagorlad"         "beginning"        "gondor"          
## [59011] "name"             "overthrown"       "eager"           
## [59014] "stories"          "isildur"          "though"          
## [59017] "less"             "tell"             "nothing"         
## [59020] "certain"          "ever"             "known"           
## [59023] "among"            "us"               "end"             
## [59026] "now"              "faramirs"         "voice"           
## [59029] "sank"             "whisper"          "much"            
## [59032] "learned"          "guessed"          "kept"            
## [59035] "ever"             "secret"           "heart"           
## [59038] "since"            "isildur"          "took"            
## [59041] "somewhat"         "hand"             "unnamed"         
## [59044] "ere"              "went"             "away"            
## [59047] "gondor"           "never"            "seen"            
## [59050] "among"            "mortal"           "men"             
## [59053] "thought"          "answer"           "mithrandirs"     
## [59056] "questioning"      "seemed"           "matter"          
## [59059] "concerned"        "seekers"          "ancient"         
## [59062] "learning"         "riddling"         "words"           
## [59065] "dream"            "debated"          "among"           
## [59068] "us"               "think"            "isildurs"        
## [59071] "bane"             "thing"            "isildur"         
## [59074] "ambushed"         "slain"            "orc"             
## [59077] "arrows"           "according"        "legend"          
## [59080] "knew"             "mithrandir"       "never"           
## [59083] "told"             "truth"            "thing"           
## [59086] "yet"              "guess"            "heirloom"        
## [59089] "power"            "peril"            "must"            
## [59092] "fell"             "weapon"           "perchance"       
## [59095] "devised"          "dark"             "lord"            
## [59098] "thing"            "gave"             "advantage"       
## [59101] "battle"           "can"              "well"            
## [59104] "believe"          "boromir"          "proud"           
## [59107] "fearless"         "often"            "rash"            
## [59110] "ever"             "anxious"          "victory"         
## [59113] "minas"            "tirith"           "glory"           
## [59116] "therein"          "might"            "desire"          
## [59119] "thing"            "allured"          "alas"            
## [59122] "ever"             "went"             "errand"          
## [59125] "chosen"           "father"           "elders"          
## [59128] "put"              "forward"          "older"           
## [59131] "hardier"          "true"             "stayed"          
## [59134] "fear"             "take"             "thing"           
## [59137] "lay"              "highway"          "minas"           
## [59140] "tirith"           "falling"          "ruin"            
## [59143] "alone"            "save"             "using"           
## [59146] "weapon"           "dark"             "lord"            
## [59149] "good"             "glory"            "wish"            
## [59152] "triumphs"         "frodo"            "son"             
## [59155] "drogo"            "neither"          "council"         
## [59158] "said"             "frodo"            "nothing"         
## [59161] "matters"          "said"             "faramir"         
## [59164] "see"              "white"            "tree"            
## [59167] "flower"           "courts"           "kings"           
## [59170] "silver"           "crown"            "return"          
## [59173] "minas"            "tirith"           "peace"           
## [59176] "minas"            "anor"             "old"             
## [59179] "full"             "light"            "high"            
## [59182] "fair"             "beautiful"        "queen"           
## [59185] "among"            "queens"           "mistress"        
## [59188] "many"             "slaves"           "nay"             
## [59191] "even"             "kind"             "mistress"        
## [59194] "willing"          "slaves"           "war"             
## [59197] "must"             "defend"           "lives"           
## [59200] "destroyer"        "devour"           "love"            
## [59203] "bright"           "sword"            "sharpness"       
## [59206] "arrow"            "swiftness"        "warrior"         
## [59209] "glory"            "love"             "defend"          
## [59212] "city"             "men"              "númenor"         
## [59215] "loved"            "memory"           "ancientry"       
## [59218] "beauty"           "present"          "wisdom"          
## [59221] "feared"           "save"             "men"             
## [59224] "may"              "fear"             "dignity"         
## [59227] "man"              "old"              "wise"            
## [59230] "fear"             "ask"              "tell"            
## [59233] "even"             "ask"              "tell"            
## [59236] "whether"          "now"              "speak"           
## [59239] "nearer"           "mark"             "trust"           
## [59242] "may"              "can"              "advise"          
## [59245] "present"          "quest"            "whatever"        
## [59248] "yes"              "even"             "aid"             
## [59251] "frodo"            "made"             "answer"          
## [59254] "almost"           "yielded"          "desire"          
## [59257] "help"             "counsel"          "tell"            
## [59260] "grave"            "young"            "man"             
## [59263] "whose"            "words"            "seemed"          
## [59266] "wise"             "fair"             "mind"            
## [59269] "something"        "held"             "back"            
## [59272] "heart"            "heavy"            "fear"            
## [59275] "sorrow"           "sam"              "indeed"          
## [59278] "seemed"           "likely"           "now"             
## [59281] "left"             "nine"             "walkers"         
## [59284] "sole"             "command"          "secret"          
## [59287] "errand"           "better"           "mistrust"        
## [59290] "undeserved"       "rash"             "words"           
## [59293] "memory"           "boromir"          "dreadful"        
## [59296] "change"           "lure"             "ring"            
## [59299] "worked"           "present"          "mind"            
## [59302] "looked"           "faramir"          "listened"        
## [59305] "voice"            "unlike"           "yet"             
## [59308] "also"             "much"             "akin"            
## [59311] "walked"           "silence"          "passing"         
## [59314] "like"             "grey"             "green"           
## [59317] "shadows"          "old"              "trees"           
## [59320] "feet"             "making"           "sound"           
## [59323] "many"             "birds"            "sang"            
## [59326] "sun"              "glistened"        "polished"        
## [59329] "roof"             "dark"             "leaves"          
## [59332] "evergreen"        "woods"            "ithilien"        
## [59335] "sam"              "taken"            "part"            
## [59338] "conversation"     "though"           "listened"        
## [59341] "time"             "attended"         "keen"            
## [59344] "hobbit"           "ears"             "soft"            
## [59347] "woodland"         "noises"           "one"             
## [59350] "thing"            "noted"            "talk"            
## [59353] "name"             "gollum"           "come"            
## [59356] "glad"             "though"           "felt"            
## [59359] "much"             "hope"             "never"           
## [59362] "hear"             "soon"             "became"          
## [59365] "aware"            "also"             "though"          
## [59368] "walked"           "alone"            "many"            
## [59371] "men"              "close"            "hand"            
## [59374] "damrod"           "mablung"          "flitting"        
## [59377] "shadows"          "ahead"            "others"          
## [59380] "either"           "side"             "making"          
## [59383] "swift"            "secret"           "way"             
## [59386] "appointed"        "place"            "looking"         
## [59389] "suddenly"         "back"             "prickle"         
## [59392] "skin"             "told"             "watched"         
## [59395] "behind"           "thought"          "caught"          
## [59398] "brief"            "glimpse"          "small"           
## [59401] "dark"             "shape"            "slipping"        
## [59404] "behind"           "tree"             "trunk"           
## [59407] "opened"           "mouth"            "speak"           
## [59410] "shut"             "im"               "sure"            
## [59413] "said"             "remind"           "old"             
## [59416] "villain"          "choose"           "forget"          
## [59419] "wish"             "passed"           "woodlands"       
## [59422] "grew"             "thinner"          "land"            
## [59425] "began"            "fall"             "steeply"         
## [59428] "turned"           "aside"            "right"           
## [59431] "came"             "quickly"          "small"           
## [59434] "river"            "narrow"           "gorge"           
## [59437] "stream"           "trickled"         "far"             
## [59440] "round"            "pool"             "now"             
## [59443] "grown"            "swift"            "torrent"         
## [59446] "leaping"          "many"             "stones"          
## [59449] "deep"             "cloven"           "bed"             
## [59452] "overhung"         "ilex"             "dark"            
## [59455] "box"              "woods"            "looking"         
## [59458] "west"             "see"              "haze"            
## [59461] "light"            "lowlands"         "broad"           
## [59464] "meads"            "glinting"         "far"             
## [59467] "westering"        "sun"              "wide"            
## [59470] "waters"           "anduin"           "alas"            
## [59473] "must"             "discourtesy"      "said"            
## [59476] "faramir"          "hope"             "pardon"          
## [59479] "one"              "far"              "made"            
## [59482] "orders"           "give"             "way"             
## [59485] "courtesy"         "slay"             "bind"            
## [59488] "command"          "stranger"         "even"            
## [59491] "one"              "rohan"            "fights"          
## [59494] "us"               "shall"            "see"             
## [59497] "path"             "now"              "go"              
## [59500] "open"             "eyes"             "must"            
## [59503] "blindfold"        "said"             "frodo"           
## [59506] "even"             "elves"            "likewise"        
## [59509] "need"             "blindfolded"      "crossed"         
## [59512] "borders"          "fair"             "lothlórien"      
## [59515] "gimli"            "dwarf"            "took"            
## [59518] "ill"              "hobbits"          "endured"         
## [59521] "place"            "fair"             "shall"           
## [59524] "lead"             "said"             "faramir"         
## [59527] "glad"             "take"             "willingly"       
## [59530] "force"            "called"           "softly"          
## [59533] "immediately"      "mablung"          "damrod"          
## [59536] "stepped"          "trees"            "came"            
## [59539] "back"             "blindfold"        "guests"          
## [59542] "said"             "faramir"          "securely"        
## [59545] "discomfort"       "tie"              "hands"           
## [59548] "give"             "word"             "try"             
## [59551] "see"              "trust"            "shut"            
## [59554] "eyes"             "accord"           "eyes"            
## [59557] "blink"            "feet"             "stumble"         
## [59560] "lead"             "falter"           "green"           
## [59563] "scarves"          "two"              "guards"          
## [59566] "now"              "bound"            "hobbits"         
## [59569] "eyes"             "drew"             "hoods"           
## [59572] "almost"           "mouths"           "quickly"         
## [59575] "took"             "one"              "hand"            
## [59578] "went"             "way"              "frodo"           
## [59581] "sam"              "knew"             "last"            
## [59584] "mile"             "road"             "learned"         
## [59587] "guessing"         "dark"             "little"          
## [59590] "found"            "path"             "descending"      
## [59593] "steeply"          "soon"             "grew"            
## [59596] "narrow"           "went"             "single"          
## [59599] "file"             "brushing"         "stony"           
## [59602] "wall"             "either"           "side"            
## [59605] "guards"           "steered"          "behind"          
## [59608] "hands"            "laid"             "firmly"          
## [59611] "shoulders"        "now"              "came"            
## [59614] "rough"            "places"           "lifted"          
## [59617] "feet"             "set"              "always"          
## [59620] "noise"            "running"          "water"           
## [59623] "right"            "hand"             "grew"            
## [59626] "nearer"           "louder"           "length"          
## [59629] "halted"           "quickly"          "mablung"         
## [59632] "damrod"           "turned"           "several"         
## [59635] "times"            "lost"             "sense"           
## [59638] "direction"        "climbed"          "upwards"         
## [59641] "little"           "seemed"           "cold"            
## [59644] "noise"            "stream"           "become"          
## [59647] "faint"            "picked"           "carried"         
## [59650] "many"             "steps"            "round"           
## [59653] "corner"           "suddenly"         "heard"           
## [59656] "water"            "loud"             "now"             
## [59659] "rushing"          "splashing"        "round"           
## [59662] "seemed"           "felt"             "fine"            
## [59665] "rain"             "hands"            "cheeks"          
## [59668] "last"             "set"              "feet"            
## [59671] "moment"           "stood"            "half"            
## [59674] "fearful"          "blindfold"        "knowing"         
## [59677] "one"              "spoke"            "came"            
## [59680] "voice"            "faramir"          "close"           
## [59683] "behind"           "let"              "see"             
## [59686] "said"             "scarves"          "removed"         
## [59689] "hoods"            "drawn"            "back"            
## [59692] "blinked"          "gasped"           "stood"           
## [59695] "wet"              "floor"            "polished"        
## [59698] "stone"            "doorstep"         "rough"           
## [59701] "hewn"             "gate"             "rock"            
## [59704] "opening"          "dark"             "behind"          
## [59707] "front"            "thin"             "veil"            
## [59710] "water"            "hung"             "near"            
## [59713] "frodo"            "put"              "outstretched"    
## [59716] "arm"              "faced"            "westward"        
## [59719] "level"            "shafts"           "setting"         
## [59722] "sun"              "behind"           "beat"            
## [59725] "upon"             "red"              "light"           
## [59728] "broken"           "many"             "flickering"      
## [59731] "beams"            "ever"             "changing"        
## [59734] "colour"           "stood"            "window"          
## [59737] "elven"            "tower"            "curtained"       
## [59740] "threaded"         "jewels"           "silver"          
## [59743] "gold"             "ruby"             "sapphire"        
## [59746] "amethyst"         "kindled"          "unconsuming"     
## [59749] "fire"             "least"            "good"            
## [59752] "chance"           "came"             "right"           
## [59755] "hour"             "reward"           "patience"        
## [59758] "said"             "faramir"          "window"          
## [59761] "sunset"           "henneth"          "annûn"           
## [59764] "fairest"          "falls"            "ithilien"        
## [59767] "land"             "many"             "fountains"       
## [59770] "strangers"        "ever"             "seen"            
## [59773] "kingly"           "hall"             "behind"          
## [59776] "match"            "enter"            "now"             
## [59779] "see"              "even"             "spoke"           
## [59782] "sun"              "sank"             "fire"            
## [59785] "faded"            "flowing"          "water"           
## [59788] "turned"           "passed"           "low"             
## [59791] "forbidding"       "arch"             "found"           
## [59794] "rock"             "chamber"          "wide"            
## [59797] "rough"            "uneven"           "stooping"        
## [59800] "roof"             "torches"          "kindled"         
## [59803] "cast"             "dim"              "light"           
## [59806] "glistening"       "walls"            "many"            
## [59809] "men"              "already"          "others"          
## [59812] "still"            "coming"           "twos"            
## [59815] "threes"           "dark"             "narrow"          
## [59818] "door"             "one"              "side"            
## [59821] "eyes"             "grew"             "accustomed"      
## [59824] "gloom"            "hobbits"          "saw"             
## [59827] "cave"             "larger"           "guessed"         
## [59830] "filled"           "great"            "store"           
## [59833] "arms"             "victuals"         "well"            
## [59836] "refuge"           "said"             "faramir"         
## [59839] "place"            "great"            "ease"            
## [59842] "may"              "pass"             "night"           
## [59845] "peace"            "dry"              "least"           
## [59848] "food"             "though"           "fire"            
## [59851] "one"              "time"             "water"           
## [59854] "flowed"           "cave"             "arch"            
## [59857] "course"           "changed"          "gorge"           
## [59860] "workmen"          "old"              "stream"          
## [59863] "sent"             "fall"             "doubled"         
## [59866] "height"           "rocks"            "far"             
## [59869] "ways"             "grot"             "sealed"          
## [59872] "entry"            "water"            "aught"           
## [59875] "else"             "save"             "one"             
## [59878] "now"              "two"              "ways"            
## [59881] "passage"          "yonder"           "entered"         
## [59884] "blindfold"        "window"           "curtain"         
## [59887] "deep"             "bowl"             "filled"          
## [59890] "knives"           "stone"            "now"             
## [59893] "rest"             "evening"          "meal"            
## [59896] "set"              "hobbits"          "taken"           
## [59899] "corner"           "given"            "low"             
## [59902] "bed"              "lie"              "wished"          
## [59905] "meanwhile"        "men"              "busied"          
## [59908] "cave"             "quietly"          "orderly"         
## [59911] "quickness"        "light"            "tables"          
## [59914] "taken"            "walls"            "set"             
## [59917] "trestles"         "laden"            "gear"            
## [59920] "plain"            "unadorned"        "part"            
## [59923] "well"             "fairly"           "made"            
## [59926] "round"            "platters"         "bowls"           
## [59929] "dishes"           "glazed"           "brown"           
## [59932] "clay"             "turned"           "box"             
## [59935] "wood"             "smooth"           "clean"           
## [59938] "cup"              "basin"            "polished"        
## [59941] "bronze"           "goblet"           "plain"           
## [59944] "silver"           "set"              "captains"        
## [59947] "seat"             "middle"           "inmost"          
## [59950] "table"            "faramir"          "went"            
## [59953] "among"            "men"              "questioning"     
## [59956] "came"             "soft"             "voice"           
## [59959] "came"             "back"             "pursuit"         
## [59962] "southrons"        "others"           "left"            
## [59965] "behind"           "scouts"           "near"            
## [59968] "road"             "came"             "latest"          
## [59971] "southrons"        "accounted"        "save"            
## [59974] "great"            "mûmak"            "happened"        
## [59977] "none"             "say"              "enemy"           
## [59980] "movement"         "seen"             "even"            
## [59983] "orc"              "spy"              "abroad"          
## [59986] "saw"              "heard"            "nothing"         
## [59989] "anborn"           "faramir"          "asked"           
## [59992] "latest"           "comer"            "well"            
## [59995] "lord"             "said"             "man"             
## [59998] "orc"              "least"            "saw"             
## [60001] "thought"          "saw"              "something"       
## [60004] "little"           "strange"          "getting"         
## [60007] "deep"             "dusk"             "eyes"            
## [60010] "make"             "things"           "greater"         
## [60013] "perhaps"          "may"              "squirrel"        
## [60016] "sam"              "pricked"          "ears"            
## [60019] "yet"              "black"            "squirrel"        
## [60022] "saw"              "tail"             "twas"            
## [60025] "like"             "shadow"           "ground"          
## [60028] "whisked"          "behind"           "tree"            
## [60031] "trunk"            "drew"             "nigh"            
## [60034] "went"             "aloft"            "swift"           
## [60037] "squirrel"         "us"               "slay"            
## [60040] "wild"             "beasts"           "purpose"         
## [60043] "seemed"           "tried"            "arrow"           
## [60046] "dark"             "sure"             "shooting"        
## [60049] "anyway"           "creature"         "gone"            
## [60052] "gloom"            "leaves"           "twinkling"       
## [60055] "stayed"           "seemed"           "strange"         
## [60058] "hastened"         "back"             "thought"         
## [60061] "heard"            "thing"            "hiss"            
## [60064] "high"             "turned"           "away"            
## [60067] "large"            "squirrel"         "maybe"           
## [60070] "perhaps"          "shadow"           "unnamed"         
## [60073] "beasts"           "mirkwood"         "wandering"       
## [60076] "hither"           "woods"            "black"           
## [60079] "squirrels"        "tis"              "said"            
## [60082] "perhaps"          "said"             "faramir"         
## [60085] "ill"              "omen"             "want"            
## [60088] "escapes"          "mirkwood"         "ithilien"        
## [60091] "sam"              "fancied"          "gave"            
## [60094] "swift"            "glance"           "towards"         
## [60097] "hobbits"          "spoke"            "sam"             
## [60100] "said"             "nothing"          "frodo"           
## [60103] "lay"              "back"             "watched"         
## [60106] "torchlight"       "men"              "moving"          
## [60109] "fro"              "speaking"         "hushed"          
## [60112] "voices"           "suddenly"         "frodo"           
## [60115] "fell"             "asleep"           "sam"             
## [60118] "struggled"        "arguing"          "way"             
## [60121] "may"              "right"            "thought"         
## [60124] "may"              "fair"             "speech"          
## [60127] "may"              "hide"             "foul"            
## [60130] "heart"            "yawned"           "sleep"           
## [60133] "week"             "id"               "better"          
## [60136] "can"              "keep"             "awake"           
## [60139] "alone"            "great"            "men"             
## [60142] "nothing"          "sam"              "gamgee"          
## [60145] "youve"            "got"              "keep"            
## [60148] "awake"            "somehow"          "managed"         
## [60151] "light"            "faded"            "cave"            
## [60154] "door"             "grey"             "veil"            
## [60157] "falling"          "water"            "grew"            
## [60160] "dim"              "lost"             "gathering"       
## [60163] "shadow"           "always"           "sound"           
## [60166] "water"            "went"             "never"           
## [60169] "changing"         "note"             "morning"         
## [60172] "evening"          "night"            "murmured"        
## [60175] "whispered"        "sleep"            "sam"             
## [60178] "stuck"            "knuckles"         "eyes"            
## [60181] "now"              "torches"          "lit"             
## [60184] "cask"             "wine"             "broached"        
## [60187] "storage"          "barrels"          "opened"          
## [60190] "men"              "fetching"         "water"           
## [60193] "fall"             "laving"           "hands"           
## [60196] "basins"           "wide"             "copper"          
## [60199] "bowl"             "white"            "cloth"           
## [60202] "brought"          "faramir"          "washed"          
## [60205] "wake"             "guests"           "said"            
## [60208] "take"             "water"            "time"            
## [60211] "eat"              "frodo"            "sat"             
## [60214] "yawned"           "stretched"        "sam"             
## [60217] "used"             "waited"           "looked"          
## [60220] "surprise"         "tall"             "man"             
## [60223] "bowed"            "holding"          "basin"           
## [60226] "water"            "put"              "ground"          
## [60229] "master"           "please"           "said"            
## [60232] "easier"           "astonishment"     "amusement"       
## [60235] "men"              "plunged"          "head"            
## [60238] "cold"             "water"            "splashed"        
## [60241] "neck"             "ears"             "custom"          
## [60244] "land"             "wash"             "head"            
## [60247] "supper"           "said"             "man"             
## [60250] "waited"           "hobbits"          "breakfast"       
## [60253] "said"             "sam"              "youre"           
## [60256] "short"            "sleep"            "cold"            
## [60259] "water"            "necks"            "like"            
## [60262] "rain"             "wilted"           "lettuce"         
## [60265] "now"              "can"              "keep"            
## [60268] "awake"            "long"             "enough"          
## [60271] "eat"              "bit"              "led"             
## [60274] "seats"            "beside"           "faramir"         
## [60277] "barrels"          "covered"          "pelts"           
## [60280] "high"             "enough"           "benches"         
## [60283] "men"              "convenience"      "ate"             
## [60286] "faramir"          "men"              "turned"          
## [60289] "faced"            "west"             "moment"          
## [60292] "silence"          "faramir"          "signed"          
## [60295] "frodo"            "sam"              "likewise"        
## [60298] "always"           "said"             "sat"             
## [60301] "look"             "towards"          "númenor"         
## [60304] "beyond"           "elvenhome"        "beyond"          
## [60307] "elvenhome"        "ever"             "custom"          
## [60310] "meat"             "said"             "frodo"           
## [60313] "feeling"          "strangely"        "rustic"          
## [60316] "untutored"        "guests"           "bow"             
## [60319] "host"             "eaten"            "rise"            
## [60322] "thank"            "also"             "said"            
## [60325] "faramir"          "long"             "journeying"      
## [60328] "camping"          "days"             "spent"           
## [60331] ""                 ""                 "lonely"          
## [60334] "wild"             "evening"          "meal"            
## [60337] "seemed"           "feast"            "hobbits"         
## [60340] "drink"            "pale"             "yellow"          
## [60343] "wine"             "cool"             "fragrant"        
## [60346] "eat"              "bread"            "butter"          
## [60349] "salted"           "meats"            "dried"           
## [60352] "fruits"           "good"             "red"             
## [60355] "cheese"           "clean"            "hands"           
## [60358] "clean"            "knives"           "plates"          
## [60361] "neither"          "frodo"            "sam"             
## [60364] "refused"          "anything"         "offered"         
## [60367] "second"           "indeed"           "third"           
## [60370] "helping"          "wine"             "coursed"         
## [60373] "veins"            "tired"            "limbs"           
## [60376] "felt"             "glad"             "easy"            
## [60379] "heart"            "done"             "since"           
## [60382] "left"             "land"             "lórien"          
## [60385] "done"             "faramir"          "led"             
## [60388] "recess"           "back"             "cave"            
## [60391] "partly"           "screened"         "curtains"        
## [60394] "chair"            "two"              "stools"          
## [60397] "brought"          "little"           "earthenware"     
## [60400] "lamp"             "burned"           "niche"           
## [60403] "may"              "soon"             "desire"          
## [60406] "sleep"            "said"             "especially"      
## [60409] "good"             "samwise"          "close"           
## [60412] "eyes"             "ate"              "whether"         
## [60415] "fear"             "blunting"         "edge"            
## [60418] "noble"            "hunger"           "fear"            
## [60421] "know"             "good"             "sleep"           
## [60424] "soon"             "meat"             "following"       
## [60427] "fast"             "let"              "us"              
## [60430] "talk"             "journey"          "rivendell"       
## [60433] "must"             "many"             "things"          
## [60436] "tell"             "perhaps"          "wish"            
## [60439] "learn"            "something"        "us"              
## [60442] "lands"            "now"              "tell"            
## [60445] "boromir"          "brother"          "old"             
## [60448] "mithrandir"       "fair"             "people"          
## [60451] "lothlórien"       "frodo"            "longer"          
## [60454] "felt"             "sleepy"           "willing"         
## [60457] "talk"             "though"           "food"            
## [60460] "wine"             "put"              "ease"            
## [60463] "lost"             "caution"          "sam"             
## [60466] "beaming"          "humming"          "frodo"           
## [60469] "spoke"            "first"            "content"         
## [60472] "listen"           "occasionally"     "venturing"       
## [60475] "make"             "exclamation"      "agreement"       
## [60478] "frodo"            "told"             "many"            
## [60481] "tales"            "yet"              "always"          
## [60484] "steered"          "matter"           "away"            
## [60487] "quest"            "company"          "ring"            
## [60490] "enlarging"        "rather"           "valiant"         
## [60493] "part"             "boromir"          "played"          
## [60496] "adventures"       "wolves"           "wild"            
## [60499] "snows"            "caradhras"        "mines"           
## [60502] "moria"            "gandalf"          "fell"            
## [60505] "faramir"          "moved"            "story"           
## [60508] "fight"            "bridge"           "must"            
## [60511] "irked"            "boromir"          "run"             
## [60514] "orcs"             "said"             "even"            
## [60517] "fell"             "thing"            "name"            
## [60520] "balrog"           "even"             "though"          
## [60523] "last"             "leave"            "last"            
## [60526] "said"             "frodo"            "aragorn"         
## [60529] "forced"           "lead"             "us"              
## [60532] "alone"            "knew"             "way"             
## [60535] "gandalfs"         "fall"             "us"              
## [60538] "lesser"           "folk"             "care"            
## [60541] "think"            "either"           "boromir"         
## [60544] "fled"             "maybe"            "better"          
## [60547] "boromir"          "fallen"           "mithrandir"      
## [60550] "said"             "faramir"          "gone"            
## [60553] "fate"             "waited"           "falls"           
## [60556] "rauros"           "maybe"            "tell"            
## [60559] "now"              "fortunes"         "said"            
## [60562] "frodo"            "turning"          "matter"          
## [60565] "aside"            "learn"            "minas"           
## [60568] "ithil"            "osgiliath"        "minas"           
## [60571] "tirith"           "long"             "enduring"        
## [60574] "hope"             "city"             "long"            
## [60577] "war"              "hope"             "said"            
## [60580] "faramir"          "long"             "since"           
## [60583] "hope"             "sword"            "elendil"         
## [60586] "returns"          "indeed"           "may"             
## [60589] "rekindle"         "think"            "put"             
## [60592] "evil"             "day"              "unless"          
## [60595] "help"             "unlooked"         "also"            
## [60598] "comes"            "elves"            "men"             
## [60601] "enemy"            "increases"        "decrease"        
## [60604] "failing"          "people"           "springless"      
## [60607] "autumn"           "men"              "númenor"         
## [60610] "settled"          "far"              "wide"            
## [60613] "shores"           "seaward"          "regions"         
## [60616] "great"            "lands"            "part"            
## [60619] "fell"             "evils"            "follies"         
## [60622] "many"             "became"           "enamoured"       
## [60625] "darkness"         "black"            "arts"            
## [60628] "given"            "wholly"           "idleness"        
## [60631] "ease"             "fought"           "among"           
## [60634] "conquered"        "weakness"         "wild"            
## [60637] "men"              "said"             "evil"            
## [60640] "arts"             "ever"             "practised"       
## [60643] "gondor"           "nameless"         "one"             
## [60646] "ever"             "named"            "honour"          
## [60649] "old"              "wisdom"           "beauty"          
## [60652] "brought"          "west"             "remained"        
## [60655] "long"             "realm"            "sons"            
## [60658] "elendil"          "fair"             "linger"          
## [60661] "still"            "yet"              "even"            
## [60664] "gondor"           "brought"          "decay"           
## [60667] "falling"          "degrees"          "dotage"          
## [60670] "thinking"         "enemy"            "asleep"          
## [60673] "banished"         "destroyed"        "death"           
## [60676] "ever"             "present"          "númenoreans"     
## [60679] "still"            "old"              "kingdom"         
## [60682] "lost"             "hungered"         "endless"         
## [60685] "life"             "unchanging"       "kings"           
## [60688] "made"             "tombs"            "splendid"        
## [60691] "houses"           "living"           "counted"         
## [60694] "old"              "names"            "rolls"           
## [60697] "descent"          "dearer"           "names"           
## [60700] "sons"             "childless"        "lords"           
## [60703] "sat"              "aged"             "halls"           
## [60706] "musing"           "heraldry"         "secret"          
## [60709] "chambers"         "withered"         "men"             
## [60712] "compounded"       "strong"           "elixirs"         
## [60715] "high"             "cold"             "towers"          
## [60718] "asked"            "questions"        "stars"           
## [60721] "last"             "king"             "line"            
## [60724] "anárion"          "heir"             "stewards"        
## [60727] "wiser"            "fortunate"        "wiser"           
## [60730] "recruited"        "strength"         "people"          
## [60733] "sturdy"           "folk"             "sea"             
## [60736] "coast"            "hardy"            "mountaineers"    
## [60739] "ered"             "nimrais"          "made"            
## [60742] "truce"            "proud"            "peoples"         
## [60745] "north"            "often"            "assailed"        
## [60748] "us"               "men"              "fierce"          
## [60751] "valour"           "kin"              "afar"            
## [60754] "unlike"           "wild"             "easterlings"     
## [60757] "cruel"            "haradrim"         "came"            
## [60760] "pass"             "days"             "cirion"          
## [60763] "twelfth"          "steward"          "father"          
## [60766] "sit"              "twentieth"        "rode"            
## [60769] "aid"              "great"            "field"           
## [60772] "celebrant"        "destroyed"        "enemies"         
## [60775] "seized"           "northern"         "provinces"       
## [60778] "rohirrim"         "name"             "masters"         
## [60781] "horses"           "ceded"            "fields"          
## [60784] "calenardhon"      "since"            "called"          
## [60787] "rohan"            "province"         "long"            
## [60790] "sparsely"         "peopled"          "became"          
## [60793] "allies"           "ever"             "proved"          
## [60796] "true"             "us"               "aiding"          
## [60799] "us"               "need"             "guarding"        
## [60802] "northern"         "marches"          "gap"             
## [60805] "rohan"            "lore"             "manners"         
## [60808] "learned"          "lords"            "speak"           
## [60811] "speech"           "need"             "yet"             
## [60814] "part"             "hold"             "ways"            
## [60817] "fathers"          "memories"         "speak"           
## [60820] "among"            "north"            "tongue"          
## [60823] "love"             "tall"             "men"             
## [60826] "fair"             "women"            "valiant"         
## [60829] "alike"            "golden"           "haired"          
## [60832] "bright"           "eyed"             "strong"          
## [60835] "remind"           "us"               "youth"           
## [60838] "men"              "elder"            "days"            
## [60841] "indeed"           "said"             "lore"            
## [60844] "masters"          "old"              "affinity"        
## [60847] "us"               "come"             "three"           
## [60850] "houses"           "men"              "númenoreans"     
## [60853] "beginning"        "hador"            "goldenhaired"    
## [60856] "elf"              "friend"           "maybe"           
## [60859] "yet"              "sons"             "people"          
## [60862] "went"             "sea"              "west"            
## [60865] "refusing"         "call"             "reckon"          
## [60868] "men"              "lore"             "calling"         
## [60871] "high"             "men"              "west"            
## [60874] "númenoreans"      "middle"           "peoples"         
## [60877] "men"              "twilight"         "rohirrim"        
## [60880] "kin"              "dwell"            "still"           
## [60883] "far"              "north"            "wild"            
## [60886] "men"              "darkness"         "yet"             
## [60889] "now"              "rohirrim"         "grown"           
## [60892] "ways"             "like"             "us"              
## [60895] "enhanced"         "arts"             "gentleness"      
## [60898] "become"           "like"             "can"             
## [60901] "scarce"           "claim"            "longer"          
## [60904] "title"            "high"             "become"          
## [60907] "middle"           "men"              "twilight"        
## [60910] "memory"           "things"           "rohirrim"        
## [60913] "now"              "love"             "war"             
## [60916] "valour"           "things"           "good"            
## [60919] "sport"            "end"              "though"          
## [60922] "still"            "hold"             "warrior"         
## [60925] "skills"           "knowledge"        "craft"           
## [60928] "weapons"          "slaying"          "esteem"          
## [60931] "warrior"          "nonetheless"      "men"             
## [60934] "crafts"           "need"             "days"            
## [60937] "even"             "brother"          "boromir"         
## [60940] "man"              "prowess"          "accounted"       
## [60943] "best"             "man"              "gondor"          
## [60946] "valiant"          "indeed"           "heir"            
## [60949] "minas"            "tirith"           "long"            
## [60952] "years"            "hardy"            "toil"            
## [60955] "onward"           "battle"           "blown"           
## [60958] "mightier"         "note"             "great"           
## [60961] "horn"             "faramir"          "sighed"          
## [60964] "fell"             "silent"           "dont"            
## [60967] "say"              "much"             "tales"           
## [60970] "elves"            "sir"              "said"            
## [60973] "sam"              "suddenly"         "plucking"        
## [60976] "courage"          "noted"            "faramir"         
## [60979] "seemed"           "refer"            "elves"           
## [60982] "reverence"        "even"             "courtesy"        
## [60985] "food"             "wine"             "won"             
## [60988] "sams"             "respect"          "quieted"         
## [60991] "suspicions"       "indeed"           "master"          
## [60994] "samwise"          "said"             "faramir"         
## [60997] "learned"          "elven"            "lore"            
## [61000] "touch"            "upon"             "another"         
## [61003] "point"            "changed"          "declining"       
## [61006] "númenor"          "middle"           "earth"           
## [61009] "may"              "know"             "mithrandir"      
## [61012] "companion"        "spoken"           "elrond"          
## [61015] "edain"            "fathers"          "númenoreans"     
## [61018] "fought"           "beside"           "elves"           
## [61021] "first"            "wars"             "rewarded"        
## [61024] "gift"             "kingdom"          "midst"           
## [61027] "sea"              "within"           "sight"           
## [61030] "elvenhome"        "middle"           "earth"           
## [61033] "men"              "elves"            "became"          
## [61036] "estranged"        "days"             "darkness"        
## [61039] "arts"             "enemy"            "slow"            
## [61042] "changes"          "time"             "kind"            
## [61045] "walked"           "sundered"         "roads"           
## [61048] "men"              "now"              "fear"            
## [61051] "misdoubt"         "elves"            "yet"             
## [61054] "know"             "little"           "gondor"          
## [61057] "grow"             "like"             "men"             
## [61060] "like"             "men"              "rohan"           
## [61063] "even"             "foes"             "dark"            
## [61066] "lord"             "shun"             "elves"           
## [61069] "speak"            "golden"           "wood"            
## [61072] "dread"            "yet"              "among"           
## [61075] "us"               "still"            "dealings"        
## [61078] "elves"            "may"              "ever"            
## [61081] "anon"             "one"              "go"              
## [61084] "secret"           "lórien"           "seldom"          
## [61087] "return"           "deem"             "perilous"        
## [61090] "now"              "mortal"           "man"             
## [61093] "wilfully"         "seek"             "elder"           
## [61096] "people"           "yet"              "envy"            
## [61099] "spoken"           "white"            "lady"            
## [61102] "lady"             "lórien"           "galadriel"       
## [61105] "cried"            "sam"              "see"             
## [61108] "indeed"           "sir"              "hobbit"          
## [61111] "gardenings"       "job"              "home"            
## [61114] "sir"              "understand"       "im"              
## [61117] "much"             "good"             "poetry"          
## [61120] "making"           "bit"              "comic"           
## [61123] "rhyme"            "perhaps"          "now"             
## [61126] "know"             "real"             "poetry"          
## [61129] "cant"             "tell"             "mean"            
## [61132] "sung"             "youd"             "get"             
## [61135] "strider"          "aragorn"          "old"             
## [61138] "mr"               "bilbo"            "wish"            
## [61141] "make"             "song"             "beautiful"       
## [61144] "sir"              "lovely"           "sometimes"       
## [61147] "like"             "great"            "tree"            
## [61150] "flower"           "sometimes"        "like"            
## [61153] "white"            "daffadowndilly"   "small"           
## [61156] "slender"          "like"             "hard"            
## [61159] "dimonds"          "soft"             "moonlight"       
## [61162] "warm"             "sunlight"         "cold"            
## [61165] "frost"            "stars"            "proud"           
## [61168] "far"              "snow"             "mountain"        
## [61171] "merry"            "lass"             "ever"            
## [61174] "saw"              "daisies"          "hair"            
## [61177] "springtime"       "thats"            "lot"             
## [61180] "nonsense"         "wide"             "mark"            
## [61183] "must"             "lovely"           "indeed"          
## [61186] "said"             "faramir"          "perilously"      
## [61189] "fair"             "dont"             "know"            
## [61192] "perilous"         "said"             "sam"             
## [61195] "strikes"          "folk"             "takes"           
## [61198] "peril"            "lórien"           "finds"           
## [61201] "theyve"           "brought"          "perhaps"         
## [61204] "call"             "perilous"         "shes"            
## [61207] "strong"           "dash"             "pieces"          
## [61210] "like"             "ship"             "rock"            
## [61213] "drownd"           "like"             "hobbit"          
## [61216] "river"            "neither"          "rock"            
## [61219] "river"            "blame"            "now"             
## [61222] "boro"             "stopped"          "went"            
## [61225] "red"              "face"             "yes"             
## [61228] "now"              "boromir"          "say"             
## [61231] "said"             "faramir"          "say"             
## [61234] "took"             "peril"            "yes"             
## [61237] "sir"              "begging"          "pardon"          
## [61240] "fine"             "man"              "brother"         
## [61243] "may"              "say"              "youve"           
## [61246] "warm"             "scent"            "along"           
## [61249] "now"              "watched"          "boromir"         
## [61252] "listened"         "rivendell"        "road"            
## [61255] "looking"          "master"           "youll"           
## [61258] "understand"       "meaning"          "harm"            
## [61261] "boromir"          "opinion"          "lórien"          
## [61264] "first"            "saw"              "clearly"         
## [61267] "guessed"          "sooner"           "wanted"          
## [61270] "moment"           "first"            "saw"             
## [61273] "wanted"           "enemys"           "ring"            
## [61276] "sam"              "cried"            "frodo"           
## [61279] "aghast"           "fallen"           "deep"            
## [61282] "thoughts"         "came"             "suddenly"        
## [61285] "late"             "save"             "said"            
## [61288] "sam"              "turning"          "white"           
## [61291] "flushing"         "scarlet"          "go"              
## [61294] "ever"             "open"             "big"             
## [61297] "mouth"            "put"              "foot"            
## [61300] "gaffer"           "used"             "say"             
## [61303] "right"            "enough"           "dear"            
## [61306] "dear"             "now"              "look"            
## [61309] "sir"              "turned"           "facing"          
## [61312] "faramir"          "courage"          "muster"          
## [61315] "dont"             "go"               "taking"          
## [61318] "advantage"        "master"           "servants"        
## [61321] "better"           "fool"             "youve"           
## [61324] "spoken"           "handsome"         "along"           
## [61327] "put"              "guard"            "talking"         
## [61330] "elves"            "handsome"         "handsome"        
## [61333] "say"              "nows"             "chance"          
## [61336] "show"             "quality"          "seems"           
## [61339] "said"             "faramir"          "slowly"          
## [61342] "softly"           "strange"          "smile"           
## [61345] "answer"           "riddles"          "one"             
## [61348] "ring"             "thought"          "perished"        
## [61351] "world"            "boromir"          "tried"           
## [61354] "take"             "force"            "escaped"         
## [61357] "ran"              "way"              "wild"            
## [61360] "two"              "halflings"        "host"            
## [61363] "men"              "call"             "ring"            
## [61366] "rings"            "pretty"           "stroke"          
## [61369] "fortune"          "chance"           "faramir"         
## [61372] "captain"          "gondor"           "show"            
## [61375] "quality"          "ha"               "stood"           
## [61378] "tall"             "stern"            "grey"            
## [61381] "eyes"             "glinting"         "frodo"           
## [61384] "sam"              "sprang"           "stools"          
## [61387] "set"              "side"             "side"            
## [61390] "backs"            "wall"             "fumbling"        
## [61393] "sword"            "hilts"            "silence"         
## [61396] "men"              "cave"             "stopped"         
## [61399] "talking"          "looked"           "towards"         
## [61402] "wonder"           "faramir"          "sat"             
## [61405] "chair"            "began"            "laugh"           
## [61408] "quietly"          "suddenly"         "became"          
## [61411] "grave"            "alas"             "boromir"         
## [61414] "sore"             "trial"            "said"            
## [61417] "increased"        "sorrow"           "two"             
## [61420] "strange"          "wanderers"        "far"             
## [61423] "country"          "bearing"          "peril"           
## [61426] "men"              "less"             "judges"          
## [61429] "men"              "halflings"        "truth"           
## [61432] "speakers"         "men"              "gondor"          
## [61435] "boast"            "seldom"           "perform"         
## [61438] "die"              "attempt"          "found"           
## [61441] "highway"          "take"             "said"            
## [61444] "even"             "man"              "desire"          
## [61447] "thing"            "even"             "though"          
## [61450] "knew"             "clearly"          "thing"           
## [61453] "spoke"            "still"            "take"            
## [61456] "words"            "vow"              "held"            
## [61459] "man"              "wise"             "enough"          
## [61462] "know"             "perils"           "man"             
## [61465] "must"             "flee"             "sit"             
## [61468] "peace"            "comforted"        "samwise"         
## [61471] "seem"             "stumbled"         "think"           
## [61474] "fated"            "heart"            "shrewd"          
## [61477] "well"             "faithful"         "saw"             
## [61480] "clearer"          "eyes"             "strange"         
## [61483] "though"           "may"              "seem"            
## [61486] "safe"             "declare"          "may"             
## [61489] "even"             "help"             "master"          
## [61492] "love"             "shall"            "turn"            
## [61495] "good"             "power"            "comforted"       
## [61498] "even"             "name"             "thing"           
## [61501] "aloud"            "enough"           "hobbits"         
## [61504] "came"             "back"             "seats"           
## [61507] "sat"              "quiet"            "men"             
## [61510] "turned"           "back"             "drink"           
## [61513] "talk"             "perceiving"       "captain"         
## [61516] "jest"             "little"           "guests"          
## [61519] "well"             "frodo"            "now"             
## [61522] "last"             "understand"       "one"             
## [61525] "another"          "said"             "faramir"         
## [61528] "took"             "thing"            "unwilling"       
## [61531] "others"           "asking"           "pity"            
## [61534] "honour"           "marvel"           "keep"            
## [61537] "hid"              "use"              "new"             
## [61540] "people"           "new"              "world"           
## [61543] "kin"              "like"             "sort"            
## [61546] "land"             "must"             "realm"           
## [61549] "peace"            "content"          "must"            
## [61552] "gardeners"        "high"             "honour"          
## [61555] "well"             "said"             "frodo"           
## [61558] "certainly"        "gardeners"        "honoured"        
## [61561] "folk"             "must"             "grow"            
## [61564] "weary"            "even"             "gardens"         
## [61567] "things"           "sun"              "world"           
## [61570] "far"              "home"             "wayworn"         
## [61573] "tonight"          "sleep"            "peace"           
## [61576] "can"              "fear"             "wish"            
## [61579] "see"              "touch"            "know"            
## [61582] "know"             "enough"           "lest"            
## [61585] "peril"            "perchance"        "waylay"          
## [61588] "fall"             "lower"            "test"            
## [61591] "frodo"            "son"              "drogo"           
## [61594] "go"               "now"              "rest"            
## [61597] "first"            "tell"             "whither"         
## [61600] "wish"             "go"               "must"            
## [61603] "watch"            "wait"             "think"           
## [61606] "time"             "passes"           "morning"         
## [61609] "must"             "go"               "swiftly"         
## [61612] "ways"             "appointed"        "us"              
## [61615] "frodo"            "felt"             "trembling"       
## [61618] "first"            "shock"            "fear"            
## [61621] "passed"           "now"              "great"           
## [61624] "weariness"        "came"             "like"            
## [61627] "cloud"            "dissemble"        "resist"          
## [61630] "longer"           "going"            "find"            
## [61633] "way"              "mordor"           "said"            
## [61636] "faintly"          "going"            "gorgoroth"       
## [61639] "must"             "find"             "mountain"        
## [61642] "fire"             "cast"             "thing"           
## [61645] "gulf"             "doom"             "gandalf"         
## [61648] "said"             "think"            "shall"           
## [61651] "ever"             "get"              "faramir"         
## [61654] "stared"           "moment"           "grave"           
## [61657] "astonishment"     "suddenly"         "caught"          
## [61660] "swayed"           "lifting"          "gently"          
## [61663] "carried"          "bed"              "laid"            
## [61666] "covered"          "warmly"           "fell"            
## [61669] "deep"             "sleep"            "another"         
## [61672] "bed"              "set"              "beside"          
## [61675] "servant"          "sam"              "hesitated"       
## [61678] "moment"           "bowing"           "low"             
## [61681] "good"             "night"            "captain"         
## [61684] "lord"             "said"             "took"            
## [61687] "chance"           "sir"              "said"            
## [61690] "faramir"          "yes"              "sir"             
## [61693] "showed"           "quality"          "highest"         
## [61696] "faramir"          "smiled"           "pert"            
## [61699] "servant"          "master"           "samwise"         
## [61702] "nay"              "praise"           "praiseworthy"    
## [61705] "rewards"          "yet"              "naught"          
## [61708] "praise"           "lure"             "desire"          
## [61711] "done"             "ah"               "well"            
## [61714] "sir"              "said"             "sam"             
## [61717] "said"             "master"           "elvish"          
## [61720] "air"              "good"             "true"            
## [61723] "can"              "say"              "air"             
## [61726] "sir"              "reminds"          "well"            
## [61729] "gandalf"          "wizards"          "maybe"           
## [61732] "said"             "faramir"          "maybe"           
## [61735] "discern"          "far"              "away"            
## [61738] "air"              "númenor"          "good"            
## [61741] "night"            "chapter"          "forbidden"       
## [61744] "pool"             "frodo"            "woke"            
## [61747] "find"             "faramir"          "bending"         
## [61750] "second"           "old"              "fears"           
## [61753] "seized"           "sat"              "shrank"          
## [61756] "away"             "nothing"          "fear"            
## [61759] "said"             "faramir"          "morning"         
## [61762] "already"          "said"             "frodo"           
## [61765] "yawning"          "yet"              "night"           
## [61768] "drawing"          "end"              "full"            
## [61771] "moon"             "setting"          "come"            
## [61774] "see"              "also"             "matter"          
## [61777] "desire"           "counsel"          "sorry"           
## [61780] "rouse"            "sleep"            "come"            
## [61783] "said"             "frodo"            "rising"          
## [61786] "shivering"        "little"           "left"            
## [61789] "warm"             "blanket"          "pelts"           
## [61792] "seemed"           "cold"             "fireless"        
## [61795] "cave"             "noise"            "water"           
## [61798] "loud"             "stillness"        "put"             
## [61801] "cloak"            "followed"         "faramir"         
## [61804] "sam"              "waking"           "suddenly"        
## [61807] "instinct"         "watchfulness"     "saw"             
## [61810] "first"            "masters"          "empty"           
## [61813] "bed"              "leapt"            "feet"            
## [61816] "saw"              "two"              "dark"            
## [61819] "figures"          "frodo"            "man"             
## [61822] "framed"           "archway"          "now"             
## [61825] "filled"           "pale"             "white"           
## [61828] "light"            "hurried"          "past"            
## [61831] "rows"             "men"              "sleeping"        
## [61834] "mattresses"       "along"            "wall"            
## [61837] "went"             "cave"             "mouth"           
## [61840] "saw"              "curtain"          "now"             
## [61843] "become"           "dazzling"         "veil"            
## [61846] "silk"             "pearls"           "silver"          
## [61849] "thread"           "melting"          "icicles"         
## [61852] "moonlight"        "pause"            "admire"          
## [61855] "turning"          "aside"            "followed"        
## [61858] "master"           "narrow"           "doorway"         
## [61861] "wall"             "cave"             "went"            
## [61864] "first"            "along"            "black"           
## [61867] "passage"          "many"             "wet"             
## [61870] "steps"            "came"             "small"           
## [61873] "flat"             "landing"          "cut"             
## [61876] "stone"            "lit"              "pale"            
## [61879] "sky"              "gleaming"         "high"            
## [61882] "long"             "deep"             "shaft"           
## [61885] "two"              "flights"          "steps"           
## [61888] "led"              "one"              "going"           
## [61891] "seemed"           "high"             "bank"            
## [61894] "stream"           "turning"          "away"            
## [61897] "left"             "followed"         "wound"           
## [61900] "way"              "like"             "turret"          
## [61903] "stair"            "last"             "came"            
## [61906] "stony"            "darkness"         "looked"          
## [61909] "wide"             "flat"             "rock"            
## [61912] "without"          "rail"             "parapet"         
## [61915] "right"            "eastwards"        "torrent"         
## [61918] "fell"             "splashing"        "many"            
## [61921] "terraces"         "pouring"          "steep"           
## [61924] "race"             "filled"           "smooth"          
## [61927] "hewn"             "channel"          "dark"            
## [61930] "force"            "water"            "flecked"         
## [61933] "foam"             "curling"          "rushing"         
## [61936] "almost"           "feet"             "plunged"         
## [61939] "sheer"            "edge"             "yawned"          
## [61942] "upon"             "left"             "man"             
## [61945] "stood"            "near"             "brink"           
## [61948] "silent"           "gazing"           "frodo"           
## [61951] "turned"           "watch"            "sleek"           
## [61954] "necks"            "water"            "curved"          
## [61957] "dived"            "lifted"           "eyes"            
## [61960] "gazed"            "far"              "away"            
## [61963] "world"            "quiet"            "cold"            
## [61966] "dawn"             "near"             "far"             
## [61969] "west"             "full"             "moon"            
## [61972] "sinking"          "round"            "white"           
## [61975] "pale"             "mists"            "shimmered"       
## [61978] "great"            "vale"             "wide"            
## [61981] "gulf"             "silver"           "fume"            
## [61984] "beneath"          "rolled"           "cool"            
## [61987] "night"            "waters"           "anduin"          
## [61990] "black"            "darkness"         "loomed"          
## [61993] "beyond"           "glinted"          "cold"            
## [61996] "sharp"            "remote"           "white"           
## [61999] "teeth"            "ghosts"           "peaks"           
## [62002] "ered"             "nimrais"          "white"           
## [62005] "mountains"        "realm"            "gondor"          
## [62008] "tipped"           "everlasting"      "snow"            
## [62011] "frodo"            "stood"            "high"            
## [62014] "stone"            "shiver"           "ran"             
## [62017] "wondering"        "anywhere"         "vastness"        
## [62020] "night"            "lands"            "old"             
## [62023] "companions"       "walked"           "slept"           
## [62026] "lay"              "dead"             "shrouded"        
## [62029] "mist"             "brought"          "forgetful"       
## [62032] "sleep"            "sam"              "eager"           
## [62035] "answer"           "question"         "refrain"         
## [62038] "muttering"        "masters"          "ear"             
## [62041] "alone"            "thought"          "fine"            
## [62044] "view"             "doubt"            "mr"              
## [62047] "frodo"            "chilly"           "heart"           
## [62050] "mention"          "bones"            "whats"           
## [62053] "going"            "faramir"          "heard"           
## [62056] "answered"         "moonset"          "gondor"          
## [62059] "fair"             "ithil"            "goes"            
## [62062] "middle"           "earth"            "glances"         
## [62065] "upon"             "white"            "locks"           
## [62068] "old"              "mindolluin"       "worth"           
## [62071] "shivers"          "brought"          "see"             
## [62074] "though"           "samwise"          "brought"         
## [62077] "pay"              "penalty"          "watchfulness"    
## [62080] "draught"          "wine"             "shall"           
## [62083] "amend"            "come"             "look"            
## [62086] "now"              "stepped"          "beside"          
## [62089] "silent"           "sentinel"         "dark"            
## [62092] "edge"             "frodo"            "followed"        
## [62095] "sam"              "hung"             "back"            
## [62098] "already"          "felt"             "insecure"        
## [62101] "enough"           "high"             "wet"             
## [62104] "platform"         "faramir"          "frodo"           
## [62107] "looked"           "far"              "saw"             
## [62110] "white"            "waters"           "pour"            
## [62113] "foaming"          "bowl"             "swirl"           
## [62116] "darkly"           "deep"             "oval"            
## [62119] "basin"            "rocks"            "found"           
## [62122] "way"              "narrow"           "gate"            
## [62125] "flowed"           "away"             "fuming"          
## [62128] "chattering"       "calmer"           "level"           
## [62131] "reaches"          "moonlight"        "still"           
## [62134] "slanted"          "falls"            "foot"            
## [62137] "gleamed"          "ripples"          "basin"           
## [62140] "presently"        "frodo"            "aware"           
## [62143] "small"            "dark"             "thing"           
## [62146] "near"             "bank"             "even"            
## [62149] "looked"           "dived"            "vanished"        
## [62152] "just"             "beyond"           "boil"            
## [62155] "bubble"           "fall"             "cleaving"        
## [62158] "black"            "water"            "neatly"          
## [62161] "arrow"            "edgewise"         "stone"           
## [62164] "faramir"          "turned"           "man"             
## [62167] "side"             "now"              "say"             
## [62170] "anborn"           "squirrel"         "kingfisher"      
## [62173] "black"            "kingfishers"      "night"           
## [62176] "pools"            "mirkwood"         "tis"             
## [62179] "bird"             "whatever"         "else"            
## [62182] "answered"         "anborn"           "four"            
## [62185] "limbs"            "dives"            "manwise"         
## [62188] "pretty"           "mastery"          "craft"           
## [62191] "shows"            "seeking"          "way"             
## [62194] "behind"           "curtain"          "hidings"         
## [62197] "seems"            "discovered"       "last"            
## [62200] "bow"              "posted"           "archers"         
## [62203] "nigh"             "good"             "marksmen"        
## [62206] "either"           "bank"             "wait"            
## [62209] "command"          "shoot"            "captain"         
## [62212] "shall"            "shoot"            "said"            
## [62215] "faramir"          "turning"          "quickly"         
## [62218] "frodo"            "frodo"            "answer"          
## [62221] "moment"           "said"             "beg"             
## [62224] "sam"              "dared"            "said"            
## [62227] "yes"              "quicker"          "louder"          
## [62230] "see"              "guessed"          "well"            
## [62233] "enough"           "words"            "looking"         
## [62236] "know"             "thing"            "said"            
## [62239] "faramir"          "come"             "now"             
## [62242] "seen"             "tell"             "spared"          
## [62245] "words"            "together"         "spoken"          
## [62248] "gangrel"          "companion"        "let"             
## [62251] "time"             "wait"             "till"            
## [62254] "caught"           "brought"          "sent"            
## [62257] "keenest"          "huntsmen"         "seek"            
## [62260] "slipped"          "sight"            "till"            
## [62263] "now"              "save"             "anborn"          
## [62266] "dusk"             "yesterevening"    "now"             
## [62269] "done"             "worse"            "trespass"        
## [62272] "go"               "coney"            "snaring"         
## [62275] "uplands"          "dared"            "come"            
## [62278] "henneth"          "annûn"            "life"            
## [62281] "forfeit"          "marvel"           "creature"        
## [62284] "secret"           "sly"              "come"            
## [62287] "sporting"         "pool"             "window"          
## [62290] "think"            "men"              "sleep"           
## [62293] "without"          "watch"            "night"           
## [62296] "two"              "answers"          "think"           
## [62299] "said"             "frodo"            "one"             
## [62302] "thing"            "knows"            "little"          
## [62305] "men"              "sly"              "though"          
## [62308] "refuge"           "hidden"           "perhaps"         
## [62311] "know"             "men"              "concealed"       
## [62314] "another"          "think"            "allured"         
## [62317] "mastering"        "desire"           "stronger"        
## [62320] "caution"          "lured"            "say"             
## [62323] "said"             "faramir"          "low"             
## [62326] "voice"            "can"              "know"            
## [62329] "burden"           "indeed"           "yes"             
## [62332] "bore"             "many"             "years"           
## [62335] "bore"             "said"             "faramir"         
## [62338] "breathing"        "sharply"          "wonder"          
## [62341] "matter"           "winds"            "ever"            
## [62344] "new"              "riddles"          "pursuing"        
## [62347] "maybe"            "precious"         "speak"           
## [62350] "creature"         "seek"             "fish"            
## [62353] "said"             "frodo"            "look"            
## [62356] "peered"           "dark"             "pool"            
## [62359] "little"           "black"            "head"            
## [62362] "appeared"         "far"              "end"             
## [62365] "basin"            "just"             "deep"            
## [62368] "shadow"           "rocks"            "brief"           
## [62371] "silver"           "glint"            "swirl"           
## [62374] "tiny"             "ripples"          "swam"            
## [62377] "side"             "marvellous"       "agility"         
## [62380] "froglike"         "figure"           "climbed"         
## [62383] "water"            "bank"             "sat"             
## [62386] "began"            "gnaw"             "small"           
## [62389] "silver"           "thing"            "glittered"       
## [62392] "turned"           "last"             "rays"            
## [62395] "moon"             "now"              "falling"         
## [62398] "behind"           "stony"            "wall"            
## [62401] "pools"            "end"              "faramir"         
## [62404] "laughed"          "softly"           "fish"            
## [62407] "said"             "less"             "perilous"        
## [62410] "hunger"           "maybe"            "fish"            
## [62413] "pool"             "henneth"          "annûn"           
## [62416] "may"              "cost"             "give"            
## [62419] "now"              "arrow"            "point"           
## [62422] "said"             "anborn"           "shall"           
## [62425] "shoot"            "captain"          "coming"          
## [62428] "unbidden"         "place"            "death"           
## [62431] "law"              "wait"             "anborn"          
## [62434] "said"             "faramir"          "harder"          
## [62437] "matter"           "seems"            "say"             
## [62440] "now"              "frodo"            "spare"           
## [62443] "creature"         "wretched"         "hungry"          
## [62446] "said"             "frodo"            "unaware"         
## [62449] "danger"           "gandalf"          "mithrandir"      
## [62452] "bidden"           "slay"             "reason"          
## [62455] "others"           "forbade"          "elves"           
## [62458] "know"             "clearly"          "guess"           
## [62461] "speak"            "openly"           "creature"        
## [62464] "way"              "bound"            "errand"          
## [62467] "found"            "us"               "took"            
## [62470] "us"               "guide"            "guide"           
## [62473] "said"             "faramir"          "matter"          
## [62476] "becomes"          "ever"             "stranger"        
## [62479] "much"             "frodo"            "grant"           
## [62482] "let"              "sly"              "wanderer"        
## [62485] "go"               "free"             "join"            
## [62488] "later"            "please"           "caught"          
## [62491] "orcs"             "tell"             "knows"           
## [62494] "threat"           "pain"             "must"            
## [62497] "slain"            "taken"            "slain"           
## [62500] "taken"            "swiftly"          "can"             
## [62503] "slippery"         "thing"            "many"            
## [62506] "guises"           "caught"           "save"            
## [62509] "feathered"        "shaft"            "let"             
## [62512] "go"               "quietly"          "said"            
## [62515] "frodo"            "may"              "keep"            
## [62518] "bows"             "bent"             "shoot"           
## [62521] "least"            "fail"             "shall"           
## [62524] "run"              "away"             "go"              
## [62527] "swift"            "said"             "faramir"         
## [62530] "comes"            "alive"            "faithful"        
## [62533] "servant"          "rest"             "unhappy"         
## [62536] "days"             "lead"             "frodo"           
## [62539] "bank"             "anborn"           "go"              
## [62542] "softly"           "thing"            "nose"            
## [62545] "ears"             "give"             "bow"             
## [62548] "anborn"           "grunted"          "led"             
## [62551] "way"              "winding"          "stair"           
## [62554] "landing"          "stair"            "last"            
## [62557] "came"             "narrow"           "opening"         
## [62560] "shrouded"         "thick"            "bushes"          
## [62563] "passing"          "silently"         "frodo"           
## [62566] "found"            "top"              "southern"        
## [62569] "bank"             "pool"             "now"             
## [62572] "dark"             "falls"            "pale"            
## [62575] "grey"             "reflecting"       "lingering"       
## [62578] "moonlight"        "western"          "sky"             
## [62581] "see"              "gollum"           "went"            
## [62584] "forward"          "short"            "way"             
## [62587] "anborn"           "came"             "softly"          
## [62590] "behind"           "go"               "breathed"        
## [62593] "frodos"           "ear"              "care"            
## [62596] "right"            "fall"             "pool"            
## [62599] "one"              "fishing"          "friend"          
## [62602] "can"              "help"             "forget"          
## [62605] "bowmen"           "near"             "hand"            
## [62608] "though"           "may"              "see"             
## [62611] "frodo"            "crept"            "forward"         
## [62614] "using"            "hands"            "gollum"          
## [62617] "like"             "feel"             "way"             
## [62620] "steady"           "rocks"            "part"            
## [62623] "flat"             "smooth"           "slippery"        
## [62626] "halted"           "listening"        "first"           
## [62629] "hear"             "sound"            "unceasing"       
## [62632] "rush"             "fall"             "behind"          
## [62635] "presently"        "heard"            "far"             
## [62638] "ahead"            "hissing"          "murmur"          
## [62641] "fissh"            "nice"             "fissh"           
## [62644] "white"            "face"             "vanished"        
## [62647] "precious"         "last"             "yes"             
## [62650] "now"              "can"              "eat"             
## [62653] "fish"             "peace"            "peace"           
## [62656] "precious"         "precious"         "lost"            
## [62659] "yes"              "lost"             "dirty"           
## [62662] "hobbits"          "nasty"            "hobbits"         
## [62665] "gone"             "left"             "us"              
## [62668] "gollum"           "precious"         "gone"            
## [62671] "poor"             "sméagol"          "alone"           
## [62674] "precious"         "nasty"            "men"             
## [62677] "theyll"           "take"             "steal"           
## [62680] "precious"         "thieves"          "hates"           
## [62683] "fissh"            "nice"             "fissh"           
## [62686] "makes"            "us"               "strong"          
## [62689] "makes"            "eyes"             "bright"          
## [62692] "fingers"          "tight"            "yes"             
## [62695] "throttle"         "precious"         "throttle"        
## [62698] "yes"              "gets"             "chances"         
## [62701] "nice"             "fissh"            "nice"            
## [62704] "fissh"            "went"             "almost"          
## [62707] "unceasing"        "waterfall"        "interrupted"     
## [62710] "faint"            "noise"            "slavering"       
## [62713] "gurgling"         "frodo"            "shivered"        
## [62716] "listening"        "pity"             "disgust"         
## [62719] "wished"           "stop"             "never"           
## [62722] "need"             "hear"             "voice"           
## [62725] "anborn"           "far"              "behind"          
## [62728] "creep"            "back"             "ask"             
## [62731] "get"              "huntsmen"         "shoot"           
## [62734] "probably"         "get"              "close"           
## [62737] "enough"           "gollum"           "gorging"         
## [62740] "guard"            "one"              "true"            
## [62743] "shot"             "frodo"            "rid"             
## [62746] "miserable"        "voice"            "ever"            
## [62749] "gollum"           "claim"            "now"             
## [62752] "servant"          "claim"            "master"          
## [62755] "service"          "even"             "service"         
## [62758] "fear"             "foundered"        "dead"            
## [62761] "marshes"          "gollum"           "frodo"           
## [62764] "knew"             "somehow"          "quite"           
## [62767] "clearly"          "gandalf"          "wished"          
## [62770] "sméagol"          "said"             "softly"          
## [62773] "fissh"            "nice"             "fissh"           
## [62776] "said"             "voice"            "sméagol"         
## [62779] "said"             "little"           "louder"          
## [62782] "voice"            "stopped"          "sméagol"         
## [62785] "master"           "come"             "look"            
## [62788] "master"           "come"             "sméagol"         
## [62791] "answer"           "soft"             "hiss"            
## [62794] "intaken"          "breath"           "come"            
## [62797] "sméagol"          "said"             "frodo"           
## [62800] "danger"           "men"              "kill"            
## [62803] "find"             "come"             "quickly"         
## [62806] "wish"             "escape"           "death"           
## [62809] "come"             "master"           "said"            
## [62812] "voice"            "nice"             "master"          
## [62815] "leaves"           "poor"             "sméagol"         
## [62818] "goes"             "new"              "friends"         
## [62821] "master"           "can"              "wait"            
## [62824] "sméagol"          "hasnt"            "finished"        
## [62827] "theres"           "time"             "said"            
## [62830] "frodo"            "bring"            "fish"            
## [62833] "come"             "must"             "finish"          
## [62836] "fish"             "sméagol"          "said"            
## [62839] "frodo"            "desperately"      "precious"        
## [62842] "angry"            "shall"            "take"            
## [62845] "precious"         "shall"            "say"             
## [62848] "make"             "swallow"          "bones"           
## [62851] "choke"            "never"            "taste"           
## [62854] "fish"             "come"             "precious"        
## [62857] "waiting"          "sharp"            "hiss"            
## [62860] "presently"        "darkness"         "gollum"          
## [62863] "came"             "crawling"         "fours"           
## [62866] "like"             "erring"           "dog"             
## [62869] "called"           "heel"             "half"            
## [62872] "eaten"            "fish"             "mouth"           
## [62875] "another"          "hand"             "came"            
## [62878] "close"            "frodo"            "almost"          
## [62881] "nose"             "nose"             "sniffed"         
## [62884] "pale"             "eyes"             "shining"         
## [62887] "took"             "fish"             "mouth"           
## [62890] "stood"            "nice"             "master"          
## [62893] "whispered"        "nice"             "hobbit"          
## [62896] "come"             "back"             "poor"            
## [62899] "sméagol"          "good"             "sméagol"         
## [62902] "comes"            "now"              "lets"            
## [62905] "go"               "go"               "quickly"         
## [62908] "yes"              "trees"            "faces"           
## [62911] "dark"             "yes"              "come"            
## [62914] "lets"             "go"               "yes"             
## [62917] "well"             "go"               "soon"            
## [62920] "said"             "frodo"            "go"              
## [62923] "promised"         "promise"          "now"             
## [62926] "safe"             "yet"              "save"            
## [62929] "must"             "trust"            "must"            
## [62932] "trust"            "master"           "said"            
## [62935] "gollum"           "doubtfully"       "go"              
## [62938] "one"              "cross"            "rude"            
## [62941] "hobbit"           "away"             "said"            
## [62944] "frodo"            "pointing"         "waterfall"       
## [62947] "going"            "without"          "must"            
## [62950] "go"               "back"             "heart"           
## [62953] "sank"             "much"             "like"            
## [62956] "trickery"         "really"           "fear"            
## [62959] "faramir"          "allow"            "gollum"          
## [62962] "killed"           "probably"         "make"            
## [62965] "prisoner"         "bind"             "certainly"       
## [62968] "frodo"            "seem"             "treachery"       
## [62971] "poor"             "treacherous"      "creature"        
## [62974] "probably"         "impossible"       "ever"            
## [62977] "make"             "understand"       "believe"         
## [62980] "frodo"            "saved"            "life"            
## [62983] "way"              "else"             "keep"            
## [62986] "faith"            "near"             "might"           
## [62989] "sides"            "come"             "said"            
## [62992] "precious"         "angry"            "going"           
## [62995] "back"             "now"              "stream"          
## [62998] "go"               "go"               "go"              
## [63001] "front"            "gollum"           "crawled"         
## [63004] "along"            "close"            "brink"           
## [63007] "little"           "way"              "snuffling"       
## [63010] "suspicious"       "presently"        "stopped"         
## [63013] "raised"           "head"             "somethings"      
## [63016] "said"             "hobbit"           "suddenly"        
## [63019] "turned"           "back"             "green"           
## [63022] "light"            "flickering"       "bulging"         
## [63025] "eyes"             "masster"          "masster"         
## [63028] "hissed"           "wicked"           "tricksy"         
## [63031] "false"            "spat"             "stretched"       
## [63034] "long"             "arms"             "white"           
## [63037] "snapping"         "fingers"          "moment"          
## [63040] "great"            "black"            "shape"           
## [63043] "anborn"           "loomed"           "behind"          
## [63046] "came"             "large"            "strong"          
## [63049] "hand"             "took"             "nape"            
## [63052] "neck"             "pinned"           "twisted"         
## [63055] "round"            "like"             "lightning"       
## [63058] "wet"              "slimy"            "wriggling"       
## [63061] "like"             "eel"              "biting"          
## [63064] "scratching"       "like"             "cat"             
## [63067] "two"              "men"              "came"            
## [63070] "shadows"          "hold"             "still"           
## [63073] "said"             "one"              "well"            
## [63076] "stick"            "full"             "pins"            
## [63079] "hedgehog"         "hold"             "still"           
## [63082] "gollum"           "went"             "limp"            
## [63085] "began"            "whine"            "weep"            
## [63088] "tied"             "none"             "gently"          
## [63091] "easy"             "easy"             "said"            
## [63094] "frodo"            "strength"         "match"           
## [63097] "dont"             "hurt"             "can"             
## [63100] "help"             "hell"             "quieter"         
## [63103] "dont"             "sméagol"          "wont"            
## [63106] "hurt"             "ill"              "go"              
## [63109] "shall"            "come"             "harm"            
## [63112] "unless"           "kill"             "trust"           
## [63115] "master"           "gollum"           "turned"          
## [63118] "spat"             "men"              "picked"          
## [63121] "put"              "hood"             "eyes"            
## [63124] "carried"          "frodo"            "followed"        
## [63127] "feeling"          "wretched"         "went"            
## [63130] "opening"          "behind"           "bushes"          
## [63133] "back"             "stairs"           "passages"        
## [63136] "cave"             "two"              "three"           
## [63139] "torches"          "lit"              "men"             
## [63142] "stirring"         "sam"              "gave"            
## [63145] "queer"            "look"             "limp"            
## [63148] "bundle"           "men"              "carried"         
## [63151] "got"              "said"             "frodo"           
## [63154] "yes"              "well"             "didnt"           
## [63157] "get"              "came"             "trusted"         
## [63160] "first"            "im"               "afraid"          
## [63163] "want"             "tied"             "like"            
## [63166] "hope"             "right"            "hate"            
## [63169] "whole"            "business"         "said"            
## [63172] "sam"              "nothing"          "ever"            
## [63175] "right"            "piece"            "misery"          
## [63178] "man"              "came"             "beckoned"        
## [63181] "hobbits"          "took"             "recess"          
## [63184] "back"             "cave"             "faramir"         
## [63187] "sitting"          "chair"            "lamp"            
## [63190] "rekindled"        "niche"            "head"            
## [63193] "signed"           "sit"              "stools"          
## [63196] "beside"           "bring"            "wine"            
## [63199] "guests"           "said"             "bring"           
## [63202] "prisoner"         "wine"             "brought"         
## [63205] "anborn"           "came"             "carrying"        
## [63208] "gollum"           "removed"          "cover"           
## [63211] "gollums"          "head"             "set"             
## [63214] "feet"             "standing"         "behind"          
## [63217] "support"          "gollum"           "blinked"         
## [63220] "hooding"          "malice"           "eyes"            
## [63223] "heavy"            "pale"             "lids"            
## [63226] "miserable"        "creature"         "looked"          
## [63229] "dripping"         "dank"             "smelling"        
## [63232] "fish"             "still"            "clutched"        
## [63235] "one"              "hand"             "sparse"          
## [63238] "locks"            "hanging"          "like"            
## [63241] "rank"             "weed"             "bony"            
## [63244] "brows"            "nose"             "snivelling"      
## [63247] "loose"            "us"               "loose"           
## [63250] "us"               "said"             "cord"            
## [63253] "hurts"            "us"               "yes"             
## [63256] "hurts"            "us"               "weve"            
## [63259] "done"             "nothing"          "nothing"         
## [63262] "said"             "faramir"          "looking"         
## [63265] "wretched"         "creature"         "keen"            
## [63268] "glance"           "without"          "expression"      
## [63271] "face"             "either"           "anger"           
## [63274] "pity"             "wonder"           "nothing"         
## [63277] "never"            "done"             "anything"        
## [63280] "worthy"           "binding"          "worse"           
## [63283] "punishment"       "however"          "judge"           
## [63286] "happily"          "tonight"          "come"            
## [63289] "death"            "come"             "fish"            
## [63292] "pool"             "dearly"           "bought"          
## [63295] "gollum"           "dropped"          "fish"            
## [63298] "hand"             "dont"             "want"            
## [63301] "fish"             "said"             "price"           
## [63304] "set"              "fish"             "said"            
## [63307] "faramir"          "come"             "look"            
## [63310] "pool"             "bears"            "penalty"         
## [63313] "death"            "spared"           "far"             
## [63316] "prayer"           "frodo"            "says"            
## [63319] "least"            "deserved"         "thanks"          
## [63322] "must"             "also"             "satisfy"         
## [63325] "name"             "whence"           "come"            
## [63328] "whither"          "go"               "business"        
## [63331] "lost"             "lost"             "said"            
## [63334] "gollum"           "name"             "business"        
## [63337] "precious"         "nothing"          "empty"           
## [63340] "hungry"           "yes"              "hungry"          
## [63343] "little"           "fishes"           "nasty"           
## [63346] "bony"             "little"           "fishes"          
## [63349] "poor"             "creature"         "say"             
## [63352] "death"            "wise"             "just"            
## [63355] "just"             "wise"             "said"            
## [63358] "faramir"          "just"             "yes"             
## [63361] "perhaps"          "just"             "little"          
## [63364] "wisdom"           "allows"           "unloose"         
## [63367] "frodo"            "faramir"          "took"            
## [63370] "small"            "nail"             "knife"           
## [63373] "belt"             "handed"           "frodo"           
## [63376] "gollum"           "misunderstanding" "gesture"         
## [63379] "squealed"         "fell"             "now"             
## [63382] "sméagol"          "said"             "frodo"           
## [63385] "must"             "trust"            "desert"          
## [63388] "answer"           "truthfully"       "can"             
## [63391] "good"             "harm"             "cut"             
## [63394] "cords"            "gollums"          "wrists"          
## [63397] "ankles"           "raised"           "feet"            
## [63400] "come"             "hither"           "said"            
## [63403] "faramir"          "look"             "know"            
## [63406] "name"             "place"            "slowly"          
## [63409] "gollum"           "raised"           "eyes"            
## [63412] "looked"           "unwillingly"      "faramirs"        
## [63415] "light"            "went"             "stared"          
## [63418] "bleak"            "pale"             "moment"          
## [63421] "clear"            "unwavering"       "eyes"            
## [63424] "man"              "gondor"           "still"           
## [63427] "silence"          "gollum"           "dropped"         
## [63430] "head"             "shrank"           "squatting"       
## [63433] "floor"            "shivering"        "doesnt"          
## [63436] "know"             "doesnt"           "want"            
## [63439] "know"             "whimpered"        "never"           
## [63442] "came"             "never"            "come"            
## [63445] "locked"           "doors"            "closed"          
## [63448] "windows"          "mind"             "dark"            
## [63451] "rooms"            "behind"           "said"            
## [63454] "faramir"          "judge"            "speak"           
## [63457] "truth"            "well"             "oath"            
## [63460] "swear"            "never"            "return"          
## [63463] "never"            "lead"             "living"          
## [63466] "creature"         "hither"           "word"            
## [63469] "sign"             "master"           "knows"           
## [63472] "said"             "gollum"           "sidelong"        
## [63475] "glance"           "frodo"            "yes"             
## [63478] "knows"            "promise"          "master"          
## [63481] "saves"            "us"               "well"            
## [63484] "promise"          "yes"              "crawled"         
## [63487] "frodos"           "feet"             "save"            
## [63490] "us"               "nice"             "master"          
## [63493] "whined"           "sméagol"          "promises"        
## [63496] "precious"         "promises"         "faithfully"      
## [63499] "never"            "come"             "never"           
## [63502] "speak"            "never"            "precious"        
## [63505] "satisfied"        "said"             "faramir"         
## [63508] "yes"              "said"             "frodo"           
## [63511] "least"            "must"             "either"          
## [63514] "accept"           "promise"          "carry"           
## [63517] "law"              "get"              "promised"        
## [63520] "came"             "harmed"           "proved"          
## [63523] "faithless"        "faramir"          "sat"             
## [63526] "moment"           "thought"          "good"            
## [63529] "said"             "last"             "surrender"       
## [63532] "master"           "frodo"            "son"             
## [63535] "drogo"            "let"              "declare"         
## [63538] "lord"             "faramir"          "said"            
## [63541] "frodo"            "bowing"           "yet"             
## [63544] "declared"         "concerning"       "said"            
## [63547] "frodo"            "made"             "known"           
## [63550] "shape"            "plans"            "companions"      
## [63553] "judgement"        "postponed"        "morning"         
## [63556] "now"              "hand"             "declare"         
## [63559] "doom"             "said"             "faramir"         
## [63562] "frodo"            "far"              "lies"            
## [63565] "higher"           "authority"        "declare"         
## [63568] "free"             "realm"            "gondor"          
## [63571] "furthest"         "ancient"          "bounds"          
## [63574] "save"             "neither"          "go"              
## [63577] "leave"            "come"             "place"           
## [63580] "unbidden"         "doom"             "shall"           
## [63583] "stand"            "year"             "day"             
## [63586] "cease"            "unless"           "shall"           
## [63589] "term"             "come"             "minas"           
## [63592] "tirith"           "present"          "lord"            
## [63595] "steward"          "city"             "entreat"         
## [63598] "confirm"          "done"             "make"            
## [63601] "lifelong"         "meantime"         "whomsoever"      
## [63604] "take"             "protection"       "shall"           
## [63607] "protection"       "shield"           "gondor"          
## [63610] "answered"         "frodo"            "bowed"           
## [63613] "low"              "answered"         "said"            
## [63616] "place"            "service"          "worth"           
## [63619] "one"              "high"             "honourable"      
## [63622] "great"            "worth"            "said"            
## [63625] "faramir"          "now"              "take"            
## [63628] "creature"         "sméagol"          "protection"      
## [63631] "take"             "sméagol"          "protection"      
## [63634] "said"             "frodo"            "sam"             
## [63637] "sighed"           "audibly"          "courtesies"      
## [63640] "hobbit"           "thoroughly"       "approved"        
## [63643] "indeed"           "shire"            "matter"          
## [63646] "required"         "great"            "many"            
## [63649] "words"            "bows"             "say"             
## [63652] "said"             "faramir"          "turning"         
## [63655] "gollum"           "doom"             "death"           
## [63658] "walk"             "frodo"            "safe"            
## [63661] "part"             "yet"              "ever"            
## [63664] "found"            "man"              "gondor"          
## [63667] "astray"           "without"          "doom"            
## [63670] "shall"            "fall"             "may"             
## [63673] "death"            "find"             "swiftly"         
## [63676] "within"           "gondor"           "without"         
## [63679] "well"             "serve"            "now"             
## [63682] "answer"           "whither"          "go"              
## [63685] "guide"            "says"             "whither"         
## [63688] "leading"          "gollum"           "made"            
## [63691] "reply"            "secret"           "said"            
## [63694] "faramir"          "answer"           "reverse"         
## [63697] "judgement"        "still"            "gollum"          
## [63700] "answer"           "answer"           "said"            
## [63703] "frodo"            "brought"          "black"           
## [63706] "gate"             "asked"            "impassable"      
## [63709] "open"             "gate"             "nameless"        
## [63712] "land"             "said"             "faramir"         
## [63715] "seeing"           "turned"           "aside"           
## [63718] "came"             "southward"        "road"            
## [63721] "frodo"            "continued"        "said"            
## [63724] "may"              "path"             "near"            
## [63727] "minas"            "ithil"            "minas"           
## [63730] "morgul"           "said"             "faramir"         
## [63733] "know"             "clearly"          "said"            
## [63736] "frodo"            "path"             "climbs"          
## [63739] "think"            "mountains"        "northern"        
## [63742] "side"             "vale"             "old"             
## [63745] "city"             "stands"           "goes"            
## [63748] "high"             "cleft"            "beyond"          
## [63751] "know"             "name"             "high"            
## [63754] "pass"             "said"             "faramir"         
## [63757] "said"             "frodo"            "called"          
## [63760] "cirith"           "ungol"            "gollum"          
## [63763] "hissed"           "sharply"          "began"           
## [63766] "muttering"        "name"             "said"            
## [63769] "faramir"          "turning"          "said"            
## [63772] "gollum"           "squealed"         "something"       
## [63775] "stabbed"          "yes"              "yes"             
## [63778] "heard"            "name"             "name"            
## [63781] "matter"           "us"               "master"          
## [63784] "says"             "must"             "get"             
## [63787] "must"             "try"              "way"             
## [63790] "way"              "try"              "way"             
## [63793] "said"             "faramir"          "know"            
## [63796] "explored"         "confines"         "dark"            
## [63799] "realm"            "looked"           "long"            
## [63802] "thoughtfully"     "gollum"           "presently"       
## [63805] "spoke"            "take"             "creature"        
## [63808] "away"             "anborn"           "treat"           
## [63811] "gently"           "watch"            "sméagol"         
## [63814] "try"              "dive"             "falls"           
## [63817] "rocks"            "teeth"            "slay"            
## [63820] "time"             "leave"            "us"              
## [63823] "now"              "take"             "fish"            
## [63826] "anborn"           "went"             "gollum"          
## [63829] "went"             "cringing"         "curtain"         
## [63832] "drawn"            "across"           "recess"          
## [63835] "frodo"            "think"            "unwisely"        
## [63838] "said"             "faramir"          "think"           
## [63841] "go"               "creature"         "wicked"          
## [63844] "altogether"       "wicked"           "said"            
## [63847] "frodo"            "wholly"           "perhaps"         
## [63850] "said"             "faramir"          "malice"          
## [63853] "eats"             "like"             "canker"          
## [63856] "evil"             "growing"          "lead"            
## [63859] "good"             "part"             "give"            
## [63862] "safe"             "conduct"          "guidance"        
## [63865] "point"            "borders"          "gondor"          
## [63868] "may"              "name"             "take"            
## [63871] "said"             "frodo"            "follow"          
## [63874] "long"             "done"             "promised"        
## [63877] "many"             "times"            "take"            
## [63880] "protection"       "go"               "led"             
## [63883] "ask"              "break"            "faith"           
## [63886] "said"             "faramir"          "heart"           
## [63889] "seems"            "less"             "evil"            
## [63892] "counsel"          "another"          "man"             
## [63895] "break"            "troth"            "oneself"         
## [63898] "especially"       "one"              "sees"            
## [63901] "friend"           "bound"            "unwitting"       
## [63904] "harm"             "go"               "must"            
## [63907] "now"              "endure"           "think"           
## [63910] "holden"           "go"               "cirith"          
## [63913] "ungol"            "told"             "less"            
## [63916] "knows"            "much"             "perceived"       
## [63919] "clearly"          "mind"             "go"              
## [63922] "cirith"           "ungol"            "shall"           
## [63925] "go"               "said"             "frodo"           
## [63928] "back"             "black"            "gate"            
## [63931] "deliver"          "guard"            "know"            
## [63934] "place"            "makes"            "name"            
## [63937] "dreadful"         "nothing"          "certain"         
## [63940] "said"             "faramir"          "gondor"          
## [63943] "ever"             "pass"             "east"            
## [63946] "road"             "days"             "none"            
## [63949] "us"               "younger"          "men"             
## [63952] "ever"             "done"             "us"              
## [63955] "set"              "foot"             "upon"            
## [63958] "mountains"        "shadow"           "know"            
## [63961] "old"              "report"           "rumour"          
## [63964] "bygone"           "days"             "dark"            
## [63967] "terror"           "dwells"           "passes"          
## [63970] "minas"            "morgul"           "cirith"          
## [63973] "ungol"            "named"            "old"             
## [63976] "men"              "masters"          "lore"            
## [63979] "blanch"           "fall"             "silent"          
## [63982] "valley"           "minas"            "morgul"          
## [63985] "passed"           "evil"             "long"            
## [63988] "ago"              "menace"           "dread"           
## [63991] "banished"         "enemy"            "dwelt"           
## [63994] "yet"              "far"              "away"            
## [63997] "ithilien"         "still"            "part"            
## [64000] "keeping"          "know"             "city"            
## [64003] "strong"           "place"            "proud"           
## [64006] "fair"             "minas"            "ithil"           
## [64009] "twin"             "sister"           "city"            
## [64012] "taken"            "fell"             "men"             
## [64015] "enemy"            "first"            "strength"        
## [64018] "dominated"        "wandered"         "homeless"        
## [64021] "masterless"       "fall"             "said"            
## [64024] "lords"            "men"              "númenor"         
## [64027] "fallen"           "dark"             "wickedness"      
## [64030] "enemy"            "given"            "rings"           
## [64033] "power"            "devoured"         "living"          
## [64036] "ghosts"           "become"           "terrible"        
## [64039] "evil"             "going"            "took"            
## [64042] "minas"            "ithil"            "dwelt"           
## [64045] "filled"           "valley"           "decay"           
## [64048] "seemed"           "empty"            "shapeless"       
## [64051] "fear"             "lived"            "within"          
## [64054] "ruined"           "walls"            "nine"            
## [64057] "lords"            "return"           "master"          
## [64060] "aided"            "prepared"         "secret"          
## [64063] "grew"             "strong"           "nine"            
## [64066] "riders"           "issued"           "forth"           
## [64069] "gates"            "horror"           "withstand"       
## [64072] "approach"         "citadel"          "espied"          
## [64075] "place"            "sleepless"        "malice"          
## [64078] "full"             "lidless"          "eyes"            
## [64081] "go"               "way"              "else"            
## [64084] "direct"           "said"             "frodo"           
## [64087] "say"              "guide"            "mountains"       
## [64090] "mountains"        "bound"            "solemn"          
## [64093] "undertaking"      "council"          "find"            
## [64096] "way"              "perish"           "seeking"         
## [64099] "turn"             "back"             "refusing"        
## [64102] "road"             "bitter"           "end"             
## [64105] "shall"            "go"               "among"           
## [64108] "elves"            "men"              "come"            
## [64111] "gondor"           "thing"            "thing"           
## [64114] "drove"            "brother"          "mad"             
## [64117] "desire"           "spell"            "work"            
## [64120] "minas"            "tirith"           "shall"           
## [64123] "two"              "cities"           "minas"           
## [64126] "morgul"           "grinning"         "across"          
## [64129] "dead"             "land"             "filled"          
## [64132] "rottenness"       "said"             "faramir"         
## [64135] "know"             "go"               "death"           
## [64138] "torment"          "think"            "mithrandir"      
## [64141] "chosen"           "way"              "yet"             
## [64144] "since"            "gone"             "must"            
## [64147] "take"             "paths"            "can"             
## [64150] "find"             "time"             "long"            
## [64153] "searching"        "said"             "frodo"           
## [64156] "hard"             "doom"             "hopeless"        
## [64159] "errand"           "said"             "faramir"         
## [64162] "least"            "remember"         "warning"         
## [64165] "beware"           "guide"            "sméagol"         
## [64168] "done"             "murder"           "now"             
## [64171] "read"             "sighed"           "well"            
## [64174] "meet"             "part"             "frodo"           
## [64177] "son"              "drogo"            "need"            
## [64180] "soft"             "words"            "hope"            
## [64183] "see"              "day"              "sun"             
## [64186] "shall"            "go"               "now"             
## [64189] "blessing"         "upon"             "upon"            
## [64192] "people"           "rest"             "little"          
## [64195] "food"             "prepared"         "gladly"          
## [64198] "learn"            "creeping"         "sméagol"         
## [64201] "became"           "possessed"        "thing"           
## [64204] "speak"            "lost"             "trouble"         
## [64207] "now"              "ever"             "beyond"          
## [64210] "hope"             "return"           "lands"           
## [64213] "living"           "retell"           "tales"           
## [64216] "sitting"          "wall"             "sun"             
## [64219] "laughing"         "old"              "grief"           
## [64222] "shall"            "tell"             "time"            
## [64225] "time"             "beyond"           "vision"          
## [64228] "seeing"           "stones"           "númenor"         
## [64231] "farewell"         "rose"             "bowed"           
## [64234] "low"              "frodo"            "drawing"         
## [64237] "curtain"          "passed"           "cave"            
## [64240] "chapter"          "journey"          "cross"           
## [64243] "roads"            "frodo"            "sam"             
## [64246] "returned"         "beds"             "lay"             
## [64249] "silence"          "resting"          "little"          
## [64252] "men"              "bestirred"        "business"        
## [64255] "day"              "began"            "water"           
## [64258] "brought"          "led"              "table"           
## [64261] "food"             "set"              "three"           
## [64264] "faramir"          "broke"            "fast"            
## [64267] "slept"            "since"            "battle"          
## [64270] "day"              "yet"              "look"            
## [64273] "weary"            "finished"         "stood"           
## [64276] "may"              "hunger"           "trouble"         
## [64279] "road"             "said"             "faramir"         
## [64282] "little"           "provision"        "small"           
## [64285] "store"            "food"             "fit"             
## [64288] "travellers"       "ordered"          "stowed"          
## [64291] "packs"            "lack"             "water"           
## [64294] "walk"             "ithilien"         "drink"           
## [64297] "stream"           "flows"            "imlad"           
## [64300] "morgul"           "valley"           "living"          
## [64303] "death"            "also"             "must"            
## [64306] "tell"             "scouts"           "watchers"        
## [64309] "returned"         "even"             "crept"           
## [64312] "within"           "sight"            "morannon"        
## [64315] "find"             "strange"          "thing"           
## [64318] "land"             "empty"            "nothing"         
## [64321] "road"             "sound"            "foot"            
## [64324] "horn"             "bowstring"        "anywhere"        
## [64327] "heard"            "waiting"          "silence"         
## [64330] "broods"           "nameless"         "land"            
## [64333] "know"             "portends"         "time"            
## [64336] "draws"            "swiftly"          "great"           
## [64339] "conclusion"       "storm"            "coming"          
## [64342] "hasten"           "may"              "ready"           
## [64345] "let"              "us"               "go"              
## [64348] "sun"              "soon"             "rise"            
## [64351] "shadow"           "hobbits"          "packs"           
## [64354] "brought"          "little"           "heavier"         
## [64357] "also"             "two"              "stout"           
## [64360] "staves"           "polished"         "wood"            
## [64363] "shod"             "iron"             "carven"          
## [64366] "heads"            "ran"              "plaited"         
## [64369] "leathern"         "thongs"           "fitting"         
## [64372] "gifts"            "give"             "parting"         
## [64375] "said"             "faramir"          "take"            
## [64378] "staves"           "may"              "service"         
## [64381] "walk"             "climb"            "wild"            
## [64384] "men"              "white"            "mountains"       
## [64387] "use"              "though"           "cut"             
## [64390] "height"           "newly"            "shod"            
## [64393] "made"             "fair"             "tree"            
## [64396] "lebethron"        "beloved"          "woodwrights"     
## [64399] "gondor"           "virtue"           "set"             
## [64402] "upon"             "finding"          "returning"       
## [64405] "may"              "virtue"           "wholly"          
## [64408] "fail"             "shadow"           "go"              
## [64411] "hobbits"          "bowed"            "low"             
## [64414] "gracious"         "host"             "said"            
## [64417] "frodo"            "said"             "elrond"          
## [64420] "halfelven"        "find"             "friendship"      
## [64423] "upon"             "way"              "secret"          
## [64426] "unlooked"         "certainly"        "looked"          
## [64429] "friendship"       "shown"            "found"           
## [64432] "turns"            "evil"             "great"           
## [64435] "good"             "now"              "made"            
## [64438] "ready"            "depart"           "gollum"          
## [64441] "brought"          "corner"           "hiding"          
## [64444] "hole"             "seemed"           "better"          
## [64447] "pleased"          "though"           "kept"            
## [64450] "close"            "frodo"            "avoided"         
## [64453] "glance"           "faramir"          "guide"           
## [64456] "must"             "blindfolded"      "said"            
## [64459] "faramir"          "servant"          "samwise"         
## [64462] "release"          "wish"             "gollum"          
## [64465] "squealed"         "squirmed"         "clutched"        
## [64468] "frodo"            "came"             "bind"            
## [64471] "eyes"             "frodo"            "said"            
## [64474] "blindfold"        "us"               "three"           
## [64477] "cover"            "eyes"             "first"           
## [64480] "perhaps"          "see"              "harm"            
## [64483] "meant"            "done"             "led"             
## [64486] "cave"             "henneth"          "annûn"           
## [64489] "passed"           "passages"         "stairs"          
## [64492] "felt"             "cool"             "morning"         
## [64495] "air"              "fresh"            "sweet"           
## [64498] "still"            "blind"            "went"            
## [64501] "little"           "time"             "gently"          
## [64504] "last"             "voice"            "faramir"         
## [64507] "ordered"          "uncovered"        "stood"           
## [64510] "boughs"           "woods"            "noise"           
## [64513] "falls"            "heard"            "long"            
## [64516] "southward"        "slope"            "lay"             
## [64519] "now"              "ravine"           "stream"          
## [64522] "flowed"           "west"             "see"             
## [64525] "light"            "trees"            "world"           
## [64528] "came"             "sudden"           "end"             
## [64531] "brink"            "looking"          "sky"             
## [64534] "last"             "parting"          "ways"            
## [64537] "said"             "faramir"          "take"            
## [64540] "counsel"          "turn"             "eastward"        
## [64543] "yet"              "go"               "straight"        
## [64546] "thus"             "cover"            "woodland"        
## [64549] "many"             "miles"            "west"            
## [64552] "edge"             "land"             "falls"           
## [64555] "great"            "vales"            "sometimes"       
## [64558] "suddenly"         "sheer"            "sometimes"       
## [64561] "long"             "hillsides"        "keep"            
## [64564] "near"             "edge"             "skirts"          
## [64567] "forest"           "beginning"        "journey"         
## [64570] "may"              "walk"             "daylight"        
## [64573] "think"            "land"             "dreams"          
## [64576] "false"            "peace"            "evil"            
## [64579] "withdrawn"        "fare"             "well"            
## [64582] "may"              "embraced"         "hobbits"         
## [64585] "manner"           "people"           "stooping"        
## [64588] "placing"          "hands"            "upon"            
## [64591] "shoulders"        "kissing"          "foreheads"       
## [64594] "go"               "good"             "good"            
## [64597] "men"              "said"             "bowed"           
## [64600] "ground"           "turned"           "without"         
## [64603] "looking"          "back"             "left"            
## [64606] "went"             "two"              "guards"          
## [64609] "stood"            "little"           "distance"        
## [64612] "away"             "marvelled"        "see"             
## [64615] "speed"            "green"            "clad"            
## [64618] "men"              "now"              "moved"           
## [64621] "vanishing"        "almost"           "twinkling"       
## [64624] "eye"              "forest"           "faramir"         
## [64627] "stood"            "seemed"           "empty"           
## [64630] "drear"            "dream"            "passed"          
## [64633] "frodo"            "sighed"           "turned"          
## [64636] "back"             "southward"        "mark"            
## [64639] "disregard"        "courtesy"         "gollum"          
## [64642] "scrabbling"       "mould"            "foot"            
## [64645] "tree"             "hungry"           "already"         
## [64648] "thought"          "sam"              "well"            
## [64651] "now"              "gone"             "last"            
## [64654] "said"             "gollum"           "nassty"          
## [64657] "wicked"           "men"              "sméagols"        
## [64660] "neck"             "still"            "hurts"           
## [64663] "yes"              "lets"             "go"              
## [64666] "yes"              "let"              "us"              
## [64669] "go"               "said"             "frodo"           
## [64672] "can"              "speak"            "ill"             
## [64675] "showed"           "mercy"            "keep"            
## [64678] "silent"           "nice"             "master"          
## [64681] "said"             "gollum"           "sméagol"         
## [64684] "joking"           "always"           "forgives"        
## [64687] "yes"              "yes"              "even"            
## [64690] "nice"             "masters"          "little"          
## [64693] "trickses"         "oh"               "yes"             
## [64696] "nice"             "master"           "nice"            
## [64699] "sméagol"          "frodo"            "sam"             
## [64702] "answer"           "hoisting"         "packs"           
## [64705] "taking"           "staves"           "hand"            
## [64708] "passed"           "woods"            "ithilien"        
## [64711] "twice"            "day"              "rested"          
## [64714] "took"             "little"           "food"            
## [64717] "provided"         "faramir"          "dried"           
## [64720] "fruits"           "salted"           "meat"            
## [64723] "enough"           "many"             "days"            
## [64726] "bread"            "enough"           "last"            
## [64729] "still"            "fresh"            "gollum"          
## [64732] "ate"              "nothing"          "sun"             
## [64735] "rose"             "passed"           "overhead"        
## [64738] "unseen"           "began"            "sink"            
## [64741] "light"            "trees"            "west"            
## [64744] "grew"             "golden"           "always"          
## [64747] "walked"           "cool"             "green"           
## [64750] "shadow"           "silence"          "birds"           
## [64753] "seemed"           "flown"            "away"            
## [64756] "fallen"           "dumb"             "darkness"        
## [64759] "came"             "early"            "silent"          
## [64762] "woods"            "fall"             "night"           
## [64765] "halted"           "weary"            "walked"          
## [64768] "seven"            "leagues"          "henneth"         
## [64771] "annûn"            "frodo"            "lay"             
## [64774] "slept"            "away"             "night"           
## [64777] "deep"             "mould"            "beneath"         
## [64780] "ancient"          "tree"             "sam"             
## [64783] "beside"           "uneasy"           "woke"            
## [64786] "many"             "times"            "never"           
## [64789] "sign"             "gollum"           "slipped"         
## [64792] "soon"             "others"           "settled"         
## [64795] "rest"             "whether"          "slept"           
## [64798] "hole"             "nearby"           "wandered"        
## [64801] "restlessly"       "prowling"         "night"           
## [64804] "say"              "returned"         "first"           
## [64807] "glimmer"          "light"            "roused"          
## [64810] "companions"       "must"             "get"             
## [64813] "yes"              "must"             "said"            
## [64816] "long"             "ways"             "go"              
## [64819] "still"            "south"            "east"            
## [64822] "hobbits"          "must"             "make"            
## [64825] "haste"            "day"              "passed"          
## [64828] "much"             "day"              "gone"            
## [64831] "except"           "silence"          "seemed"          
## [64834] "deeper"           "air"              "grew"            
## [64837] "heavy"            "began"            "stifling"        
## [64840] "trees"            "felt"             "thunder"         
## [64843] "brewing"          "gollum"           "often"           
## [64846] "paused"           "sniffing"         "air"             
## [64849] "mutter"           "urge"             "greater"         
## [64852] "speed"            "third"            "stage"           
## [64855] "days"             "march"            "drew"            
## [64858] "afternoon"        "waned"            "forest"          
## [64861] "opened"           "trees"            "became"          
## [64864] "larger"           "scattered"        "great"           
## [64867] "ilexes"           "huge"             "girth"           
## [64870] "stood"            "dark"             "solemn"          
## [64873] "wide"             "glades"           "among"           
## [64876] "hoary"            "ash"              "trees"           
## [64879] "giant"            "oaks"             "just"            
## [64882] "putting"          "brown"            "green"           
## [64885] "buds"             "lay"              "long"            
## [64888] "launds"           "green"            "grass"           
## [64891] "dappled"          "celandine"        "anemones"        
## [64894] "white"            "blue"             "now"             
## [64897] "folded"           "sleep"            "acres"           
## [64900] "populous"         "leaves"           "woodland"        
## [64903] "hyacinths"        "already"          "sleek"           
## [64906] "bell"             "stems"            "thrusting"       
## [64909] "mould"            "living"           "creature"        
## [64912] "beast"            "bird"             "seen"            
## [64915] "open"             "places"           "gollum"          
## [64918] "grew"             "afraid"           "walked"          
## [64921] "now"              "caution"          "flitting"        
## [64924] "one"              "long"             "shadow"          
## [64927] "another"          "light"            "fading"          
## [64930] "fast"             "came"             "forest"          
## [64933] "end"              "sat"              "old"             
## [64936] "gnarled"          "oak"              "sent"            
## [64939] "roots"            "twisting"         "like"            
## [64942] "snakes"           "steep"            "crumbling"       
## [64945] "bank"             "deep"             "dim"             
## [64948] "valley"           "lay"              "side"            
## [64951] "woods"            "gathered"         "blue"            
## [64954] "grey"             "sullen"           "evening"         
## [64957] "marched"          "southwards"       "right"           
## [64960] "mountains"        "gondor"           "glowed"          
## [64963] "remote"           "west"             "fire"            
## [64966] "flecked"          "sky"              "left"            
## [64969] "lay"              "darkness"         "towering"        
## [64972] "walls"            "mordor"           "darkness"        
## [64975] "long"             "valley"           "came"            
## [64978] "falling"          "steeply"          "ever"            
## [64981] "widening"         "trough"           "towards"         
## [64984] "anduin"           "bottom"           "ran"             
## [64987] "hurrying"         "stream"           "frodo"           
## [64990] "hear"             "stony"            "voice"           
## [64993] "coming"           "silence"          "beside"          
## [64996] "hither"           "side"             "road"            
## [64999] "went"             "winding"          "like"            
## [65002] "pale"             "ribbon"           "chill"           
## [65005] "grey"             "mists"            "gleam"           
## [65008] "sunset"           "touched"          "seemed"          
## [65011] "frodo"            "descried"         "far"             
## [65014] "floating"         "shadowy"          "sea"             
## [65017] "high"             "dim"              "tops"            
## [65020] "broken"           "pinnacles"        "old"             
## [65023] "towers"           "forlorn"          "dark"            
## [65026] "turned"           "gollum"           "know"            
## [65029] "said"             "yes"              "master"          
## [65032] "dangerous"        "places"           "road"            
## [65035] "tower"            "moon"             "master"          
## [65038] "ruined"           "city"             "shores"          
## [65041] "river"            "ruined"           "city"            
## [65044] "yes"              "nasty"            "place"           
## [65047] "full"             "enemies"          "shouldnt"        
## [65050] "taken"            "mens"             "advice"          
## [65053] "hobbits"          "come"             "long"            
## [65056] "way"              "path"             "must"            
## [65059] "go"               "east"             "now"             
## [65062] "away"             "waved"            "skinny"          
## [65065] "arm"              "towards"          "darkling"        
## [65068] "mountains"        "cant"             "use"             
## [65071] "road"             "oh"               "cruel"           
## [65074] "peoples"          "come"             "way"             
## [65077] "tower"            "frodo"            "looked"          
## [65080] "road"             "rate"             "nothing"         
## [65083] "moving"           "now"              "appeared"        
## [65086] "lonely"           "forsaken"         "running"         
## [65089] "empty"            "ruins"            "mist"            
## [65092] "evil"             "feeling"          "air"             
## [65095] "things"           "might"            "indeed"          
## [65098] "passing"          "eyes"             "see"             
## [65101] "frodo"            "shuddered"        "looked"          
## [65104] "distant"          "pinnacles"        "now"             
## [65107] "dwindling"        "night"            "sound"           
## [65110] "water"            "seemed"           "cold"            
## [65113] "cruel"            "voice"            "morgulduin"      
## [65116] "polluted"         "stream"           "flowed"          
## [65119] "valley"           "wraiths"          "shall"           
## [65122] "said"             "walked"           "long"            
## [65125] "far"              "shall"            "look"            
## [65128] "place"            "woods"            "behind"          
## [65131] "can"              "lie"              "hidden"          
## [65134] "good"             "hiding"           "dark"            
## [65137] "said"             "gollum"           "day"             
## [65140] "hobbits"          "must"             "hide"            
## [65143] "now"              "yes"              "day"             
## [65146] "oh"               "come"             "said"            
## [65149] "sam"              "must"             "rest"            
## [65152] "bit"              "even"             "get"             
## [65155] "middle"           "night"            "therell"         
## [65158] "still"            "hours"            "dark"            
## [65161] "time"             "enough"           "take"            
## [65164] "us"               "long"             "march"           
## [65167] "know"             "way"              "gollum"          
## [65170] "reluctantly"      "agreed"           "turned"          
## [65173] "back"             "towards"          "trees"           
## [65176] "working"          "eastward"         "along"           
## [65179] "straggling"       "edges"            "wood"            
## [65182] "rest"             "ground"           "near"            
## [65185] "evil"             "road"             "debate"          
## [65188] "climbed"          "crotch"           "large"           
## [65191] "holm"             "oak"              "whose"           
## [65194] "thick"            "branches"         "springing"       
## [65197] "together"         "trunk"            "made"            
## [65200] "good"             "hiding"           "place"           
## [65203] "fairly"           "comfortable"      "refuge"          
## [65206] "night"            "fell"             "grew"            
## [65209] "altogether"       "dark"             "canopy"          
## [65212] "tree"             "frodo"            "sam"             
## [65215] "drank"            "little"           "water"           
## [65218] "ate"              "bread"            "dried"           
## [65221] "fruit"            "gollum"           "curled"          
## [65224] "went"             "sleep"            "hobbits"         
## [65227] "shut"             "eyes"             "must"            
## [65230] "little"           "midnight"         "gollum"          
## [65233] "woke"             "suddenly"         "aware"           
## [65236] "pale"             "eyes"             "unlidded"        
## [65239] "gleaming"         "listened"         "sniffed"         
## [65242] "seemed"           "noticed"          "usual"           
## [65245] "method"           "discovering"      "time"            
## [65248] "night"            "rested"           "beautiful"       
## [65251] "sleep"            "said"             "lets"            
## [65254] "go"               "arent"            "havent"          
## [65257] "growled"          "sam"              "well"            
## [65260] "go"               "must"             "gollum"          
## [65263] "dropped"          "branches"         "tree"            
## [65266] "fours"            "hobbits"          "followed"        
## [65269] "slowly"           "soon"             "went"            
## [65272] "gollum"           "leading"          "eastwards"       
## [65275] "dark"             "sloping"          "land"            
## [65278] "see"              "little"           "night"           
## [65281] "now"              "deep"             "hardly"          
## [65284] "aware"            "stems"            "trees"           
## [65287] "stumbled"         "ground"           "became"          
## [65290] "broken"           "walking"          "difficult"       
## [65293] "gollum"           "seemed"           "way"             
## [65296] "troubled"         "led"              "thickets"        
## [65299] "wastes"           "brambles"         "sometimes"       
## [65302] "round"            "lip"              "deep"            
## [65305] "cleft"            "dark"             "pit"             
## [65308] "sometimes"        "black"            "bush"            
## [65311] "shrouded"         "hollows"          "ever"            
## [65314] "went"             "little"           "downward"        
## [65317] "always"           "slope"            "longer"          
## [65320] "steeper"          "climbing"         "steadily"        
## [65323] "first"            "halt"             "looked"          
## [65326] "back"             "dimly"            "perceive"        
## [65329] "roofs"            "forest"           "left"            
## [65332] "behind"           "lying"            "like"            
## [65335] "vast"             "dense"            "shadow"          
## [65338] "darker"           "night"            "dark"            
## [65341] "blank"            "sky"              "seemed"          
## [65344] "great"            "blackness"        "looming"         
## [65347] "slowly"           "east"             "eating"          
## [65350] "faint"            "blurred"          "stars"           
## [65353] "later"            "sinking"          "moon"            
## [65356] "escaped"          "pursuing"         "cloud"           
## [65359] "ringed"           "sickly"           "yellow"          
## [65362] "glare"            "last"             "gollum"          
## [65365] "turned"           "hobbits"          "day"             
## [65368] "soon"             "said"             "hobbits"         
## [65371] "must"             "hurry"            "safe"            
## [65374] "stay"             "open"             "places"          
## [65377] "make"             "haste"            "quickened"       
## [65380] "pace"             "followed"         "wearily"         
## [65383] "soon"             "began"            "climb"           
## [65386] "great"            "hog"              "back"            
## [65389] "land"             "part"             "covered"         
## [65392] "thick"            "growth"           "gorse"           
## [65395] "whortleberry"     "low"              "tough"           
## [65398] "thorns"           "though"           "clearings"       
## [65401] "opened"           "scars"            "recent"          
## [65404] "fires"            "gorse"            "bushes"          
## [65407] "became"           "frequent"         "got"             
## [65410] "nearer"           "top"              "old"             
## [65413] "tall"             "gaunt"            "leggy"           
## [65416] "thick"            "already"          "putting"         
## [65419] "yellow"           "flowers"          "glimmered"       
## [65422] "gloom"            "gave"             "faint"           
## [65425] "sweet"            "scent"            "tall"            
## [65428] "spiny"            "thickets"         "hobbits"         
## [65431] "walk"             "upright"          "passing"         
## [65434] "long"             "dry"              "aisles"          
## [65437] "carpeted"         "deep"             "prickly"         
## [65440] "mould"            "edge"             "broad"           
## [65443] "hill"             "back"             "stayed"          
## [65446] "march"            "crawled"          "hiding"          
## [65449] "underneath"       "tangled"          "knot"            
## [65452] "thorns"           "twisted"          "boughs"          
## [65455] "stooping"         "ground"           "overridden"      
## [65458] "clambering"       "maze"             "old"             
## [65461] "briars"           "deep"             "inside"          
## [65464] "hollow"           "hall"             "raftered"        
## [65467] "dead"             "branch"           "bramble"         
## [65470] "roofed"           "first"            "leaves"          
## [65473] "shoots"           "spring"           "lay"             
## [65476] "tired"            "yet"              "eat"             
## [65479] "peering"          "holes"            "covert"          
## [65482] "watched"          "slow"             "growth"          
## [65485] "day"              "day"              "came"            
## [65488] "dead"             "brown"            "twilight"        
## [65491] "east"             "dull"             "red"             
## [65494] "glare"            "lowering"         "cloud"           
## [65497] "red"              "dawn"             "across"          
## [65500] "tumbled"          "lands"            "mountains"       
## [65503] "ephel"            "dúath"            "frowned"         
## [65506] "black"            "shapeless"        "night"           
## [65509] "lay"              "thick"            "pass"            
## [65512] "away"             "jagged"           "tops"            
## [65515] "edges"            "outlined"         "hard"            
## [65518] "menacing"         "fiery"            "glow"            
## [65521] "away"             "right"            "great"           
## [65524] "shoulder"         "mountains"        "stood"           
## [65527] "dark"             "black"            "amid"            
## [65530] "shadows"          "thrusting"        "westward"        
## [65533] "way"              "go"               "asked"           
## [65536] "frodo"            "opening"          "morgul"          
## [65539] "valley"           "away"             "beyond"          
## [65542] "black"            "mass"             "need"            
## [65545] "think"            "yet"              "said"            
## [65548] "sam"              "surely"           "going"           
## [65551] "move"             "today"            "day"             
## [65554] "perhaps"          "perhaps"          "said"            
## [65557] "gollum"           "must"             "go"              
## [65560] "soon"             "cross"            "roads"           
## [65563] "yes"              "cross"            "roads"           
## [65566] "thats"            "way"              "yes"             
## [65569] "master"           "red"              "glare"           
## [65572] "mordor"           "died"             "away"            
## [65575] "twilight"         "deepened"         "great"           
## [65578] "vapours"          "rose"             "east"            
## [65581] "crawled"          "frodo"            "sam"             
## [65584] "took"             "little"           "food"            
## [65587] "lay"              "gollum"           "restless"        
## [65590] "eat"              "food"             "drank"           
## [65593] "little"           "water"            "crawled"         
## [65596] "bushes"           "sniffing"         "muttering"       
## [65599] "suddenly"         "disappeared"      "hunting"         
## [65602] "suppose"          "said"             "sam"             
## [65605] "yawned"           "turn"             "sleep"           
## [65608] "first"            "soon"             "deep"            
## [65611] "dream"            "thought"          "back"            
## [65614] "bag"              "end"              "garden"          
## [65617] "looking"          "something"        "heavy"           
## [65620] "pack"             "back"             "made"            
## [65623] "stoop"            "seemed"           "weedy"           
## [65626] "rank"             "somehow"          "thorns"          
## [65629] "bracken"          "invading"         "beds"            
## [65632] "near"             "bottom"           "hedge"           
## [65635] "job"              "work"             "can"             
## [65638] "see"              "im"               "tired"           
## [65641] "kept"             "saying"           "presently"       
## [65644] "remembered"       "looking"          "pipe"            
## [65647] "said"             "woke"             "silly"           
## [65650] "said"             "opened"           "eyes"            
## [65653] "wondered"         "lying"            "hedge"           
## [65656] "pack"             "time"             "realized"        
## [65659] "first"            "pipe"             "might"           
## [65662] "pack"             "leaf"             "next"            
## [65665] "hundreds"         "miles"            "bag"             
## [65668] "end"              "sat"              "seemed"          
## [65671] "almost"           "dark"             "master"          
## [65674] "let"              "sleep"            "turn"            
## [65677] "right"            "till"             "evening"         
## [65680] "havent"           "sleep"            "mr"              
## [65683] "frodo"            "said"             "whats"           
## [65686] "time"             "seems"            "getting"         
## [65689] "late"             "isnt"             "said"            
## [65692] "frodo"            "day"              "getting"         
## [65695] "darker"           "instead"          "lighter"         
## [65698] "darker"           "darker"           "far"             
## [65701] "can"              "tell"             "isnt"            
## [65704] "midday"           "yet"              "youve"           
## [65707] "slept"            "three"            "hours"           
## [65710] "wonder"           "whats"            "said"            
## [65713] "sam"              "storm"            "coming"          
## [65716] "going"            "worst"            "ever"            
## [65719] "shall"            "wish"             "deep"            
## [65722] "hole"             "just"             "stuck"           
## [65725] "hedge"            "listened"         "whats"           
## [65728] "thunder"          "drums"            "dont"            
## [65731] "know"             "said"             "frodo"           
## [65734] "going"            "good"             "now"             
## [65737] "sometimes"        "ground"           "seems"           
## [65740] "tremble"          "sometimes"        "seems"           
## [65743] "heavy"            "air"              "throbbing"       
## [65746] "ears"             "sam"              "looked"          
## [65749] "round"            "wheres"           "gollum"          
## [65752] "said"             "hasnt"            "come"            
## [65755] "back"             "yet"              "said"            
## [65758] "frodo"            "theres"           "sign"            
## [65761] "sound"            "well"             "cant"            
## [65764] "abide"            "said"             "sam"             
## [65767] "fact"             "ive"              "never"           
## [65770] "taken"            "anything"         "journey"         
## [65773] "id"               "less"             "sorry"           
## [65776] "lose"             "way"              "just"            
## [65779] "like"             "coming"           "miles"           
## [65782] "go"               "get"              "lost"            
## [65785] "now"              "just"             "shall"           
## [65788] "need"             "hes"              "ever"            
## [65791] "going"            "use"              "doubt"           
## [65794] "forget"           "marshes"          "said"            
## [65797] "frodo"            "hope"             "nothing"         
## [65800] "happened"         "hope"             "hes"             
## [65803] "tricks"           "anyway"           "hope"            
## [65806] "doesnt"           "fall"             "hands"           
## [65809] "might"            "say"              "shall"           
## [65812] "soon"             "trouble"          "moment"          
## [65815] "rolling"          "rumbling"         "noise"           
## [65818] "heard"            "louder"           "now"             
## [65821] "deeper"           "ground"           "seemed"          
## [65824] "quiver"           "feet"             "think"           
## [65827] "trouble"          "anyhow"           "said"            
## [65830] "frodo"            "im"               "afraid"          
## [65833] "journey"          "drawing"          "end"             
## [65836] "maybe"            "said"             "sam"             
## [65839] "theres"           "life"             "theres"          
## [65842] "hope"             "gaffer"           "used"            
## [65845] "say"              "need"             "vittles"         
## [65848] "mostways"         "used"             "add"             
## [65851] "bite"             "mr"               "frodo"           
## [65854] "bit"              "sleep"            "afternoon"       
## [65857] "sam"              "supposed"         "must"            
## [65860] "called"           "wore"             "looking"         
## [65863] "covert"           "see"              "dun"             
## [65866] "shadowless"       "world"            "fading"          
## [65869] "slowly"           "featureless"      "colourless"      
## [65872] "gloom"            "felt"             "stifling"        
## [65875] "warm"             "frodo"            "slept"           
## [65878] "unquietly"        "turning"          "tossing"         
## [65881] "sometimes"        "murmuring"        "twice"           
## [65884] "sam"              "thought"          "heard"           
## [65887] "speaking"         "gandalfs"         "name"            
## [65890] "time"             "seemed"           "drag"            
## [65893] "interminably"     "suddenly"         "sam"             
## [65896] "heard"            "hiss"             "behind"          
## [65899] "gollum"           "fours"            "peering"         
## [65902] "gleaming"         "eyes"             "wake"            
## [65905] "wake"             "wake"             "sleepies"        
## [65908] "whispered"        "wake"             "time"            
## [65911] "lose"             "must"             "go"              
## [65914] "yes"              "must"             "go"              
## [65917] "time"             "lose"             "sam"             
## [65920] "stared"           "suspiciously"     "seemed"          
## [65923] "frightened"       "excited"          "go"              
## [65926] "now"              "whats"            "little"          
## [65929] "game"             "isnt"             "time"            
## [65932] "yet"              "cant"             "tea"             
## [65935] "time"             "even"             "leastways"       
## [65938] "decent"           "places"           "tea"             
## [65941] "time"             "silly"            "hissed"          
## [65944] "gollum"           "decent"           "places"          
## [65947] "times"            "running"          "short"           
## [65950] "yes"              "running"          "fast"            
## [65953] "time"             "lose"             "must"            
## [65956] "go"               "wake"             "master"          
## [65959] "wake"             "clawed"           "frodo"           
## [65962] "frodo"            "startled"         "sleep"           
## [65965] "sat"              "suddenly"         "seized"          
## [65968] "arm"              "gollum"           "tore"            
## [65971] "loose"            "backed"           "away"            
## [65974] "mustnt"           "silly"            "hissed"          
## [65977] "must"             "go"               "time"            
## [65980] "lose"             "nothing"          "get"             
## [65983] "thought"          "brewing"          "make"            
## [65986] "hurry"            "say"              "sam"             
## [65989] "filled"           "deep"             "suspicion"       
## [65992] "showed"           "frodo"            "gave"            
## [65995] "sign"             "passing"          "mind"            
## [65998] "sighed"           "hoisted"          "pack"            
## [66001] "prepared"         "go"               "ever"            
## [66004] "gathering"        "darkness"         "stealthily"      
## [66007] "gollum"           "led"              "hillside"        
## [66010] "keeping"          "cover"            "wherever"        
## [66013] "possible"         "running"          "almost"          
## [66016] "bent"             "ground"           "across"          
## [66019] "open"             "space"            "light"           
## [66022] "now"              "dim"              "even"            
## [66025] "keen"             "eyed"             "beast"           
## [66028] "wild"             "scarcely"         "seen"            
## [66031] "hobbits"          "hooded"           "grey"            
## [66034] "cloaks"           "heard"            "walking"         
## [66037] "warily"           "little"           "people"          
## [66040] "can"              "without"          "crack"           
## [66043] "twig"             "rustle"           "leaf"            
## [66046] "passed"           "vanished"         "hour"            
## [66049] "went"             "silently"         "single"          
## [66052] "file"             "oppressed"        "gloom"           
## [66055] "absolute"         "stillness"        "land"            
## [66058] "broken"           "now"              "faint"           
## [66061] "rumbling"         "thunder"          "far"             
## [66064] "away"             "drum"             "beats"           
## [66067] "hollow"           "hills"            "hiding"          
## [66070] "place"            "went"             "turning"         
## [66073] "south"            "steered"          "straight"        
## [66076] "course"           "gollum"           "find"            
## [66079] "across"           "long"             "broken"          
## [66082] "slope"            "leaned"           "towards"         
## [66085] "mountains"        "presently"        "far"             
## [66088] "ahead"            "looming"          "like"            
## [66091] "black"            "wall"             "saw"             
## [66094] "belt"             "trees"            "drew"            
## [66097] "nearer"           "became"           "aware"           
## [66100] "vast"             "size"             "ancient"         
## [66103] "seemed"           "still"            "towering"        
## [66106] "high"             "though"           "tops"            
## [66109] "gaunt"            "broken"           "tempest"         
## [66112] "lightning"        "blast"            "swept"           
## [66115] "across"           "failed"           "kill"            
## [66118] "shake"            "fathomless"       "roots"           
## [66121] "cross"            "roads"            "yes"             
## [66124] "whispered"        "gollum"           "first"           
## [66127] "words"            "spoken"           "since"           
## [66130] "left"             "hiding"           "place"           
## [66133] "must"             "go"               "way"             
## [66136] "turning"          "eastward"         "now"             
## [66139] "led"              "slope"            "suddenly"        
## [66142] "southward"        "road"             "winding"         
## [66145] "way"              "outer"            "feet"            
## [66148] "mountains"        "presently"        "plunged"         
## [66151] "great"            "ring"             "trees"           
## [66154] "way"              "whispered"        "gollum"          
## [66157] "paths"            "beyond"           "road"            
## [66160] "paths"            "must"             "go"              
## [66163] "cross"            "roads"            "make"            
## [66166] "haste"            "silent"           "furtively"       
## [66169] "scouts"           "within"           "campment"        
## [66172] "enemies"          "crept"            "road"            
## [66175] "stole"            "along"            "westward"        
## [66178] "edge"             "stony"            "bank"            
## [66181] "grey"             "stones"           "soft"            
## [66184] "footed"           "hunting"          "cats"            
## [66187] "length"           "reached"          "trees"           
## [66190] "found"            "stood"            "great"           
## [66193] "roofless"         "ring"             "open"            
## [66196] "middle"           "sombre"           "sky"             
## [66199] "spaces"           "immense"          "boles"           
## [66202] "like"             "great"            "dark"            
## [66205] "arches"           "ruined"           "hall"            
## [66208] "centre"           "four"             "ways"            
## [66211] "met"              "behind"           "lay"             
## [66214] "road"             "morannon"         "ran"             
## [66217] "upon"             "long"             "journey"         
## [66220] "south"            "right"            "road"            
## [66223] "old"              "osgiliath"        "came"            
## [66226] "climbing"         "crossing"         "passed"          
## [66229] "eastward"         "darkness"         "fourth"          
## [66232] "way"              "road"             "take"            
## [66235] "standing"         "moment"           "filled"          
## [66238] "dread"            "frodo"            "became"          
## [66241] "aware"            "light"            "shining"         
## [66244] "saw"              "glowing"          "sams"            
## [66247] "face"             "beside"           "turning"         
## [66250] "towards"          "saw"              "beyond"          
## [66253] "arch"             "boughs"           "road"            
## [66256] "osgiliath"        "running"          "almost"          
## [66259] "straight"         "stretched"        "ribbon"          
## [66262] "west"             "far"              "away"            
## [66265] "beyond"           "sad"              "gondor"          
## [66268] "now"              "overwhelmed"      "shade"           
## [66271] "sun"              "sinking"          "finding"         
## [66274] "last"             "hem"              "great"           
## [66277] "slow"             "rolling"          "pall"            
## [66280] "cloud"            "falling"          "ominous"         
## [66283] "fire"             "towards"          "yet"             
## [66286] "unsullied"        "sea"              "brief"           
## [66289] "glow"             "fell"             "upon"            
## [66292] "huge"             "sitting"          "figure"          
## [66295] "still"            "solemn"           "great"           
## [66298] "stone"            "kings"            "argonath"        
## [66301] "years"            "gnawed"           "violent"         
## [66304] "hands"            "maimed"           "head"            
## [66307] "gone"             "place"            "set"             
## [66310] "mockery"          "round"            "rough"           
## [66313] "hewn"             "stone"            "rudely"          
## [66316] "painted"          "savage"           "hands"           
## [66319] "likeness"         "grinning"         "face"            
## [66322] "one"              "large"            "red"             
## [66325] "eye"              "midst"            "forehead"        
## [66328] "upon"             "knees"            "mighty"          
## [66331] "chair"            "pedestal"         "idle"            
## [66334] "scrawls"          "mixed"            "foul"            
## [66337] "symbols"          "maggot"           "folk"            
## [66340] "mordor"           "used"             "suddenly"        
## [66343] "caught"           "level"            "beams"           
## [66346] "frodo"            "saw"              "old"             
## [66349] "kings"            "head"             "lying"           
## [66352] "rolled"           "away"             "roadside"        
## [66355] "look"             "sam"              "cried"           
## [66358] "startled"         "speech"           "look"            
## [66361] "king"             "got"              "crown"           
## [66364] "eyes"             "hollow"           "carven"          
## [66367] "beard"            "broken"           "high"            
## [66370] "stern"            "forehead"         "coronal"         
## [66373] "silver"           "gold"             "trailing"        
## [66376] "plant"            "flowers"          "like"            
## [66379] "small"            "white"            "stars"           
## [66382] "bound"            "across"           "brows"           
## [66385] "reverence"        "fallen"           "king"            
## [66388] "crevices"         "stony"            "hair"            
## [66391] "yellow"           "stonecrop"        "gleamed"         
## [66394] "conquer"          "ever"             "said"            
## [66397] "frodo"            "suddenly"         "brief"           
## [66400] "glimpse"          "gone"             "sun"             
## [66403] "dipped"           "vanished"         "shuttering"      
## [66406] "lamp"             "black"            "night"           
## [66409] "fell"             "chapter"          "stairs"          
## [66412] "cirith"           "ungol"            "gollum"          
## [66415] "tugging"          "frodos"           "cloak"           
## [66418] "hissing"          "fear"             "impatience"      
## [66421] "must"             "go"               "said"            
## [66424] "mustnt"           "stand"            "make"            
## [66427] "haste"            "reluctantly"      "frodo"           
## [66430] "turned"           "back"             "west"            
## [66433] "followed"         "guide"            "led"             
## [66436] "darkness"         "east"             "left"            
## [66439] "ring"             "trees"            "crept"           
## [66442] "along"            "road"             "towards"         
## [66445] "mountains"        "road"             "ran"             
## [66448] "straight"         "soon"             "began"           
## [66451] "bend"             "away"             "southwards"      
## [66454] "came"             "right"            "great"           
## [66457] "shoulder"         "rock"             "seen"            
## [66460] "distance"         "black"            "forbidding"      
## [66463] "loomed"           "darker"           "dark"            
## [66466] "sky"              "behind"           "crawling"        
## [66469] "shadow"           "road"             "went"            
## [66472] "rounding"         "sprang"           "east"            
## [66475] "began"            "climb"            "steeply"         
## [66478] "frodo"            "sam"              "plodding"        
## [66481] "along"            "heavy"            "hearts"          
## [66484] "longer"           "able"             "care"            
## [66487] "greatly"          "peril"            "frodos"          
## [66490] "head"             "bowed"            "burden"          
## [66493] "dragging"         "soon"             "great"           
## [66496] "cross"            "roads"            "passed"          
## [66499] "weight"           "almost"           "forgotten"       
## [66502] "ithilien"         "begun"            "grow"            
## [66505] "now"              "feeling"          "way"             
## [66508] "become"           "steep"            "feet"            
## [66511] "looked"           "wearily"          "saw"             
## [66514] "even"             "gollum"           "said"            
## [66517] "city"             "ringwraiths"      "cowered"         
## [66520] "stony"            "bank"             "long"            
## [66523] "tilted"           "valley"           "deep"            
## [66526] "gulf"             "shadow"           "ran"             
## [66529] "back"             "far"              "mountains"       
## [66532] "upon"             "side"             "way"             
## [66535] "within"           "valleys"          "arms"            
## [66538] "high"             "rocky"            "seat"            
## [66541] "upon"             "black"            "knees"           
## [66544] "ephel"            "dúath"            "stood"           
## [66547] "walls"            "tower"            "minas"           
## [66550] "morgul"           "dark"             "earth"           
## [66553] "sky"              "lit"              "light"           
## [66556] "imprisoned"       "moonlight"        "welling"         
## [66559] "marble"           "walls"            "minas"           
## [66562] "ithil"            "long"             "ago"             
## [66565] "tower"            "moon"             "fair"            
## [66568] "radiant"          "hollow"           "hills"           
## [66571] "paler"            "indeed"           "moon"            
## [66574] "ailing"           "slow"             "eclipse"         
## [66577] "light"            "now"              "wavering"        
## [66580] "blowing"          "like"             "noisome"         
## [66583] "exhalation"       "decay"            "corpse"          
## [66586] "light"            "light"            "illuminated"     
## [66589] "nothing"          "walls"            "tower"           
## [66592] "windows"          "showed"           "like"            
## [66595] "countless"        "black"            "holes"           
## [66598] "looking"          "inward"           "emptiness"       
## [66601] "topmost"          "course"           "tower"           
## [66604] "revolved"         "slowly"           "first"           
## [66607] "one"              "way"              "another"         
## [66610] "huge"             "ghostly"          "head"            
## [66613] "leering"          "night"            "moment"          
## [66616] "three"            "companions"       "stood"           
## [66619] "shrinking"        "staring"          "unwilling"       
## [66622] "eyes"             "gollum"           "first"           
## [66625] "recover"          "pulled"           "cloaks"          
## [66628] "urgently"         "spoke"            "word"            
## [66631] "almost"           "dragged"          "forward"         
## [66634] "every"            "step"             "reluctant"       
## [66637] "time"             "seemed"           "slow"            
## [66640] "pace"             "raising"          "foot"            
## [66643] "setting"          "minutes"          "loathing"        
## [66646] "passed"           "came"             "slowly"          
## [66649] "white"            "bridge"           "road"            
## [66652] "gleaming"         "faintly"          "passed"          
## [66655] "stream"           "midst"            "valley"          
## [66658] "went"             "winding"          "deviously"       
## [66661] "towards"          "citys"            "gate"            
## [66664] "black"            "mouth"            "opening"         
## [66667] "outer"            "circle"           "northward"       
## [66670] "walls"            "wide"             "flats"           
## [66673] "lay"              "either"           "bank"            
## [66676] "shadowy"          "meads"            "filled"          
## [66679] "pale"             "white"            "flowers"         
## [66682] "luminous"         "beautiful"        "yet"             
## [66685] "horrible"         "shape"            "like"            
## [66688] "demented"         "forms"            "uneasy"          
## [66691] "dream"            "gave"             "forth"           
## [66694] "faint"            "sickening"        "charnel"         
## [66697] "smell"            "odour"            "rottenness"      
## [66700] "filled"           "air"              "mead"            
## [66703] "mead"             "bridge"           "sprang"          
## [66706] "figures"          "stood"            "head"            
## [66709] "carven"           "cunning"          "forms"           
## [66712] "human"            "bestial"          "corrupt"         
## [66715] "loathsome"        "water"            "flowing"         
## [66718] "beneath"          "silent"           "steamed"         
## [66721] "vapour"           "rose"             "curling"         
## [66724] "twisting"         "bridge"           "deadly"          
## [66727] "cold"             "frodo"            "felt"            
## [66730] "senses"           "reeling"          "mind"            
## [66733] "darkening"        "suddenly"         "force"           
## [66736] "work"             "began"            "hurry"           
## [66739] "tottering"        "forward"          "groping"         
## [66742] "hands"            "held"             "head"            
## [66745] "lolling"          "side"             "side"            
## [66748] "sam"              "gollum"           "ran"             
## [66751] "sam"              "caught"           "master"          
## [66754] "arms"             "stumbled"         "almost"          
## [66757] "fell"             "right"            "threshold"       
## [66760] "bridge"           "way"              "way"             
## [66763] "whispered"        "gollum"           "breath"          
## [66766] "teeth"            "seemed"           "tear"            
## [66769] "heavy"            "stillness"        "like"            
## [66772] "whistle"          "cowered"          "ground"          
## [66775] "terror"           "hold"             "mr"              
## [66778] "frodo"            "muttered"         "sam"             
## [66781] "frodos"           "ear"              "come"            
## [66784] "back"             "way"              "gollum"          
## [66787] "says"             "agree"            "frodo"           
## [66790] "passed"           "hand"             "brow"            
## [66793] "wrenched"         "eyes"             "away"            
## [66796] "city"             "hill"             "luminous"        
## [66799] "tower"            "fascinated"       "fought"          
## [66802] "desire"           "run"              "gleaming"        
## [66805] "road"             "towards"          "gate"            
## [66808] "last"             "effort"           "turned"          
## [66811] "back"             "felt"             "ring"            
## [66814] "resisting"        "dragging"         "chain"           
## [66817] "neck"             "eyes"             "looked"          
## [66820] "away"             "seemed"           "moment"          
## [66823] "blinded"          "darkness"         "impenetrable"    
## [66826] "gollum"           "crawling"         "ground"          
## [66829] "like"             "frightened"       "animal"          
## [66832] "already"          "vanishing"        "gloom"           
## [66835] "sam"              "supporting"       "guiding"         
## [66838] "stumbling"        "master"           "followed"        
## [66841] "quickly"          "far"              "near"            
## [66844] "bank"             "stream"           "gap"             
## [66847] "stone"            "wall"             "beside"          
## [66850] "road"             "passed"           "sam"             
## [66853] "saw"              "narrow"           "path"            
## [66856] "gleamed"          "faintly"          "first"           
## [66859] "main"             "road"             "climbing"        
## [66862] "meads"            "deadly"           "flowers"         
## [66865] "faded"            "went"             "dark"            
## [66868] "winding"          "crooked"          "way"             
## [66871] "northern"         "sides"            "valley"          
## [66874] "along"            "path"             "hobbits"         
## [66877] "trudged"          "side"             "side"            
## [66880] "unable"           "see"              "gollum"          
## [66883] "front"            "except"           "turned"          
## [66886] "back"             "beckon"           "eyes"            
## [66889] "shone"            "green"            "white"           
## [66892] "light"            "reflecting"       "noisome"         
## [66895] "morgul"           "sheen"            "perhaps"         
## [66898] "kindled"          "answering"        "mood"            
## [66901] "within"           "deadly"           "gleam"           
## [66904] "dark"             "eyeholes"         "frodo"           
## [66907] "sam"              "always"           "conscious"       
## [66910] "ever"             "glancing"         "fearfully"       
## [66913] "shoulders"        "ever"             "dragging"        
## [66916] "eyes"             "back"             "find"            
## [66919] "darkening"        "path"             "slowly"          
## [66922] "laboured"         "rose"             "stench"          
## [66925] "vapours"          "poisonous"        "stream"          
## [66928] "breath"           "became"           "easier"          
## [66931] "heads"            "clearer"          "now"             
## [66934] "limbs"            "deadly"           "tired"           
## [66937] "walked"           "night"            "burden"          
## [66940] "swimming"         "long"             "heavy"           
## [66943] "tide"             "water"            "last"            
## [66946] "go"               "without"          "halt"            
## [66949] "frodo"            "stopped"          "sat"             
## [66952] "stone"            "now"              "climbed"         
## [66955] "top"              "great"            "hump"            
## [66958] "bare"             "rock"             "ahead"           
## [66961] "bay"              "valley"           "side"            
## [66964] "round"            "head"             "path"            
## [66967] "went"             "wide"             "ledge"           
## [66970] "chasm"            "right"            "across"          
## [66973] "sheer"            "southward"        "face"            
## [66976] "mountain"         "crawled"          "upwards"         
## [66979] "disappeared"      "blackness"        "must"            
## [66982] "rest"             "sam"              "whispered"       
## [66985] "frodo"            "heavy"            "sam"             
## [66988] "lad"              "heavy"            "wonder"          
## [66991] "far"              "can"              "carry"           
## [66994] "anyway"           "must"             "rest"            
## [66997] "venture"          "pointed"          "narrow"          
## [67000] "way"              "ahead"            "sssh"            
## [67003] "ssh"              "hissed"           "gollum"          
## [67006] "hurrying"         "back"             "sssh"            
## [67009] "fingers"          "lips"             "shook"           
## [67012] "head"             "urgently"         "tugging"         
## [67015] "frodos"           "sleeve"           "pointed"         
## [67018] "towards"          "path"             "frodo"           
## [67021] "move"             "yet"              "said"            
## [67024] "yet"              "weariness"        "weariness"       
## [67027] "oppressed"        "seemed"           "heavy"           
## [67030] "spell"            "laid"             "mind"            
## [67033] "body"             "must"             "rest"            
## [67036] "muttered"         "gollums"          "fear"            
## [67039] "agitation"        "became"           "great"           
## [67042] "spoke"            "hissing"          "behind"          
## [67045] "hand"             "keep"             "sound"           
## [67048] "unseen"           "listeners"        "air"             
## [67051] "rest"             "fools"            "eyes"            
## [67054] "can"              "see"              "us"              
## [67057] "come"             "bridge"           "see"             
## [67060] "us"               "come"             "away"            
## [67063] "climb"            "climb"            "come"            
## [67066] "come"             "mr"               "frodo"           
## [67069] "said"             "sam"              "hes"             
## [67072] "right"            "cant"             "stay"            
## [67075] "right"            "said"             "frodo"           
## [67078] "remote"           "voice"            "one"             
## [67081] "speaking"         "half"             "asleep"          
## [67084] "try"              "wearily"          "got"             
## [67087] "feet"             "late"             "moment"          
## [67090] "rock"             "quivered"         "trembled"        
## [67093] "beneath"          "great"            "rumbling"        
## [67096] "noise"            "louder"           "ever"            
## [67099] "rolled"           "ground"           "echoed"          
## [67102] "mountains"        "searing"          "suddenness"      
## [67105] "came"             "great"            "red"             
## [67108] "flash"            "far"              "beyond"          
## [67111] "eastern"          "mountains"        "leapt"           
## [67114] "sky"              "splashed"         "lowering"        
## [67117] "clouds"           "crimson"          "valley"          
## [67120] "shadow"           "cold"             "deathly"         
## [67123] "light"            "seemed"           "unbearably"      
## [67126] "violent"          "fierce"           "peaks"           
## [67129] "stone"            "ridges"           "like"            
## [67132] "notched"          "knives"           "sprang"          
## [67135] "staring"          "black"            "uprushing"       
## [67138] "flame"            "gorgoroth"        "came"            
## [67141] "great"            "crack"            "thunder"         
## [67144] "minas"            "morgul"           "answered"        
## [67147] "flare"            "livid"            "lightnings"      
## [67150] "forks"            "blue"             "flame"           
## [67153] "springing"        "tower"            "encircling"      
## [67156] "hills"            "sullen"           "clouds"          
## [67159] "earth"            "groaned"          "city"            
## [67162] "came"             "cry"              "mingled"         
## [67165] "harsh"            "high"             "voices"          
## [67168] "birds"            "prey"             "shrill"          
## [67171] "neighing"         "horses"           "wild"            
## [67174] "rage"             "fear"             "came"            
## [67177] "rending"          "screech"          "shivering"       
## [67180] "rising"           "swiftly"          "piercing"        
## [67183] "pitch"            "beyond"           "range"           
## [67186] "hearing"          "hobbits"          "wheeled"         
## [67189] "round"            "towards"          "cast"            
## [67192] "holding"          "hands"            "upon"            
## [67195] "ears"             "terrible"         "cry"             
## [67198] "ended"            "falling"          "back"            
## [67201] "long"             "sickening"        "wail"            
## [67204] "silence"          "frodo"            "slowly"          
## [67207] "raised"           "head"             "across"          
## [67210] "narrow"           "valley"           "now"             
## [67213] "almost"           "level"            "eyes"            
## [67216] "walls"            "evil"             "city"            
## [67219] "stood"            "cavernous"        "gate"            
## [67222] "shaped"           "like"             "open"            
## [67225] "mouth"            "gleaming"         "teeth"           
## [67228] "gaping"           "wide"             "gate"            
## [67231] "army"             "came"             "host"            
## [67234] "clad"             "sable"            "dark"            
## [67237] "night"            "wan"              "walls"           
## [67240] "luminous"         "pavement"         "road"            
## [67243] "frodo"            "see"              "small"           
## [67246] "black"            "figures"          "rank"            
## [67249] "upon"             "rank"             "marching"        
## [67252] "swiftly"          "silently"         "passing"         
## [67255] "outwards"         "endless"          "stream"          
## [67258] "went"             "great"            "cavalry"         
## [67261] "horsemen"         "moving"           "like"            
## [67264] "ordered"          "shadows"          "head"            
## [67267] "one"              "greater"          "rest"            
## [67270] "rider"            "black"            "save"            
## [67273] "hooded"           "head"             "helm"            
## [67276] "like"             "crown"            "flickered"       
## [67279] "perilous"         "light"            "now"             
## [67282] "drawing"          "near"             "bridge"          
## [67285] "frodos"           "staring"          "eyes"            
## [67288] "followed"         "unable"           "wink"            
## [67291] "withdraw"         "surely"           "lord"            
## [67294] "nine"             "riders"           "returned"        
## [67297] "earth"            "lead"             "ghastly"         
## [67300] "host"             "battle"           "yes"             
## [67303] "indeed"           "haggard"          "king"            
## [67306] "whose"            "cold"             "hand"            
## [67309] "smitten"          "ring"             "bearer"          
## [67312] "deadly"           "knife"            "old"             
## [67315] "wound"            "throbbed"         "pain"            
## [67318] "great"            "chill"            "spread"          
## [67321] "towards"          "frodos"           "heart"           
## [67324] "even"             "thoughts"         "pierced"         
## [67327] "dread"            "held"             "bound"           
## [67330] "spell"            "rider"            "halted"          
## [67333] "suddenly"         "right"            "entrance"        
## [67336] "bridge"           "behind"           "host"            
## [67339] "stood"            "still"            "pause"           
## [67342] "dead"             "silence"          "maybe"           
## [67345] "ring"             "called"           "wraith"          
## [67348] "lord"             "moment"           "troubled"        
## [67351] "sensing"          "power"            "within"          
## [67354] "valley"           "way"              "turned"          
## [67357] "dark"             "head"             "helmed"          
## [67360] "crowned"          "fear"             "sweeping"        
## [67363] "shadows"          "unseen"           "eyes"            
## [67366] "frodo"            "waited"           "like"            
## [67369] "bird"             "approach"         "snake"           
## [67372] "unable"           "move"             "waited"          
## [67375] "felt"             "urgent"           "ever"            
## [67378] "command"          "put"              "ring"            
## [67381] "great"            "pressure"         "felt"            
## [67384] "inclination"      "now"              "yield"           
## [67387] "knew"             "ring"             "betray"          
## [67390] "even"             "put"              "power"           
## [67393] "face"             "morgul"           "king"            
## [67396] "yet"              "longer"           "answer"          
## [67399] "command"          "dismayed"         "terror"          
## [67402] "though"           "felt"             "beating"         
## [67405] "upon"             "great"            "power"           
## [67408] "outside"          "took"             "hand"            
## [67411] "frodo"            "watched"          "mind"            
## [67414] "willing"          "suspense"         "looked"          
## [67417] "old"              "story"            "far"             
## [67420] "away"             "moved"            "hand"            
## [67423] "inch"             "inch"             "towards"         
## [67426] "chain"            "upon"             "neck"            
## [67429] "stirred"          "slowly"           "forced"          
## [67432] "hand"             "back"             "set"             
## [67435] "find"             "another"          "thing"           
## [67438] "thing"            "lying"            "hidden"          
## [67441] "near"             "breast"           "cold"            
## [67444] "hard"             "seemed"           "grip"            
## [67447] "closed"           "phial"            "galadriel"       
## [67450] "long"             "treasured"        "almost"          
## [67453] "forgotten"        "till"             "hour"            
## [67456] "touched"          "thought"          "ring"            
## [67459] "banished"         "mind"             "sighed"          
## [67462] "bent"             "head"             "moment"          
## [67465] "wraith"           "king"             "turned"          
## [67468] "spurred"          "horse"            "rode"            
## [67471] "across"           "bridge"           "dark"            
## [67474] "host"             "followed"         "maybe"           
## [67477] "elven"            "hoods"            "defied"          
## [67480] "unseen"           "eyes"             "mind"            
## [67483] "small"            "enemy"            "strengthened"    
## [67486] "turned"           "aside"            "thought"         
## [67489] "haste"            "already"          "hour"            
## [67492] "struck"           "great"            "masters"         
## [67495] "bidding"          "must"             "march"           
## [67498] "war"              "west"             "soon"            
## [67501] "passed"           "like"             "shadow"          
## [67504] "shadow"           "winding"          "road"            
## [67507] "behind"           "still"            "black"           
## [67510] "ranks"            "crossed"          "bridge"          
## [67513] "great"            "army"             "never"           
## [67516] "issued"           "vale"             "since"           
## [67519] "days"             "isildurs"         "might"           
## [67522] "host"             "fell"             "strong"          
## [67525] "arms"             "yet"              "assailed"        
## [67528] "fords"            "anduin"           "yet"             
## [67531] "one"              "greatest"         "hosts"           
## [67534] "mordor"           "now"              "sent"            
## [67537] "forth"            "frodo"            "stirred"         
## [67540] "suddenly"         "heart"            "went"            
## [67543] "faramir"          "storm"            "burst"           
## [67546] "last"             "thought"          "great"           
## [67549] "array"            "spears"           "swords"          
## [67552] "going"            "osgiliath"        "faramir"         
## [67555] "get"              "across"           "time"            
## [67558] "guessed"          "know"             "hour"            
## [67561] "can"              "now"              "hold"            
## [67564] "fords"            "king"             "nine"            
## [67567] "riders"           "comes"            "armies"          
## [67570] "come"             "late"             "lost"            
## [67573] "tarried"          "way"              "lost"            
## [67576] "even"             "errand"           "performed"       
## [67579] "one"              "ever"             "know"            
## [67582] "one"              "can"              "tell"            
## [67585] "vain"             "overcome"         "weakness"        
## [67588] "wept"             "still"            "host"            
## [67591] "morgul"           "crossed"          "bridge"          
## [67594] "great"            "distance"         "came"            
## [67597] "memories"         "shire"            "sunlit"          
## [67600] "early"            "morning"          "day"             
## [67603] "called"           "doors"            "opening"         
## [67606] "heard"            "sams"             "voice"           
## [67609] "speaking"         "wake"             "mr"              
## [67612] "frodo"            "wake"             "voice"           
## [67615] "added"            "breakfast"        "ready"           
## [67618] "hardly"           "surprised"        "certainly"       
## [67621] "sam"              "urgent"           "wake"            
## [67624] "mr"               "frodo"            "theyre"          
## [67627] "gone"             "said"             "dull"            
## [67630] "clang"            "gates"            "minas"           
## [67633] "morgul"           "closed"           "last"            
## [67636] "rank"             "spears"           "vanished"        
## [67639] "road"             "tower"            "still"           
## [67642] "grinned"          "across"           "valley"          
## [67645] "light"            "fading"           "whole"           
## [67648] "city"             "falling"          "back"            
## [67651] "dark"             "brooding"         "shade"           
## [67654] "silence"          "yet"              "still"           
## [67657] "filled"           "watchfulness"     "wake"            
## [67660] "mr"               "frodo"            "theyre"          
## [67663] "gone"             "wed"              "better"          
## [67666] "go"               "theres"           "something"       
## [67669] "still"            "alive"            "place"           
## [67672] "something"        "eyes"             "seeing"          
## [67675] "mind"             "take"             "longer"          
## [67678] "stay"             "one"              "spot"            
## [67681] "sooner"           "get"              "us"              
## [67684] "come"             "mr"               "frodo"           
## [67687] "frodo"            "raised"           "head"            
## [67690] "stood"            "despair"          "left"            
## [67693] "weakness"         "passed"           "even"            
## [67696] "smiled"           "grimly"           "feeling"         
## [67699] "now"              "clearly"          "moment"          
## [67702] "felt"             "opposite"         "whether"         
## [67705] "faramir"          "aragorn"          "elrond"          
## [67708] "galadriel"        "gandalf"          "anyone"          
## [67711] "else"             "ever"             "knew"            
## [67714] "beside"           "purpose"          "took"            
## [67717] "staff"            "one"              "hand"            
## [67720] "phial"            "saw"              "clear"           
## [67723] "light"            "already"          "welling"         
## [67726] "fingers"          "thrust"           "bosom"           
## [67729] "held"             "heart"            "turning"         
## [67732] "city"             "morgul"           "now"             
## [67735] "grey"             "glimmer"          "across"          
## [67738] "dark"             "gulf"             "prepared"        
## [67741] "take"             "upward"           "road"            
## [67744] "gollum"           "seemed"           "crawled"         
## [67747] "along"            "ledge"            "darkness"        
## [67750] "beyond"           "gates"            "minas"           
## [67753] "morgul"           "opened"           "leaving"         
## [67756] "hobbits"          "lay"              "now"             
## [67759] "came"             "creeping"         "back"            
## [67762] "teeth"            "chattering"       "fingers"         
## [67765] "snapping"         "foolish"          "silly"           
## [67768] "hissed"           "make"             "haste"           
## [67771] "mustnt"           "think"            "danger"          
## [67774] "passed"           "hasnt"            "make"            
## [67777] "haste"            "answer"           "followed"        
## [67780] "climbing"         "ledge"            "little"          
## [67783] "liking"           "either"           "even"            
## [67786] "facing"           "many"             "perils"          
## [67789] "last"             "long"             "soon"            
## [67792] "path"             "reached"          "rounded"         
## [67795] "angle"            "mountain"         "side"            
## [67798] "swelled"          "suddenly"         "entered"         
## [67801] "narrow"           "opening"          "rock"            
## [67804] "come"             "first"            "stair"           
## [67807] "gollum"           "spoken"           "darkness"        
## [67810] "almost"           "complete"         "see"             
## [67813] "nothing"          "much"             "beyond"          
## [67816] "hands"            "stretch"          "gollums"         
## [67819] "eyes"             "shone"            "pale"            
## [67822] "several"          "feet"             "turned"          
## [67825] "back"             "towards"          "careful"         
## [67828] "whispered"        "steps"            "lots"            
## [67831] "steps"            "must"             "careful"         
## [67834] "care"             "certainly"        "needed"          
## [67837] "frodo"            "sam"              "first"           
## [67840] "felt"             "easier"           "now"             
## [67843] "wall"             "either"           "side"            
## [67846] "stairway"         "almost"           "steep"           
## [67849] "ladder"           "climbed"          "became"          
## [67852] "aware"            "long"             "black"           
## [67855] "fall"             "behind"           "steps"           
## [67858] "narrow"           "spaced"           "unevenly"        
## [67861] "often"            "treacherous"      "worn"            
## [67864] "smooth"           "edges"            "broken"          
## [67867] "cracked"          "foot"             "set"             
## [67870] "upon"             "hobbits"          "struggled"       
## [67873] "last"             "clinging"         "desperate"       
## [67876] "fingers"          "steps"            "ahead"           
## [67879] "forcing"          "aching"           "knees"           
## [67882] "bend"             "straighten"       "ever"            
## [67885] "stair"            "cut"              "way"             
## [67888] "deeper"           "sheer"            "mountain"        
## [67891] "rocky"            "walls"            "rose"            
## [67894] "higher"           "higher"           "heads"           
## [67897] "length"           "just"             "felt"            
## [67900] "endure"           "saw"              "gollums"         
## [67903] "eyes"             "peering"          "whispered"       
## [67906] "first"            "stairs"           "past"            
## [67909] "clever"           "hobbits"          "climb"           
## [67912] "high"             "clever"           "hobbits"         
## [67915] "just"             "little"           "steps"           
## [67918] "thats"            "yes"              "dizzy"           
## [67921] "tired"            "sam"              "frodo"           
## [67924] "following"        "crawled"          "last"            
## [67927] "step"             "sat"              "rubbing"         
## [67930] "legs"             "knees"            "deep"            
## [67933] "dark"             "passage"          "seemed"          
## [67936] "still"            "go"               "though"          
## [67939] "gentler"          "slope"            "without"         
## [67942] "steps"            "gollum"           "let"             
## [67945] "rest"             "long"             "theres"          
## [67948] "another"          "stair"            "still"           
## [67951] "said"             "much"             "longer"          
## [67954] "stair"            "rest"             "get"             
## [67957] "top"              "next"             "stair"           
## [67960] "yet"              "sam"              "groaned"         
## [67963] "longer"           "say"              "asked"           
## [67966] "yes"              "yess"             "longer"          
## [67969] "said"             "gollum"           "difficult"       
## [67972] "hobbits"          "climbed"          "straight"        
## [67975] "stair"            "next"             "comes"           
## [67978] "winding"          "stair"            "said"            
## [67981] "sam"              "shall"            "see"             
## [67984] "said"             "gollum"           "softly"          
## [67987] "yes"              "shall"            "see"             
## [67990] "thought"          "said"             "tunnel"          
## [67993] "said"             "sam"              "isnt"            
## [67996] "tunnel"           "something"        "go"              
## [67999] "yes"              "theres"           "tunnel"          
## [68002] "said"             "gollum"           "hobbits"         
## [68005] "can"              "rest"             "try"             
## [68008] "get"              "theyll"           "nearly"          
## [68011] "top"              "nearly"           "get"             
## [68014] "yes"              "frodo"            "shivered"        
## [68017] "climb"            "made"             "sweat"           
## [68020] "now"              "felt"             "cold"            
## [68023] "clammy"           "chill"            "draught"         
## [68026] "dark"             "passage"          "blowing"         
## [68029] "invisible"        "heights"          "got"             
## [68032] "shook"            "well"             "lets"            
## [68035] "go"               "said"             "place"           
## [68038] "sit"              "passage"          "seemed"          
## [68041] "go"               "miles"            "always"          
## [68044] "chill"            "air"              "flowed"          
## [68047] "rising"           "went"             "bitter"          
## [68050] "wind"             "mountains"        "seemed"          
## [68053] "trying"           "deadly"           "breath"          
## [68056] "daunt"            "turn"             "back"            
## [68059] "secrets"          "high"             "places"          
## [68062] "blow"             "away"             "darkness"        
## [68065] "behind"           "knew"             "come"            
## [68068] "end"              "suddenly"         "felt"            
## [68071] "wall"             "right"            "hand"            
## [68074] "see"              "little"           "great"           
## [68077] "black"            "shapeless"        "masses"          
## [68080] "deep"             "grey"             "shadows"         
## [68083] "loomed"           "now"              "dull"            
## [68086] "red"              "light"            "flickered"       
## [68089] "lowering"         "clouds"           "moment"          
## [68092] "aware"            "tall"             "peaks"           
## [68095] "front"            "either"           "side"            
## [68098] "like"             "pillars"          "holding"         
## [68101] "vast"             "sagging"          "roof"            
## [68104] "seemed"           "climbed"          "many"            
## [68107] "hundreds"         "feet"             "wide"            
## [68110] "shelf"            "cliff"            "left"            
## [68113] "chasm"            "right"            "gollum"          
## [68116] "led"              "way"              "close"           
## [68119] "cliff"            "present"          "longer"          
## [68122] "climbing"         "ground"           "now"             
## [68125] "broken"           "dangerous"        "dark"            
## [68128] "blocks"           "lumps"            "fallen"          
## [68131] "stone"            "way"              "going"           
## [68134] "slow"             "cautious"         "many"            
## [68137] "hours"            "passed"           "since"           
## [68140] "entered"          "morgul"           "vale"            
## [68143] "neither"          "sam"              "frodo"           
## [68146] "longer"           "guess"            "night"           
## [68149] "seemed"           "endless"          "length"          
## [68152] "aware"            "wall"             "looming"         
## [68155] "stairway"         "opened"           "halted"          
## [68158] "began"            "climb"            "long"            
## [68161] "weary"            "ascent"           "stairway"        
## [68164] "delve"            "mountain"         "side"            
## [68167] "huge"             "cliff"            "face"            
## [68170] "sloped"           "backwards"        "path"            
## [68173] "like"             "snake"            "wound"           
## [68176] "fro"              "across"           "one"             
## [68179] "point"            "crawled"          "sideways"        
## [68182] "right"            "edge"             "dark"            
## [68185] "chasm"            "frodo"            "glancing"        
## [68188] "saw"              "vast"             "deep"            
## [68191] "pit"              "great"            "ravine"          
## [68194] "head"             "morgul"           "valley"          
## [68197] "depths"           "glimmered"        "like"            
## [68200] "glow"             "worm"             "thread"          
## [68203] "wraith"           "road"             "dead"            
## [68206] "city"             "nameless"         "pass"            
## [68209] "turned"           "hastily"          "away"            
## [68212] "still"            "stairway"         "bent"            
## [68215] "crawled"          "last"             "final"           
## [68218] "flight"           "short"            "straight"        
## [68221] "climbed"          "another"          "level"           
## [68224] "path"             "veered"           "away"            
## [68227] "main"             "pass"             "great"           
## [68230] "ravine"           "now"              "followed"        
## [68233] "perilous"         "course"           "bottom"          
## [68236] "lesser"           "cleft"            "among"           
## [68239] "higher"           "regions"          "ephel"           
## [68242] "dúath"            "dimly"            "hobbits"         
## [68245] "discern"          "tall"             "piers"           
## [68248] "jagged"           "pinnacles"        "stone"           
## [68251] "either"           "side"             "great"           
## [68254] "crevices"         "fissures"         "blacker"         
## [68257] "night"            "forgotten"        "winters"         
## [68260] "gnawed"           "carved"           "sunless"         
## [68263] "stone"            "now"              "red"             
## [68266] "light"            "sky"              "seemed"          
## [68269] "stronger"         "though"           "tell"            
## [68272] "whether"          "dreadful"         "morning"         
## [68275] "indeed"           "coming"           "place"           
## [68278] "shadow"           "whether"          "saw"             
## [68281] "flame"            "great"            "violence"        
## [68284] "sauron"           "torment"          "gorgoroth"       
## [68287] "beyond"           "still"            "far"             
## [68290] "ahead"            "still"            "high"            
## [68293] "frodo"            "looking"          "saw"             
## [68296] "guessed"          "crown"            "bitter"          
## [68299] "road"             "sullen"           "redness"         
## [68302] "eastern"          "sky"              "cleft"           
## [68305] "outlined"         "topmost"          "ridge"           
## [68308] "narrow"           "deep"             "cloven"          
## [68311] "two"              "black"            "shoulders"       
## [68314] "either"           "shoulder"         "horn"            
## [68317] "stone"            "paused"           "looked"          
## [68320] "attentively"      "horn"             "upon"            
## [68323] "left"             "tall"             "slender"         
## [68326] "burned"           "red"              "light"           
## [68329] "else"             "red"              "light"           
## [68332] "land"             "beyond"           "shining"         
## [68335] "hole"             "saw"              "now"             
## [68338] "black"            "tower"            "poised"          
## [68341] "outer"            "pass"             "touched"         
## [68344] "sams"             "arm"              "pointed"         
## [68347] "dont"             "like"             "look"            
## [68350] "said"             "sam"              "secret"          
## [68353] "way"              "guarded"          "growled"         
## [68356] "turning"          "gollum"           "knew"            
## [68359] "along"            "suppose"          "ways"            
## [68362] "watched"          "yes"              "said"            
## [68365] "gollum"           "course"           "hobbits"         
## [68368] "must"             "try"              "way"             
## [68371] "may"              "least"            "watched"         
## [68374] "perhaps"          "theyve"           "gone"            
## [68377] "away"             "big"              "battle"          
## [68380] "perhaps"          "perhaps"          "grunted"         
## [68383] "sam"              "well"             "still"           
## [68386] "seems"            "long"             "way"             
## [68389] "long"             "way"              "get"             
## [68392] "theres"           "still"            "tunnel"          
## [68395] "think"            "rest"             "now"             
## [68398] "mr"               "frodo"            "dont"            
## [68401] "know"             "time"             "day"             
## [68404] "night"            "weve"             "kept"            
## [68407] "going"            "hours"            "hours"           
## [68410] "yes"              "must"             "rest"            
## [68413] "said"             "frodo"            "let"             
## [68416] "us"               "find"             "corner"          
## [68419] "wind"             "gather"           "strength"        
## [68422] "last"             "lap"              "felt"            
## [68425] "terrors"          "land"             "beyond"          
## [68428] "deed"             "done"             "seemed"          
## [68431] "remote"           "far"              "yet"             
## [68434] "trouble"          "mind"             "bent"            
## [68437] "getting"          "impenetrable"     "wall"            
## [68440] "guard"            "impossible"       "thing"           
## [68443] "somehow"          "errand"           "accomplished"    
## [68446] "seemed"           "dark"             "hour"            
## [68449] "weariness"        "still"            "labouring"       
## [68452] "stony"            "shadows"          "cirith"          
## [68455] "ungol"            "dark"             "crevice"         
## [68458] "two"              "great"            "piers"           
## [68461] "rock"             "sat"              "frodo"           
## [68464] "sam"              "little"           "way"             
## [68467] "within"           "gollum"           "crouched"        
## [68470] "upon"             "ground"           "near"            
## [68473] "opening"          "hobbits"          "took"            
## [68476] "expected"         "last"             "meal"            
## [68479] "went"             "nameless"         "land"            
## [68482] "maybe"            "last"             "meal"            
## [68485] "ever"             "eat"              "together"        
## [68488] "food"             "gondor"           "ate"             
## [68491] "wafers"           "waybread"         "elves"           
## [68494] "drank"            "little"           "water"           
## [68497] "sparing"          "took"             "enough"          
## [68500] "moisten"          "dry"              "mouths"          
## [68503] "wonder"           "well"             "find"            
## [68506] "water"            "said"             "sam"             
## [68509] "suppose"          "even"             "drink"           
## [68512] "orcs"             "drink"            "dont"            
## [68515] "yes"              "drink"            "said"            
## [68518] "frodo"            "let"              "us"              
## [68521] "speak"            "drink"            "us"              
## [68524] "need"             "fill"             "bottles"         
## [68527] "said"             "sam"              "isnt"            
## [68530] "water"            "sound"            "trickle"         
## [68533] "heard"            "anyway"           "faramir"         
## [68536] "said"             "drink"            "water"           
## [68539] "morgul"           "water"            "flowing"         
## [68542] "imlad"            "morgul"           "words"           
## [68545] "said"             "frodo"            "valley"          
## [68548] "now"              "came"             "spring"          
## [68551] "flowing"          "wouldnt"          "trust"           
## [68554] "said"             "sam"              "till"            
## [68557] "dying"            "thirst"           "theres"          
## [68560] "wicked"           "feeling"          "place"           
## [68563] "sniffed"          "smell"            "fancy"           
## [68566] "notice"           "queer"            "kind"            
## [68569] "smell"            "stuffy"           "dont"            
## [68572] "like"             "dont"             "like"            
## [68575] "anything"         "said"             "frodo"           
## [68578] "step"             "stone"            "breath"          
## [68581] "bone"             "earth"            "air"             
## [68584] "water"            "seem"             "accursed"        
## [68587] "path"             "laid"             "yes"             
## [68590] "thats"            "said"             "sam"             
## [68593] "shouldnt"         "wed"              "known"           
## [68596] "started"          "suppose"          "often"           
## [68599] "way"              "brave"            "things"          
## [68602] "old"              "tales"            "songs"           
## [68605] "mr"               "frodo"            "adventures"      
## [68608] "used"             "call"             "used"            
## [68611] "think"            "things"           "wonderful"       
## [68614] "folk"             "stories"          "went"            
## [68617] "looked"           "wanted"           "exciting"        
## [68620] "life"             "bit"              "dull"            
## [68623] "kind"             "sport"            "might"           
## [68626] "say"              "thats"            "way"             
## [68629] "tales"            "really"           "mattered"        
## [68632] "ones"             "stay"             "mind"            
## [68635] "folk"             "seem"             "just"            
## [68638] "landed"           "usually"          "paths"           
## [68641] "laid"             "way"              "put"             
## [68644] "expect"           "lots"             "chances"         
## [68647] "like"             "us"               "turning"         
## [68650] "back"             "didnt"            "shouldnt"        
## [68653] "know"             "theyd"            "forgotten"       
## [68656] "hear"             "just"             "went"            
## [68659] "good"             "end"              "mind"            
## [68662] "least"            "folk"             "inside"          
## [68665] "story"            "outside"          "call"            
## [68668] "good"             "end"              "know"            
## [68671] "coming"           "home"             "finding"         
## [68674] "things"           "right"            "though"          
## [68677] "quite"            "like"             "old"             
## [68680] "mr"               "bilbo"            "arent"           
## [68683] "always"           "best"             "tales"           
## [68686] "hear"             "though"           "may"             
## [68689] "best"             "tales"            "get"             
## [68692] "landed"           "wonder"           "sort"            
## [68695] "tale"             "weve"             "fallen"          
## [68698] "wonder"           "said"             "frodo"           
## [68701] "dont"             "know"             "thats"           
## [68704] "way"              "real"             "tale"            
## [68707] "take"             "one"              "youre"           
## [68710] "fond"             "may"              "know"            
## [68713] "guess"            "kind"             "tale"            
## [68716] "happy"            "ending"           "sad"             
## [68719] "ending"           "people"           "dont"            
## [68722] "know"             "dont"             "want"            
## [68725] "sir"              "course"           "beren"           
## [68728] "now"              "never"            "thought"         
## [68731] "going"            "get"              "silmaril"        
## [68734] "iron"             "crown"            "thangorodrim"    
## [68737] "yet"              "worse"            "place"           
## [68740] "blacker"          "danger"           "thats"           
## [68743] "long"             "tale"             "course"          
## [68746] "goes"             "past"             "happiness"       
## [68749] "grief"            "beyond"           "silmaril"        
## [68752] "went"             "came"             "eärendil"        
## [68755] "sir"              "never"            "thought"         
## [68758] "weve"             "got"              "youve"           
## [68761] "got"              "light"            "star"            
## [68764] "glass"            "lady"             "gave"            
## [68767] "think"            "tale"             "still"           
## [68770] "going"            "dont"             "great"           
## [68773] "tales"            "never"            "end"             
## [68776] "never"            "end"              "tales"           
## [68779] "said"             "frodo"            "people"          
## [68782] "come"             "go"               "parts"           
## [68785] "ended"            "part"             "end"             
## [68788] "later"            "sooner"           "can"             
## [68791] "rest"             "sleep"            "said"            
## [68794] "sam"              "laughed"          "grimly"          
## [68797] "mean"             "just"             "mr"              
## [68800] "frodo"            "mean"             "plain"           
## [68803] "ordinary"         "rest"             "sleep"           
## [68806] "waking"           "mornings"         "work"            
## [68809] "garden"           "im"               "afraid"          
## [68812] "thats"            "im"               "hoping"          
## [68815] "time"             "big"              "important"       
## [68818] "plans"            "sort"             "still"           
## [68821] "wonder"           "shall"            "ever"            
## [68824] "put"              "songs"            "tales"           
## [68827] "one"              "course"           "mean"            
## [68830] "put"              "words"            "know"            
## [68833] "told"             "fireside"         "read"            
## [68836] "great"            "big"              "book"            
## [68839] "red"              "black"            "letters"         
## [68842] "years"            "years"            "afterwards"      
## [68845] "people"           "say"              "lets"            
## [68848] "hear"             "frodo"            "ring"            
## [68851] "theyll"           "say"              "yes"             
## [68854] "thats"            "one"              "favourite"       
## [68857] "stories"          "frodo"            "brave"           
## [68860] "wasnt"            "dad"              "yes"             
## [68863] "boy"              "famousest"        "hobbits"         
## [68866] "thats"            "saying"           "lot"             
## [68869] "saying"           "lot"              "much"            
## [68872] "said"             "frodo"            "laughed"         
## [68875] "long"             "clear"            "laugh"           
## [68878] "heart"            "sound"            "heard"           
## [68881] "places"           "since"            "sauron"          
## [68884] "came"             "middle"           "earth"           
## [68887] "sam"              "suddenly"         "seemed"          
## [68890] "stones"           "listening"        "tall"            
## [68893] "rocks"            "leaning"          "frodo"           
## [68896] "heed"             "laughed"          "sam"             
## [68899] "said"             "hear"             "somehow"         
## [68902] "makes"            "merry"            "story"           
## [68905] "already"          "written"          "youve"           
## [68908] "left"             "one"              "chief"           
## [68911] "characters"       "samwise"          "stouthearted"    
## [68914] "want"             "hear"             "sam"             
## [68917] "dad"              "didnt"            "put"             
## [68920] "talk"             "dad"              "thats"           
## [68923] "like"             "makes"            "laugh"           
## [68926] "frodo"            "wouldnt"          "got"             
## [68929] "far"              "without"          "sam"             
## [68932] "dad"              "now"              "mr"              
## [68935] "frodo"            "said"             "sam"             
## [68938] "shouldnt"         "make"             "fun"             
## [68941] "serious"          "said"             "frodo"           
## [68944] "going"            "bit"              "fast"            
## [68947] "sam"              "still"            "stuck"           
## [68950] "worst"            "places"           "story"           
## [68953] "likely"           "say"              "point"           
## [68956] "shut"             "book"             "now"             
## [68959] "dad"              "dont"             "want"            
## [68962] "read"             "maybe"            "said"            
## [68965] "sam"              "wouldnt"          "one"             
## [68968] "say"              "things"           "done"            
## [68971] "made"             "part"             "great"           
## [68974] "tales"            "different"        "even"            
## [68977] "gollum"           "might"            "good"            
## [68980] "tale"             "better"           "anyway"          
## [68983] "used"             "like"             "tales"           
## [68986] "account"          "wonder"           "thinks"          
## [68989] "hes"              "hero"             "villain"         
## [68992] "gollum"           "called"           "like"            
## [68995] "hero"             "now"              "wheres"          
## [68998] "got"              "sign"             "mouth"           
## [69001] "shelter"          "shadows"          "near"            
## [69004] "refused"          "food"             "though"          
## [69007] "usual"            "accepted"         "mouthful"        
## [69010] "water"            "seemed"           "curl"            
## [69013] "sleep"            "supposed"         "one"             
## [69016] "rate"             "objects"          "long"            
## [69019] "absence"          "day"              "hunt"            
## [69022] "food"             "liking"           "now"             
## [69025] "evidently"        "slipped"          "talked"          
## [69028] "time"             "dont"             "like"            
## [69031] "sneaking"         "without"          "saying"          
## [69034] "said"             "sam"              "least"           
## [69037] "now"              "cant"             "looking"         
## [69040] "food"             "unless"           "theres"          
## [69043] "kind"             "rock"             "fancies"         
## [69046] "isnt"             "even"             "bit"             
## [69049] "moss"             "good"             "worrying"        
## [69052] "now"              "said"             "frodo"           
## [69055] "couldnt"          "got"              "far"             
## [69058] "even"             "within"           "sight"           
## [69061] "pass"             "without"          "well"            
## [69064] "put"              "ways"             "hes"             
## [69067] "false"            "hes"              "false"           
## [69070] "id"               "rather"           "eye"             
## [69073] "said"             "sam"              "hes"             
## [69076] "false"            "remember"         "never"           
## [69079] "say"              "pass"             "guarded"         
## [69082] "now"              "see"              "tower"           
## [69085] "may"              "deserted"         "may"             
## [69088] "think"            "hes"              "gone"            
## [69091] "fetch"            "orcs"             "whatever"        
## [69094] "dont"             "think"            "answered"        
## [69097] "frodo"            "even"             "hes"             
## [69100] "wickedness"       "suppose"          "thats"           
## [69103] "unlikely"         "dont"             "think"           
## [69106] "fetch"            "orcs"             "servants"        
## [69109] "enemy"            "wait"             "till"            
## [69112] "now"              "go"               "labour"          
## [69115] "climb"            "come"             "near"            
## [69118] "land"             "fears"            "probably"        
## [69121] "betrayed"         "us"               "orcs"            
## [69124] "many"             "times"            "since"           
## [69127] "met"              "anything"         "little"          
## [69130] "private"          "trick"            "thinks"          
## [69133] "quite"            "secret"           "well"            
## [69136] "suppose"          "youre"            "right"           
## [69139] "mr"               "frodo"            "said"            
## [69142] "sam"              "comforts"         "mightily"        
## [69145] "dont"             "make"             "mistake"         
## [69148] "dont"             "doubt"            "hed"             
## [69151] "hand"             "orcs"             "gladly"          
## [69154] "kiss"             "hand"             "forgetting"      
## [69157] "precious"         "suppose"          "whole"           
## [69160] "time"             "precious"         "poor"            
## [69163] "sméagol"          "thats"            "one"             
## [69166] "idea"             "little"           "schemes"         
## [69169] "bringing"         "us"               "help"            
## [69172] "can"              "guess"            "likely"          
## [69175] "cant"             "guess"            "said"            
## [69178] "frodo"            "dont"             "think"           
## [69181] "hes"              "got"              "just"            
## [69184] "one"              "plain"            "scheme"          
## [69187] "muddled"          "head"             "think"           
## [69190] "really"           "part"             "trying"          
## [69193] "save"             "precious"         "enemy"           
## [69196] "long"             "can"              "last"            
## [69199] "disaster"         "enemy"            "got"             
## [69202] "part"             "perhaps"          "hes"             
## [69205] "just"             "biding"           "time"            
## [69208] "waiting"          "chance"           "yes"             
## [69211] "slinker"          "stinker"          "ive"             
## [69214] "said"             "said"             "sam"             
## [69217] "nearer"           "get"              "enemys"          
## [69220] "land"             "like"             "stinker"         
## [69223] "slinker"          "get"              "mark"            
## [69226] "words"            "ever"             "get"             
## [69229] "pass"             "wont"             "let"             
## [69232] "us"               "really"           "take"            
## [69235] "precious"         "thing"            "border"          
## [69238] "without"          "making"           "kind"            
## [69241] "trouble"          "havent"           "got"             
## [69244] "yet"              "said"             "frodo"           
## [69247] "wed"              "better"           "keep"            
## [69250] "eyes"             "skinned"          "till"            
## [69253] "caught"           "napping"          "stinker"         
## [69256] "come"             "top"              "pretty"          
## [69259] "quick"            "safe"             "wink"            
## [69262] "now"              "master"           "safe"            
## [69265] "lay"              "close"            "id"              
## [69268] "dearly"           "glad"             "see"             
## [69271] "sleep"            "id"               "keep"            
## [69274] "watch"            "anyway"           "lay"             
## [69277] "near"             "arm"              "round"           
## [69280] "one"              "come"             "pawing"          
## [69283] "without"          "sam"              "knowing"         
## [69286] "sleep"            "said"             "frodo"           
## [69289] "sighed"           "desert"           "seen"            
## [69292] "mirage"           "cool"             "green"           
## [69295] "yes"              "even"             "sleep"           
## [69298] "sleep"            "master"           "lay"             
## [69301] "head"             "lap"              "gollum"          
## [69304] "found"            "hours"            "later"           
## [69307] "returned"         "crawling"         "creeping"        
## [69310] "path"             "gloom"            "ahead"           
## [69313] "sam"              "sat"              "propped"         
## [69316] "stone"            "head"             "dropping"        
## [69319] "sideways"         "breathing"        "heavy"           
## [69322] "lap"              "lay"              "frodos"          
## [69325] "head"             "drowned"          "deep"            
## [69328] "sleep"            "upon"             "white"           
## [69331] "forehead"         "lay"              "one"             
## [69334] "sams"             "brown"            "hands"           
## [69337] "lay"              "softly"           "upon"            
## [69340] "masters"          "breast"           "peace"           
## [69343] "faces"            "gollum"           "looked"          
## [69346] "strange"          "expression"       "passed"          
## [69349] "lean"             "hungry"           "face"            
## [69352] "gleam"            "faded"            "eyes"            
## [69355] "went"             "dim"              "grey"            
## [69358] "old"              "tired"            "spasm"           
## [69361] "pain"             "seemed"           "twist"           
## [69364] "turned"           "away"             "peering"         
## [69367] "back"             "towards"          "pass"            
## [69370] "shaking"          "head"             "engaged"         
## [69373] "interior"         "debate"           "came"            
## [69376] "back"             "slowly"           "putting"         
## [69379] "trembling"        "hand"             "cautiously"      
## [69382] "touched"          "frodos"           "knee"            
## [69385] "almost"           "touch"            "caress"          
## [69388] "fleeting"         "moment"           "one"             
## [69391] "sleepers"         "seen"             "thought"         
## [69394] "beheld"           "old"              "weary"           
## [69397] "hobbit"           "shrunken"         "years"           
## [69400] "carried"          "far"              "beyond"          
## [69403] "time"             "beyond"           "friends"         
## [69406] "kin"              "fields"           "streams"         
## [69409] "youth"            "old"              "starved"         
## [69412] "pitiable"         "thing"            "touch"           
## [69415] "frodo"            "stirred"          "cried"           
## [69418] "softly"           "sleep"            "immediately"     
## [69421] "sam"              "wide"             "awake"           
## [69424] "first"            "thing"            "saw"             
## [69427] "gollum"           "pawing"           "master"          
## [69430] "thought"          "hey"              "said"            
## [69433] "roughly"          "nothing"          "nothing"         
## [69436] "said"             "gollum"           "softly"          
## [69439] "nice"             "master"           "daresay"         
## [69442] "said"             "sam"              "sneaking"        
## [69445] "sneaking"         "back"             "old"             
## [69448] "villain"          "gollum"           "withdrew"        
## [69451] "green"            "glint"            "flickered"       
## [69454] "heavy"            "lids"             "almost"          
## [69457] "spider"           "like"             "looked"          
## [69460] "now"              "crouched"         "back"            
## [69463] "bent"             "limbs"            "protruding"      
## [69466] "eyes"             "fleeting"         "moment"          
## [69469] "passed"           "beyond"           "recall"          
## [69472] "sneaking"         "sneaking"         "hissed"          
## [69475] "hobbits"          "always"           "polite"          
## [69478] "yes"              "nice"             "hobbits"         
## [69481] "sméagol"          "brings"           "secret"          
## [69484] "ways"             "nobody"           "else"            
## [69487] "find"             "tired"            "thirsty"         
## [69490] "yes"              "thirsty"          "guides"          
## [69493] "searches"         "paths"            "say"             
## [69496] "sneak"            "sneak"            "nice"            
## [69499] "friends"          "yes"              "precious"        
## [69502] "nice"             "sam"              "felt"            
## [69505] "bit"              "remorseful"       "though"          
## [69508] "trustful"         "sorry"            "said"            
## [69511] "im"               "sorry"            "startled"        
## [69514] "sleep"            "shouldnt"         "sleeping"        
## [69517] "made"             "bit"              "sharp"           
## [69520] "mr"               "frodo"            "hes"             
## [69523] "tired"            "asked"            "wink"            
## [69526] "well"             "thats"            "sorry"           
## [69529] "sneaking"         "said"             "gollum"          
## [69532] "green"            "glint"            "leave"           
## [69535] "eyes"             "well"             "said"            
## [69538] "sam"              "way"              "dont"            
## [69541] "suppose"          "far"              "truth"           
## [69544] "now"              "wed"              "better"          
## [69547] "sneaking"         "along"            "together"        
## [69550] "whats"            "time"             "today"           
## [69553] "tomorrow"         "tomorrow"         "said"            
## [69556] "gollum"           "tomorrow"         "hobbits"         
## [69559] "went"             "sleep"            "foolish"         
## [69562] "dangerous"        "poor"             "sméagol"         
## [69565] "wasnt"            "sneaking"         "watch"           
## [69568] "think"            "shall"            "get"             
## [69571] "tired"            "word"             "soon"            
## [69574] "said"             "sam"              "never"           
## [69577] "mind"             "ill"              "wake"            
## [69580] "master"           "gently"           "smoothed"        
## [69583] "hair"             "back"             "frodos"          
## [69586] "brow"             "bending"          "spoke"           
## [69589] "softly"           "wake"             "mr"              
## [69592] "frodo"            "wake"             "frodo"           
## [69595] "stirred"          "opened"           "eyes"            
## [69598] "smiled"           "seeing"           "sams"            
## [69601] "face"             "bending"          "calling"         
## [69604] "early"            "arent"            "sam"             
## [69607] "said"             "dark"             "still"           
## [69610] "yes"              "always"           "dark"            
## [69613] "said"             "sam"              "gollums"         
## [69616] "come"             "back"             "mr"              
## [69619] "frodo"            "says"             "tomorrow"        
## [69622] "must"             "walking"          "last"            
## [69625] "lap"              "frodo"            "drew"            
## [69628] "deep"             "breath"           "sat"             
## [69631] "last"             "lap"              "said"            
## [69634] "hullo"            "sméagol"          "found"           
## [69637] "food"             "rest"             "food"            
## [69640] "rest"             "nothing"          "sméagol"         
## [69643] "said"             "gollum"           "hes"             
## [69646] "sneak"            "sam"              "clicked"         
## [69649] "tongue"           "restrained"       "dont"            
## [69652] "take"             "names"            "sméagol"         
## [69655] "said"             "frodo"            "unwise"          
## [69658] "whether"          "true"             "false"           
## [69661] "sméagol"          "take"             "whats"           
## [69664] "given"            "answered"         "gollum"          
## [69667] "given"            "name"             "kind"            
## [69670] "master"           "samwise"          "hobbit"          
## [69673] "knows"            "much"             "frodo"           
## [69676] "looked"           "sam"              "yes"             
## [69679] "sir"              "said"             "use"             
## [69682] "word"             "waking"           "sleep"           
## [69685] "sudden"           "finding"          "hand"            
## [69688] "said"             "sorry"            "soon"            
## [69691] "shant"            "come"             "let"             
## [69694] "pass"             "said"             "frodo"           
## [69697] "now"              "seem"             "come"            
## [69700] "point"            "sméagol"          "tell"            
## [69703] "can"              "find"             "rest"            
## [69706] "way"              "sight"            "pass"            
## [69709] "way"              "can"              "find"            
## [69712] "now"              "suppose"          "agreement"       
## [69715] "can"              "said"             "done"            
## [69718] "promised"         "youre"            "free"            
## [69721] "free"             "go"               "back"            
## [69724] "food"             "rest"             "wherever"        
## [69727] "wish"             "go"               "except"          
## [69730] "servants"         "enemy"            "one"             
## [69733] "day"              "may"              "reward"          
## [69736] "remember"         "yet"              "gollum"          
## [69739] "whined"           "cant"             "find"            
## [69742] "way"              "can"              "indeed"          
## [69745] "theres"           "tunnel"           "coming"          
## [69748] "sméagol"          "must"             "go"              
## [69751] "rest"             "food"             "yet"             
## [69754] "chapter"          "shelobs"          "lair"            
## [69757] "may"              "indeed"           "daytime"         
## [69760] "now"              "gollum"           "said"            
## [69763] "hobbits"          "see"              "little"          
## [69766] "difference"       "unless"           "perhaps"         
## [69769] "heavy"            "sky"              "less"            
## [69772] "utterly"          "black"            "like"            
## [69775] "great"            "roof"             "smoke"           
## [69778] "instead"          "darkness"         "deep"            
## [69781] "night"            "lingered"         "still"           
## [69784] "cracks"           "holes"            "grey"            
## [69787] "blurring"         "shadow"           "shrouded"        
## [69790] "stony"            "world"            "passed"          
## [69793] "gollum"           "front"            "hobbits"         
## [69796] "now"              "side"             "side"            
## [69799] "long"             "ravine"           "piers"           
## [69802] "columns"          "torn"             "weathered"       
## [69805] "rock"             "standing"         "like"            
## [69808] "huge"             "unshapen"         "statues"         
## [69811] "either"           "hand"             "sound"           
## [69814] "way"              "ahead"            "mile"            
## [69817] "perhaps"          "great"            "grey"            
## [69820] "wall"             "last"             "huge"            
## [69823] "upthrusting"      "mass"             "mountain"        
## [69826] "stone"            "darker"           "loomed"          
## [69829] "steadily"         "rose"             "approached"      
## [69832] "towered"          "high"             "shutting"        
## [69835] "view"             "lay"              "beyond"          
## [69838] "deep"             "shadow"           "lay"             
## [69841] "feet"             "sam"              "sniffed"         
## [69844] "air"              "ugh"              "smell"           
## [69847] "said"             "getting"          "stronger"        
## [69850] "stronger"         "presently"        "shadow"          
## [69853] "midst"            "saw"              "opening"         
## [69856] "cave"             "way"              "said"            
## [69859] "gollum"           "softly"           "entrance"        
## [69862] "tunnel"           "speak"            "name"            
## [69865] "torech"           "ungol"            "shelobs"         
## [69868] "lair"             "came"             "stench"          
## [69871] "sickly"           "odour"            "decay"           
## [69874] "meads"            "morgul"           "foul"            
## [69877] "reek"             "filth"            "unnameable"      
## [69880] "piled"            "hoarded"          "dark"            
## [69883] "within"           "way"              "sméagol"         
## [69886] "said"             "frodo"            "yes"             
## [69889] "yes"              "answered"         "yes"             
## [69892] "must"             "go"               "way"             
## [69895] "now"              "dyou"             "mean"            
## [69898] "say"              "youve"            "hole"            
## [69901] "said"             "sam"              "phew"            
## [69904] "perhaps"          "dont"             "mind"            
## [69907] "bad"              "smells"           "gollums"         
## [69910] "eyes"             "glinted"          "doesnt"          
## [69913] "know"             "minds"            "precious"        
## [69916] "doesnt"           "sméagol"          "can"             
## [69919] "bear"             "things"           "yes"             
## [69922] "hes"              "yes"              "right"           
## [69925] "way"              "makes"            "smell"           
## [69928] "wonder"           "said"             "sam"             
## [69931] "like"             "well"             "wouldnt"         
## [69934] "like"             "say"              "beastly"         
## [69937] "hole"             "orcs"             "ill"             
## [69940] "warrant"          "hundred"          "years"           
## [69943] "filth"            "well"             "said"            
## [69946] "frodo"            "orcs"             "way"             
## [69949] "must"             "take"             "drawing"         
## [69952] "deep"             "breath"           "passed"          
## [69955] "inside"           "steps"            "utter"           
## [69958] "impenetrable"     "dark"             "since"           
## [69961] "lightless"        "passages"         "moria"           
## [69964] "frodo"            "sam"              "known"           
## [69967] "darkness"         "possible"         "deeper"          
## [69970] "denser"           "airs"             "moving"          
## [69973] "echoes"           "sense"            "space"           
## [69976] "air"              "still"            "stagnant"        
## [69979] "heavy"            "sound"            "fell"            
## [69982] "dead"             "walked"           "black"           
## [69985] "vapour"           "wrought"          "veritable"       
## [69988] "darkness"         "breathed"         "brought"         
## [69991] "blindness"        "eyes"             "mind"            
## [69994] "even"             "memory"           "colours"         
## [69997] "forms"            "light"            "faded"           
## [70000] "thought"          "night"            "always"          
## [70003] "always"           "night"            "still"           
## [70006] "feel"             "indeed"           "senses"          
## [70009] "feet"             "fingers"          "first"           
## [70012] "seemed"           "sharpened"        "almost"          
## [70015] "painfully"        "walls"            "felt"            
## [70018] "surprise"         "smooth"           "floor"           
## [70021] "save"             "step"             "now"             
## [70024] "straight"         "even"             "going"           
## [70027] "ever"             "stiff"            "slope"           
## [70030] "tunnel"           "high"             "wide"            
## [70033] "wide"             "though"           "hobbits"         
## [70036] "walked"           "abreast"          "touching"        
## [70039] "side"             "walls"            "outstretched"    
## [70042] "hands"            "separated"        "cut"             
## [70045] "alone"            "darkness"         "gollum"          
## [70048] "gone"             "first"            "seemed"          
## [70051] "steps"            "ahead"            "still"           
## [70054] "able"             "give"             "heed"            
## [70057] "things"           "hear"             "breath"          
## [70060] "hissing"          "gasping"          "just"            
## [70063] "front"            "time"             "senses"          
## [70066] "became"           "duller"           "touch"           
## [70069] "hearing"          "seemed"           "grow"            
## [70072] "numb"             "kept"             "groping"         
## [70075] "walking"          "mainly"           "force"           
## [70078] "entered"          "go"               "desire"          
## [70081] "come"             "last"             "high"            
## [70084] "gate"             "beyond"           "gone"            
## [70087] "far"              "perhaps"          "time"            
## [70090] "distance"         "soon"             "passed"          
## [70093] "reckoning"        "sam"              "right"           
## [70096] "feeling"          "wall"             "aware"           
## [70099] "opening"          "side"             "moment"          
## [70102] "caught"           "faint"            "breath"          
## [70105] "air"              "less"             "heavy"           
## [70108] "passed"           "theres"           "one"             
## [70111] "passage"          "whispered"        "effort"          
## [70114] "seemed"           "hard"             "make"            
## [70117] "breath"           "give"             "sound"           
## [70120] "orc"              "like"             "place"           
## [70123] "ever"             "first"            "right"           
## [70126] "frodo"            "left"             "passed"          
## [70129] "three"            "four"             "openings"        
## [70132] "wider"            "smaller"          "yet"             
## [70135] "doubt"            "main"             "way"             
## [70138] "straight"         "turn"             "still"           
## [70141] "went"             "steadily"         "long"            
## [70144] "much"             "endure"           "endure"          
## [70147] "breathlessness"   "air"              "growing"         
## [70150] "climbed"          "now"              "seemed"          
## [70153] "often"            "blind"            "dark"            
## [70156] "sense"            "resistance"       "thicker"         
## [70159] "foul"             "air"              "thrust"          
## [70162] "forward"          "felt"             "things"          
## [70165] "brush"            "heads"            "hands"           
## [70168] "long"             "tentacles"        "hanging"         
## [70171] "growths"          "perhaps"          "tell"            
## [70174] "still"            "stench"           "grew"            
## [70177] "grew"             "almost"           "seemed"          
## [70180] "smell"            "clear"            "sense"           
## [70183] "left"             "torment"          "one"             
## [70186] "hour"             "two"              "hours"           
## [70189] "three"            "hours"            "many"            
## [70192] "passed"           "lightless"        "hole"            
## [70195] "hours"            "days"             "weeks"           
## [70198] "rather"           "sam"              "left"            
## [70201] "tunnel"           "side"             "shrank"          
## [70204] "towards"          "frodo"            "hands"           
## [70207] "met"              "clasped"          "together"        
## [70210] "still"            "went"             "length"          
## [70213] "frodo"            "groping"          "along"           
## [70216] "left"             "hand"             "wall"            
## [70219] "came"             "suddenly"         "void"            
## [70222] "almost"           "fell"             "sideways"        
## [70225] "emptiness"        "opening"          "rock"            
## [70228] "far"              "wider"            "yet"             
## [70231] "passed"           "came"             "reek"            
## [70234] "foul"             "sense"            "lurking"         
## [70237] "malice"           "intense"          "frodo"           
## [70240] "reeled"           "moment"           "sam"             
## [70243] "lurched"          "fell"             "forwards"        
## [70246] "fighting"         "sickness"         "fear"            
## [70249] "frodo"            "gripped"          "sams"            
## [70252] "hand"             "said"             "hoarse"          
## [70255] "breath"           "without"          "voice"           
## [70258] "comes"            "stench"           "peril"           
## [70261] "now"              "quick"            "calling"         
## [70264] "remaining"        "strength"         "resolution"      
## [70267] "dragged"          "sam"              "feet"            
## [70270] "forced"           "limbs"            "move"            
## [70273] "sam"              "stumbled"         "beside"          
## [70276] "one"              "step"             "two"             
## [70279] "steps"            "three"            "steps"           
## [70282] "last"             "six"              "steps"           
## [70285] "maybe"            "passed"           "dreadful"        
## [70288] "unseen"           "opening"          "whether"         
## [70291] "suddenly"         "easier"           "move"            
## [70294] "hostile"          "moment"           "released"        
## [70297] "struggled"        "still"            "hand"            
## [70300] "hand"             "almost"           "came"            
## [70303] "new"              "difficulty"       "tunnel"          
## [70306] "forked"           "seemed"           "dark"            
## [70309] "tell"             "wider"            "way"             
## [70312] "kept"             "nearer"           "straight"        
## [70315] "take"             "left"             "right"           
## [70318] "knew"             "nothing"          "guide"           
## [70321] "yet"              "false"            "choice"          
## [70324] "almost"           "certainly"        "fatal"           
## [70327] "way"              "gollum"           "gone"            
## [70330] "panted"           "sam"              "didnt"           
## [70333] "wait"             "sméagol"          "said"            
## [70336] "frodo"            "trying"           "call"            
## [70339] "sméagol"          "voice"            "croaked"         
## [70342] "name"             "fell"             "dead"            
## [70345] "almost"           "left"             "lips"            
## [70348] "answer"           "echo"             "even"            
## [70351] "tremor"           "air"              "hes"             
## [70354] "really"           "gone"             "time"            
## [70357] "fancy"            "muttered"         "sam"             
## [70360] "guess"            "just"             "exactly"         
## [70363] "meant"            "bring"            "us"              
## [70366] "gollum"           "ever"             "lay"             
## [70369] "hands"            "youll"            "sorry"           
## [70372] "presently"        "groping"          "fumbling"        
## [70375] "dark"             "found"            "opening"         
## [70378] "left"             "blocked"          "either"          
## [70381] "blind"            "else"             "great"           
## [70384] "stone"            "fallen"           "passage"         
## [70387] "cant"             "way"              "frodo"           
## [70390] "whispered"        "right"            "wrong"           
## [70393] "must"             "take"             "quick"           
## [70396] "sam"              "panted"           "theres"          
## [70399] "something"        "worse"            "gollum"          
## [70402] "can"              "feel"             "something"       
## [70405] "looking"          "us"               "gone"            
## [70408] "yards"            "behind"           "came"            
## [70411] "sound"            "startling"        "horrible"        
## [70414] "heavy"            "padded"           "silence"         
## [70417] "gurgling"         "bubbling"         "noise"           
## [70420] "long"             "venomous"         "hiss"            
## [70423] "wheeled"          "round"            "nothing"         
## [70426] "seen"             "still"            "stones"          
## [70429] "stood"            "staring"          "waiting"         
## [70432] "know"             "trap"             "said"            
## [70435] "sam"              "laid"             "hand"            
## [70438] "upon"             "hilt"             "sword"           
## [70441] "thought"          "darkness"         "barrow"          
## [70444] "whence"           "came"             "wish"            
## [70447] "old"              "tom"              "near"            
## [70450] "us"               "now"              "thought"         
## [70453] "stood"            "darkness"         "blackness"       
## [70456] "despair"          "anger"            "heart"           
## [70459] "seemed"           "saw"              "light"           
## [70462] "light"            "mind"             "almost"          
## [70465] "unbearably"       "bright"           "first"           
## [70468] "sun"              "ray"              "eyes"            
## [70471] "one"              "long"             "hidden"          
## [70474] "windowless"       "pit"              "light"           
## [70477] "became"           "colour"           "green"           
## [70480] "gold"             "silver"           "white"           
## [70483] "far"              "little"           "picture"         
## [70486] "drawn"            "elven"            "fingers"         
## [70489] "saw"              "lady"             "galadriel"       
## [70492] "standing"         "grass"            "lórien"          
## [70495] "gifts"            "hands"            "ring"            
## [70498] "bearer"           "heard"            "say"             
## [70501] "remote"           "clear"            "prepared"        
## [70504] "bubbling"         "hiss"             "drew"            
## [70507] "nearer"           "creaking"         "great"           
## [70510] "jointed"          "thing"            "moved"           
## [70513] "slow"             "purpose"          "dark"            
## [70516] "reek"             "came"             "master"          
## [70519] "master"           "cried"            "sam"             
## [70522] "life"             "urgency"          "came"            
## [70525] "back"             "voice"            "ladys"           
## [70528] "gift"             "star"             "glass"           
## [70531] "light"            "dark"             "places"          
## [70534] "said"             "star"             "glass"           
## [70537] "star"             "glass"            "muttered"        
## [70540] "frodo"            "one"              "answering"       
## [70543] "sleep"            "hardly"           "comprehending"   
## [70546] "yes"              "forgotten"        "light"           
## [70549] "lights"           "go"               "now"             
## [70552] "indeed"           "light"            "alone"           
## [70555] "can"              "help"             "us"              
## [70558] "slowly"           "hand"             "went"            
## [70561] "bosom"            "slowly"           "held"            
## [70564] "aloft"            "phial"            "galadriel"       
## [70567] "moment"           "glimmered"        "faint"           
## [70570] "rising"           "star"             "struggling"      
## [70573] "heavy"            "earthward"        "mists"           
## [70576] "power"            "waxed"            "hope"            
## [70579] "grew"             "frodos"           "mind"            
## [70582] "began"            "burn"             "kindled"         
## [70585] "silver"           "flame"            "minute"          
## [70588] "heart"            "dazzling"         "light"           
## [70591] "though"           "eärendil"         "come"            
## [70594] "high"             "sunset"           "paths"           
## [70597] "last"             "silmaril"         "upon"            
## [70600] "brow"             "darkness"         "receded"         
## [70603] "seemed"           "shine"            "centre"          
## [70606] "globe"            "airy"             "crystal"         
## [70609] "hand"             "held"             "sparkled"        
## [70612] "white"            "fire"             "frodo"           
## [70615] "gazed"            "wonder"           "marvellous"      
## [70618] "gift"             "long"             "carried"         
## [70621] "guessing"         "full"             "worth"           
## [70624] "potency"          "seldom"           "remembered"      
## [70627] "road"             "came"             "morgul"          
## [70630] "vale"             "never"            "used"            
## [70633] "fear"             "revealing"        "light"           
## [70636] "aiya"             "eärendil"         "elenion"         
## [70639] "ancalima"         "cried"            "knew"            
## [70642] "spoken"           "seemed"           "another"         
## [70645] "voice"            "spoke"            "clear"           
## [70648] "untroubled"       "foul"             "air"             
## [70651] "pit"              "potencies"        "middle"          
## [70654] "earth"            "powers"           "night"           
## [70657] "old"              "strong"           "walked"          
## [70660] "darkness"         "heard"            "elves"           
## [70663] "cry"              "cry"              "far"             
## [70666] "back"             "deeps"            "time"            
## [70669] "heeded"           "daunt"            "now"             
## [70672] "even"             "frodo"            "spoke"           
## [70675] "felt"             "great"            "malice"          
## [70678] "bent"             "upon"             "deadly"          
## [70681] "regard"           "considering"      "far"             
## [70684] "tunnel"           "opening"          "reeled"          
## [70687] "stumbled"         "aware"            "eyes"            
## [70690] "growing"          "visible"          "two"             
## [70693] "great"            "clusters"         "many"            
## [70696] "windowed"         "eyes"             "coming"          
## [70699] "menace"           "unmasked"         "last"            
## [70702] "radiance"         "star"             "glass"           
## [70705] "broken"           "thrown"           "back"            
## [70708] "thousand"         "facets"           "behind"          
## [70711] "glitter"          "pale"             "deadly"          
## [70714] "fire"             "began"            "steadily"        
## [70717] "glow"             "within"           "flame"           
## [70720] "kindled"          "deep"             "pit"             
## [70723] "evil"             "thought"          "monstrous"       
## [70726] "abominable"       "eyes"             "bestial"         
## [70729] "yet"              "filled"           "purpose"         
## [70732] "hideous"          "delight"          "gloating"        
## [70735] "prey"             "trapped"          "beyond"          
## [70738] "hope"             "escape"           "frodo"           
## [70741] "sam"              "horror"           "stricken"        
## [70744] "began"            "slowly"           "back"            
## [70747] "away"             "gaze"             "held"            
## [70750] "dreadful"         "stare"            "baleful"         
## [70753] "eyes"             "backed"           "eyes"            
## [70756] "advanced"         "frodos"           "hand"            
## [70759] "wavered"          "slowly"           "phial"           
## [70762] "drooped"          "suddenly"         "released"        
## [70765] "holding"          "spell"            "run"             
## [70768] "little"           "vain"             "panic"           
## [70771] "amusement"        "eyes"             "turned"          
## [70774] "fled"             "together"         "even"            
## [70777] "ran"              "frodo"            "looked"          
## [70780] "back"             "saw"              "terror"          
## [70783] "eyes"             "came"             "leaping"         
## [70786] "behind"           "stench"           "death"           
## [70789] "like"             "cloud"            "stand"           
## [70792] "stand"            "cried"            "desperately"     
## [70795] "running"          "use"              "slowly"          
## [70798] "eyes"             "crept"            "nearer"          
## [70801] "galadriel"        "called"           "gathering"       
## [70804] "courage"          "lifted"           "phial"           
## [70807] "eyes"             "halted"           "moment"          
## [70810] "regard"           "relaxed"          "hint"            
## [70813] "doubt"            "troubled"         "frodos"          
## [70816] "heart"            "flamed"           "within"          
## [70819] "without"          "thinking"         "whether"         
## [70822] "folly"            "despair"          "courage"         
## [70825] "took"             "phial"            "left"            
## [70828] "hand"             "right"            "hand"            
## [70831] "drew"             "sword"            "sting"           
## [70834] "flashed"          "sharp"            "elven"           
## [70837] "blade"            "sparkled"         "silver"          
## [70840] "light"            "edges"            "blue"            
## [70843] "fire"             "flicked"          "holding"         
## [70846] "star"             "aloft"            "bright"          
## [70849] "sword"            "advanced"         "frodo"           
## [70852] "hobbit"           "shire"            "walked"          
## [70855] "steadily"         "meet"             "eyes"            
## [70858] "wavered"          "doubt"            "came"            
## [70861] "light"            "approached"       "one"             
## [70864] "one"              "dimmed"           "slowly"          
## [70867] "drew"             "back"             "brightness"      
## [70870] "deadly"           "ever"             "afflicted"       
## [70873] "sun"              "moon"             "star"            
## [70876] "safe"             "underground"      "now"             
## [70879] "star"             "descended"        "earth"           
## [70882] "still"            "approached"       "eyes"            
## [70885] "began"            "quail"            "one"             
## [70888] "one"              "went"             "dark"            
## [70891] "turned"           "away"             "great"           
## [70894] "bulk"             "beyond"           "lights"          
## [70897] "reach"            "heaved"           "huge"            
## [70900] "shadow"           "gone"             "master"          
## [70903] "master"           "cried"            "sam"             
## [70906] "close"            "behind"           "sword"           
## [70909] "drawn"            "ready"            "stars"           
## [70912] "glory"            "elves"            "make"            
## [70915] "song"             "ever"             "heard"           
## [70918] "may"              "live"             "tell"            
## [70921] "hear"             "sing"             "dont"            
## [70924] "go"               "master"           "dont"            
## [70927] "go"               "den"              "nows"            
## [70930] "chance"           "now"              "lets"            
## [70933] "get"              "foul"             "hole"            
## [70936] "back"             "turned"           "first"           
## [70939] "walking"          "running"          "went"            
## [70942] "floor"            "tunnel"           "rose"            
## [70945] "steeply"          "every"            "stride"          
## [70948] "climbed"          "higher"           "stenches"        
## [70951] "unseen"           "lair"             "strength"        
## [70954] "returned"         "limb"             "heart"           
## [70957] "still"            "hatred"           "watcher"         
## [70960] "lurked"           "behind"           "blind"           
## [70963] "perhaps"          "undefeated"       "still"           
## [70966] "bent"             "death"            "now"             
## [70969] "came"             "flow"             "air"             
## [70972] "meet"             "cold"             "thin"            
## [70975] "opening"          "tunnels"          "end"             
## [70978] "last"             "panting"          "yearning"        
## [70981] "roofless"         "place"            "flung"           
## [70984] "forward"          "amazement"        "staggered"       
## [70987] "tumbling"         "back"             "outlet"          
## [70990] "blocked"          "barrier"          "stone"           
## [70993] "soft"             "little"           "yielding"        
## [70996] "seemed"           "yet"              "strong"          
## [70999] "impervious"       "air"              "filtered"        
## [71002] "hut"              "glimmer"          "light"           
## [71005] "charged"          "hurled"           "back"            
## [71008] "holding"          "aloft"            "phial"           
## [71011] "frodo"            "looked"           "saw"             
## [71014] "greyness"         "radiance"         "star"            
## [71017] "glass"            "pierce"           "illuminate"      
## [71020] "shadow"           "cast"             "light"           
## [71023] "light"            "dissipate"        "across"          
## [71026] "width"            "height"           "tunnel"          
## [71029] "vast"             "web"              "spun"            
## [71032] "orderly"          "web"              "huge"            
## [71035] "spider"           "denser"           "woven"           
## [71038] "far"              "greater"          "thread"          
## [71041] "thick"            "rope"             "sam"             
## [71044] "laughed"          "grimly"           "cobwebs"         
## [71047] "said"             "cobwebs"          "spider"          
## [71050] "em"               "em"               "fury"            
## [71053] "hewed"            "sword"            "thread"          
## [71056] "struck"           "break"            "gave"            
## [71059] "little"           "sprang"           "back"            
## [71062] "like"             "plucked"          "bowstring"       
## [71065] "turning"          "blade"            "tossing"         
## [71068] "sword"            "arm"              "three"           
## [71071] "times"            "sam"              "struck"          
## [71074] "force"            "last"             "one"             
## [71077] "single"           "cord"             "countless"       
## [71080] "cords"            "snapped"          "twisted"         
## [71083] "curling"          "whipping"         "air"             
## [71086] "one"              "end"              "lashed"          
## [71089] "sams"             "hand"             "cried"           
## [71092] "pain"             "starting"         "back"            
## [71095] "drawing"          "hand"             "across"          
## [71098] "mouth"            "take"             "days"            
## [71101] "clear"            "road"             "like"            
## [71104] "said"             "whats"            "done"            
## [71107] "eyes"             "come"             "back"            
## [71110] "seen"             "said"             "frodo"           
## [71113] "still"            "feel"             "looking"         
## [71116] "thinking"         "making"           "plan"            
## [71119] "perhaps"          "light"            "lowered"         
## [71122] "failed"           "quickly"          "come"            
## [71125] "trapped"          "end"              "said"            
## [71128] "sam"              "bitterly"         "anger"           
## [71131] "rising"           "weariness"        "despair"         
## [71134] "gnats"            "net"              "may"             
## [71137] "curse"            "faramir"          "bite"            
## [71140] "gollum"           "bite"             "quick"           
## [71143] "help"             "us"               "now"             
## [71146] "said"             "frodo"            "come"            
## [71149] "let"              "us"               "see"             
## [71152] "sting"            "can"              "elven"           
## [71155] "blade"            "webs"             "horror"          
## [71158] "dark"             "ravines"          "beleriand"       
## [71161] "forged"           "must"             "guard"           
## [71164] "hold"             "back"             "eyes"            
## [71167] "take"             "star"             "glass"           
## [71170] "afraid"           "hold"             "watch"           
## [71173] "frodo"            "stepped"          "great"           
## [71176] "grey"             "net"              "hewed"           
## [71179] "wide"             "sweeping"         "stroke"          
## [71182] "drawing"          "bitter"           "edge"            
## [71185] "swiftly"          "across"           "ladder"          
## [71188] "close"            "strung"           "cords"           
## [71191] "springing"        "away"             "blue"            
## [71194] "gleaming"         "blade"            "shore"           
## [71197] "like"             "scythe"           "grass"           
## [71200] "leaped"           "writhed"          "hung"            
## [71203] "loose"            "great"            "rent"            
## [71206] "made"             "stroke"           "stroke"          
## [71209] "dealt"            "last"             "web"             
## [71212] "within"           "reach"            "shattered"       
## [71215] "upper"            "portion"          "blew"            
## [71218] "swayed"           "like"             "loose"           
## [71221] "veil"             "incoming"         "wind"            
## [71224] "trap"             "broken"           "come"            
## [71227] "cried"            "frodo"            "wild"            
## [71230] "joy"              "escape"           "mouth"           
## [71233] "despair"          "suddenly"         "filled"          
## [71236] "mind"             "head"             "whirled"         
## [71239] "draught"          "potent"           "wine"            
## [71242] "sprang"           "shouting"         "came"            
## [71245] "seemed"           "light"            "dark"            
## [71248] "land"             "eyes"             "passed"          
## [71251] "den"              "night"            "great"           
## [71254] "smokes"           "risen"            "grown"           
## [71257] "thinner"          "last"             "hours"           
## [71260] "sombre"           "day"              "passing"         
## [71263] "red"              "glare"            "mordor"          
## [71266] "died"             "away"             "sullen"          
## [71269] "gloom"            "yet"              "seemed"          
## [71272] "frodo"            "looked"           "upon"            
## [71275] "morning"          "sudden"           "hope"            
## [71278] "almost"           "reached"          "summit"          
## [71281] "wall"             "little"           "higher"          
## [71284] "now"              "cleft"            "cirith"          
## [71287] "ungol"            "dim"              "notch"           
## [71290] "black"            "ridge"            "horns"           
## [71293] "rock"             "darkling"         "sky"             
## [71296] "either"           "side"             "short"           
## [71299] "race"             "sprinters"        "course"          
## [71302] "pass"             "sam"              "cried"           
## [71305] "heeding"          "shrillness"       "voice"           
## [71308] "released"         "choking"          "airs"            
## [71311] "tunnel"           "rang"             "now"             
## [71314] "high"             "wild"             "pass"            
## [71317] "run"              "run"              "well"            
## [71320] "one"              "can"              "stop"            
## [71323] "us"               "sam"              "came"            
## [71326] "behind"           "fast"             "urge"            
## [71329] "legs"             "glad"             "free"            
## [71332] "uneasy"           "ran"              "kept"            
## [71335] "glancing"         "back"             "dark"            
## [71338] "arch"             "tunnel"           "fearing"         
## [71341] "see"              "eyes"             "shape"           
## [71344] "beyond"           "imagining"        "spring"          
## [71347] "pursuit"          "little"           "master"          
## [71350] "know"             "craft"            "shelob"          
## [71353] "many"             "exits"            "lair"            
## [71356] "agelong"          "dwelt"            "evil"            
## [71359] "thing"            "spider"           "form"            
## [71362] "even"             "old"              "lived"           
## [71365] "land"             "elves"            "west"            
## [71368] "now"              "sea"              "beren"           
## [71371] "fought"           "mountains"        "terror"          
## [71374] "doriath"          "came"             "lúthien"         
## [71377] "upon"             "green"            "sward"           
## [71380] "amid"             "hemlocks"         "moonlight"       
## [71383] "long"             "ago"              "shelob"          
## [71386] "came"             "flying"           "ruin"            
## [71389] "tale"             "tells"            "dark"            
## [71392] "years"            "tales"            "come"            
## [71395] "still"            "sauron"           "first"           
## [71398] "stone"            "barad"            "dûr"             
## [71401] "served"           "none"             "drinking"        
## [71404] "blood"            "elves"            "men"             
## [71407] "bloated"          "grown"            "fat"             
## [71410] "endless"          "brooding"         "feasts"          
## [71413] "weaving"          "webs"             "shadow"          
## [71416] "living"           "things"           "food"            
## [71419] "vomit"            "darkness"         "far"             
## [71422] "wide"             "lesser"           "broods"          
## [71425] "bastards"         "miserable"        "mates"           
## [71428] "offspring"        "slew"             "spread"          
## [71431] "glen"             "glen"             "ephel"           
## [71434] "dúath"            "eastern"          "hills"           
## [71437] "dol"              "guldur"           "fastnesses"      
## [71440] "mirkwood"         "none"             "rival"           
## [71443] "shelob"           "great"            "last"            
## [71446] "child"            "ungoliant"        "trouble"         
## [71449] "unhappy"          "world"            "already"         
## [71452] "years"            "gollum"           "beheld"          
## [71455] "sméagol"          "pried"            "dark"            
## [71458] "holes"            "past"             "days"            
## [71461] "bowed"            "worshipped"       "darkness"        
## [71464] "evil"             "walked"           "ways"            
## [71467] "weariness"        "beside"           "cutting"         
## [71470] "light"            "regret"           "promised"        
## [71473] "bring"            "food"             "lust"            
## [71476] "lust"             "little"           "knew"            
## [71479] "cared"            "towers"           "rings"           
## [71482] "anything"         "devised"          "mind"            
## [71485] "hand"             "desired"          "death"           
## [71488] "others"           "mind"             "body"            
## [71491] "glut"             "life"             "alone"           
## [71494] "swollen"          "till"             "mountains"       
## [71497] "longer"           "hold"             "darkness"        
## [71500] "contain"          "desire"           "yet"             
## [71503] "far"              "away"             "long"            
## [71506] "now"              "hungry"           "lurking"         
## [71509] "den"              "power"            "sauron"          
## [71512] "grew"             "light"            "living"          
## [71515] "things"           "forsook"          "borders"         
## [71518] "city"             "valley"           "dead"            
## [71521] "elf"              "man"              "came"            
## [71524] "near"             "unhappy"          "orcs"            
## [71527] "poor"             "food"             "wary"            
## [71530] "must"             "eat"              "however"         
## [71533] "busily"           "delved"           "new"             
## [71536] "winding"          "passages"         "pass"            
## [71539] "tower"            "ever"             "found"           
## [71542] "way"              "snare"            "lusted"          
## [71545] "sweeter"          "meat"             "gollum"          
## [71548] "brought"          "well"             "see"             
## [71551] "well"             "see"              "said"            
## [71554] "often"            "evil"             "mood"            
## [71557] "walked"           "dangerous"        "road"            
## [71560] "emyn"             "muil"             "morgul"          
## [71563] "vale"             "well"             "see"             
## [71566] "may"              "well"             "yes"             
## [71569] "may"              "well"             "throws"          
## [71572] "away"             "bones"            "empty"           
## [71575] "garments"         "shall"            "find"            
## [71578] "shall"            "get"              "precious"        
## [71581] "reward"           "poor"             "sméagol"         
## [71584] "brings"           "nice"             "food"            
## [71587] "well"             "save"             "precious"        
## [71590] "promised"         "yes"              "weve"            
## [71593] "got"              "safe"             "shell"           
## [71596] "know"             "yes"              "well"            
## [71599] "pay"              "back"             "precious"        
## [71602] "well"             "pay"              "everyone"        
## [71605] "back"             "thought"          "inner"           
## [71608] "chamber"          "cunning"          "still"           
## [71611] "hoped"            "hide"             "even"            
## [71614] "come"             "bowed"            "low"             
## [71617] "companions"       "slept"            "sauron"          
## [71620] "knew"             "lurked"           "pleased"         
## [71623] "dwell"            "hungry"           "unabated"        
## [71626] "malice"           "sure"             "watch"           
## [71629] "upon"             "ancient"          "path"            
## [71632] "land"             "skill"            "devised"         
## [71635] "orcs"             "useful"           "slaves"          
## [71638] "plenty"           "now"              "shelob"          
## [71641] "caught"           "stay"             "appetite"        
## [71644] "welcome"          "spare"            "sometimes"       
## [71647] "man"              "may"              "cast"            
## [71650] "dainty"           "cat"              "cat"             
## [71653] "calls"            "owns"             "sauron"          
## [71656] "send"             "prisoners"        "better"          
## [71659] "uses"             "driven"           "hole"            
## [71662] "report"           "brought"          "back"            
## [71665] "play"             "made"             "lived"           
## [71668] "delighting"       "devices"          "feared"          
## [71671] "assault"          "wrath"            "end"             
## [71674] "wickedness"       "never"            "yet"             
## [71677] "fly"              "escaped"          "shelobs"         
## [71680] "webs"             "greater"          "now"             
## [71683] "rage"             "hunger"           "nothing"         
## [71686] "evil"             "stirred"          "poor"            
## [71689] "sam"              "know"             "except"          
## [71692] "fear"             "growing"          "menace"          
## [71695] "see"              "weight"           "become"          
## [71698] "burden"           "run"              "feet"            
## [71701] "seemed"           "leaden"           "dread"           
## [71704] "round"            "enemies"          "pass"            
## [71707] "master"           "fey"              "mood"            
## [71710] "running"          "heedlessly"       "meet"            
## [71713] "turning"          "eyes"             "away"            
## [71716] "shadow"           "behind"           "deep"            
## [71719] "gloom"            "beneath"          "cliff"           
## [71722] "upon"             "left"             "looked"          
## [71725] "ahead"            "saw"              "two"             
## [71728] "things"           "increased"        "dismay"          
## [71731] "saw"              "sword"            "frodo"           
## [71734] "still"            "held"             "unsheathed"      
## [71737] "glittering"       "blue"             "flame"           
## [71740] "saw"              "though"           "sky"             
## [71743] "behind"           "now"              "dark"            
## [71746] "still"            "window"           "tower"           
## [71749] "glowing"          "red"              "orcs"            
## [71752] "muttered"         "well"             "never"           
## [71755] "rush"             "like"             "theres"          
## [71758] "orcs"             "worse"            "orcs"            
## [71761] "returning"        "quickly"          "long"            
## [71764] "habit"            "secrecy"          "closed"          
## [71767] "hand"             "precious"         "phial"           
## [71770] "still"            "bore"             "red"             
## [71773] "living"           "blood"            "hand"            
## [71776] "shone"            "moment"           "thrust"          
## [71779] "revealing"        "light"            "deep"            
## [71782] "pocket"           "near"             "breast"          
## [71785] "drew"             "elven"            "cloak"           
## [71788] "now"              "tried"            "quicken"         
## [71791] "pace"             "master"           "gaining"         
## [71794] "already"          "twenty"           "strides"         
## [71797] "ahead"            "flitting"         "like"            
## [71800] "shadow"           "soon"             "lost"            
## [71803] "sight"            "grey"             "world"           
## [71806] "hardly"           "sam"              "hidden"          
## [71809] "light"            "star"             "glass"           
## [71812] "came"             "little"           "way"             
## [71815] "ahead"            "left"             "saw"             
## [71818] "suddenly"         "issuing"          "black"           
## [71821] "hole"             "shadow"           "cliff"           
## [71824] "loathly"          "shape"            "ever"            
## [71827] "beheld"           "horrible"         "beyond"          
## [71830] "horror"           "evil"             "dream"           
## [71833] "like"             "spider"           "huger"           
## [71836] "great"            "hunting"          "beasts"          
## [71839] "terrible"         "evil"             "purpose"         
## [71842] "remorseless"      "eyes"             "eyes"            
## [71845] "thought"          "daunted"          "defeated"        
## [71848] "lit"              "fell"             "light"           
## [71851] "clustering"       "thrust"           "head"            
## [71854] "great"            "horns"            "behind"          
## [71857] "short"            "stalk"            "like"            
## [71860] "neck"             "huge"             "swollen"         
## [71863] "body"             "vast"             "bloated"         
## [71866] "bag"              "swaying"          "sagging"         
## [71869] "legs"             "great"            "bulk"            
## [71872] "black"            "blotched"         "livid"           
## [71875] "marks"            "belly"            "underneath"      
## [71878] "pale"             "luminous"         "gave"            
## [71881] "forth"            "stench"           "legs"            
## [71884] "bent"             "great"            "knobbed"         
## [71887] "joints"           "high"             "back"            
## [71890] "hairs"            "stuck"            "like"            
## [71893] "steel"            "spines"           "legs"            
## [71896] "end"              "claw"             "soon"            
## [71899] "squeezed"         "soft"             "squelching"      
## [71902] "body"             "folded"           "limbs"           
## [71905] "upper"            "exit"             "lair"            
## [71908] "moved"            "horrible"         "speed"           
## [71911] "now"              "running"          "creaking"        
## [71914] "legs"             "now"              "making"          
## [71917] "sudden"           "bound"            "sam"             
## [71920] "master"           "either"           "see"             
## [71923] "sam"              "avoided"          "moment"          
## [71926] "bearer"           "light"            "fixed"           
## [71929] "intent"           "upon"             "one"             
## [71932] "prey"             "upon"             "frodo"           
## [71935] "bereft"           "phial"            "running"         
## [71938] "heedless"         "path"             "unaware"         
## [71941] "yet"              "peril"            "swiftly"         
## [71944] "ran"              "shelob"           "swifter"         
## [71947] "leaps"            "sam"              "gasped"          
## [71950] "gathered"         "remaining"        "breath"          
## [71953] "shout"            "look"             "behind"          
## [71956] "yelled"           "look"             "master"          
## [71959] "im"               "suddenly"         "cry"             
## [71962] "stifled"          "long"             "clammy"          
## [71965] "hand"             "went"             "mouth"           
## [71968] "another"          "caught"           "neck"            
## [71971] "something"        "wrapped"          "leg"             
## [71974] "taken"            "guard"            "toppled"         
## [71977] "backwards"        "arms"             "attacker"        
## [71980] "got"              "hissed"           "gollum"          
## [71983] "ear"              "last"             "precious"        
## [71986] "weve"             "got"              "yes"             
## [71989] "nassty"           "hobbit"           "takes"           
## [71992] "one"              "shell"            "get"             
## [71995] "yes"              "shelob"           "get"             
## [71998] "sméagol"          "promised"         "wont"            
## [72001] "hurt"             "master"           "hes"             
## [72004] "got"              "nassty"           "filthy"          
## [72007] "little"           "sneak"            "spat"            
## [72010] "sams"             "neck"             "fury"            
## [72013] "treachery"        "desperation"      "delay"           
## [72016] "master"           "deadly"           "peril"           
## [72019] "gave"             "sam"              "sudden"          
## [72022] "violence"         "strength"         "far"             
## [72025] "beyond"           "anything"         "gollum"          
## [72028] "expected"         "slow"             "stupid"          
## [72031] "hobbit"           "thought"          "gollum"          
## [72034] "twisted"          "quickly"          "fiercely"        
## [72037] "hold"             "sams"             "mouth"           
## [72040] "slipped"          "sam"              "ducked"          
## [72043] "lunged"           "forward"          "trying"          
## [72046] "tear"             "away"             "grip"            
## [72049] "neck"             "sword"            "still"           
## [72052] "hand"             "left"             "arm"             
## [72055] "hanging"          "thong"            "faramirs"        
## [72058] "staff"            "desperately"      "tried"           
## [72061] "turn"             "stab"             "enemy"           
## [72064] "gollum"           "quick"            "long"            
## [72067] "right"            "arm"              "shot"            
## [72070] "grabbed"          "sams"             "wrist"           
## [72073] "fingers"          "like"             "vice"            
## [72076] "slowly"           "relentlessly"     "bent"            
## [72079] "hand"             "forward"          "till"            
## [72082] "cry"              "pain"             "sam"             
## [72085] "released"         "sword"            "fell"            
## [72088] "ground"           "gollums"          "hand"            
## [72091] "tightening"       "sams"             "throat"          
## [72094] "sam"              "played"           "last"            
## [72097] "trick"            "strength"         "pulled"          
## [72100] "away"             "got"              "feet"            
## [72103] "firmly"           "planted"          "suddenly"        
## [72106] "drove"            "legs"             "ground"          
## [72109] "whole"            "force"            "hurled"          
## [72112] "backwards"        "expecting"        "even"            
## [72115] "simple"           "trick"            "sam"             
## [72118] "gollum"           "fell"             "sam"             
## [72121] "top"              "received"         "weight"          
## [72124] "sturdy"           "hobbit"           "stomach"         
## [72127] "sharp"            "hiss"             "came"            
## [72130] "second"           "hand"             "upon"            
## [72133] "sams"             "throat"           "loosened"        
## [72136] "fingers"          "still"            "gripped"         
## [72139] "sword"            "hand"             "sam"             
## [72142] "tore"             "forward"          "away"            
## [72145] "stood"            "quickly"          "wheeled"         
## [72148] "away"             "right"            "pivoted"         
## [72151] "wrist"            "held"             "gollum"          
## [72154] "laying"           "hold"             "staff"           
## [72157] "left"             "hand"             "sam"             
## [72160] "swung"            "came"             "whistling"       
## [72163] "crack"            "gollums"          "outstretched"    
## [72166] "arm"              "just"             "elbow"           
## [72169] "squeal"           "gollum"           "let"             
## [72172] "go"               "sam"              "waded"           
## [72175] "waiting"          "change"           "staff"           
## [72178] "left"             "right"            "dealt"           
## [72181] "another"          "savage"           "blow"            
## [72184] "quick"            "snake"            "gollum"          
## [72187] "slithered"        "aside"            "stroke"          
## [72190] "aimed"            "head"             "fell"            
## [72193] "across"           "back"             "staff"           
## [72196] "cracked"          "broke"            "enough"          
## [72199] "grabbing"         "behind"           "old"             
## [72202] "game"             "seldom"           "failed"          
## [72205] "time"             "misled"           "spite"           
## [72208] "made"             "mistake"          "speaking"        
## [72211] "gloating"         "hands"            "victims"         
## [72214] "neck"             "everything"       "gone"            
## [72217] "wrong"            "beautiful"        "plan"            
## [72220] "since"            "horrible"         "light"           
## [72223] "unexpectedly"     "appeared"         "darkness"        
## [72226] "now"              "face"             "face"            
## [72229] "furious"          "enemy"            "little"          
## [72232] "less"             "size"             "fight"           
## [72235] "sam"              "swept"            "sword"           
## [72238] "ground"           "raised"           "gollum"          
## [72241] "squealed"         "springing"        "aside"           
## [72244] "fours"            "jumped"           "away"            
## [72247] "one"              "big"              "bound"           
## [72250] "like"             "frog"             "sam"             
## [72253] "reach"            "running"          "amazing"         
## [72256] "speed"            "back"             "towards"         
## [72259] "tunnel"           "sword"            "hand"            
## [72262] "sam"              "went"             "moment"          
## [72265] "forgotten"        "everything"       "else"            
## [72268] "red"              "fury"             "brain"           
## [72271] "desire"           "kill"             "gollum"          
## [72274] "overtake"         "gollum"           "gone"            
## [72277] "dark"             "hole"             "stood"           
## [72280] "stench"           "came"             "meet"            
## [72283] "like"             "clap"             "thunder"         
## [72286] "thought"          "frodo"            "monster"         
## [72289] "smote"            "upon"             "sams"            
## [72292] "mind"             "spun"             "round"           
## [72295] "rushed"           "wildly"           "path"            
## [72298] "calling"          "calling"          "masters"         
## [72301] "name"             "late"             "far"             
## [72304] "gollums"          "plot"             "succeeded"       
## [72307] "chapter"          "choices"          "master"          
## [72310] "samwise"          "frodo"            "lying"           
## [72313] "face"             "upward"           "ground"          
## [72316] "monster"          "bending"          "intent"          
## [72319] "upon"             "victim"           "took"            
## [72322] "heed"             "sam"              "cries"           
## [72325] "close"            "hand"             "rushed"          
## [72328] "saw"              "frodo"            "already"         
## [72331] "bound"            "cords"            "wound"           
## [72334] "ankle"            "shoulder"         "monster"         
## [72337] "great"            "forelegs"         "beginning"       
## [72340] "half"             "lift"             "half"            
## [72343] "drag"             "body"             "away"            
## [72346] "near"             "side"             "lay"             
## [72349] "gleaming"         "ground"           "elven"           
## [72352] "blade"            "fallen"           "useless"         
## [72355] "grasp"            "sam"              "wait"            
## [72358] "wonder"           "done"             "whether"         
## [72361] "brave"            "loyal"            "filled"          
## [72364] "rage"             "sprang"           "forward"         
## [72367] "yell"             "seized"           "masters"         
## [72370] "sword"            "left"             "hand"            
## [72373] "charged"          "onslaught"        "fierce"          
## [72376] "ever"             "seen"             "savage"          
## [72379] "world"            "beasts"           "desperate"       
## [72382] "small"            "creature"         "armed"           
## [72385] "little"           "teeth"            "alone"           
## [72388] "spring"           "upon"             "tower"           
## [72391] "horn"             "hide"             "stands"          
## [72394] "fallen"           "mate"             "disturbed"       
## [72397] "gloating"         "dream"            "small"           
## [72400] "yell"             "turned"           "slowly"          
## [72403] "dreadful"         "malice"           "glance"          
## [72406] "upon"             "almost"           "aware"           
## [72409] "fury"             "upon"             "greater"         
## [72412] "known"            "countless"        "years"           
## [72415] "shining"          "sword"            "bit"             
## [72418] "upon"             "foot"             "shore"           
## [72421] "away"             "claw"             "sam"             
## [72424] "sprang"           "inside"           "arches"          
## [72427] "legs"             "quick"            "upthrust"        
## [72430] "hand"             "stabbed"          "clustered"       
## [72433] "eyes"             "upon"             "lowered"         
## [72436] "head"             "one"              "great"           
## [72439] "eye"              "went"             "dark"            
## [72442] "now"              "miserable"        "creature"        
## [72445] "right"            "moment"           "reach"           
## [72448] "sting"            "claws"            "vast"            
## [72451] "belly"            "putrid"           "light"           
## [72454] "stench"           "almost"           "smote"           
## [72457] "still"            "fury"             "held"            
## [72460] "one"              "blow"             "sink"            
## [72463] "upon"             "smothering"       "little"          
## [72466] "impudence"        "courage"          "slashed"         
## [72469] "bright"           "elven"            "blade"           
## [72472] "across"           "desperate"        "strength"        
## [72475] "shelob"           "dragons"          "softer"          
## [72478] "spot"             "save"             "eyes"            
## [72481] "knobbed"          "pitted"           "corruption"      
## [72484] "age"              "old"              "hide"            
## [72487] "ever"             "thickened"        "within"          
## [72490] "layer"            "layer"            "evil"            
## [72493] "growth"           "blade"            "scored"          
## [72496] "dreadful"         "gash"             "hideous"         
## [72499] "folds"            "pierced"          "strength"        
## [72502] "men"              "though"           "elf"             
## [72505] "dwarf"            "forge"            "steel"           
## [72508] "hand"             "beren"            "túrin"           
## [72511] "wield"            "yielded"          "stroke"          
## [72514] "heaved"           "great"            "bag"             
## [72517] "belly"            "high"             "sams"            
## [72520] "head"             "poison"           "frothed"         
## [72523] "bubbled"          "wound"            "now"             
## [72526] "splaying"         "legs"             "drove"           
## [72529] "huge"             "bulk"             "soon"            
## [72532] "sam"              "still"            "stood"           
## [72535] "upon"             "feet"             "dropping"        
## [72538] "sword"            "hands"            "held"            
## [72541] "elven"            "blade"            "point"           
## [72544] "upwards"          "fending"          "ghastly"         
## [72547] "roof"             "shelob"           "driving"         
## [72550] "force"            "cruel"            "strength"        
## [72553] "greater"          "warriors"         "hand"            
## [72556] "thrust"           "upon"             "bitter"          
## [72559] "spike"            "deep"             "deep"            
## [72562] "pricked"          "sam"              "crushed"         
## [72565] "slowly"           "ground"           "anguish"         
## [72568] "shelob"           "ever"             "known"           
## [72571] "dreamed"          "knowing"          "long"            
## [72574] "world"            "wickedness"       "doughtiest"      
## [72577] "soldier"          "old"              "gondor"          
## [72580] "savage"           "orc"              "entrapped"       
## [72583] "ever"             "thus"             "endured"         
## [72586] "set"              "blade"            "beloved"         
## [72589] "flesh"            "shudder"          "went"            
## [72592] "heaving"          "wrenching"        "away"            
## [72595] "pain"             "bent"             "writhing"        
## [72598] "limbs"            "beneath"          "sprang"          
## [72601] "backwards"        "convulsive"       "leap"            
## [72604] "sam"              "fallen"           "knees"           
## [72607] "frodos"           "head"             "senses"          
## [72610] "reeling"          "foul"             "stench"          
## [72613] "two"              "hands"            "still"           
## [72616] "gripping"         "hilt"             "sword"           
## [72619] "mist"             "eyes"             "aware"           
## [72622] "dimly"            "frodos"           "face"            
## [72625] "stubbornly"       "fought"           "master"          
## [72628] "drag"             "swoon"            "upon"            
## [72631] "slowly"           "raised"           "head"            
## [72634] "saw"              "paces"            "away"            
## [72637] "eyeing"           "beak"             "drabbling"       
## [72640] "spittle"          "venom"            "green"           
## [72643] "ooze"             "trickling"        "wounded"         
## [72646] "eye"              "crouched"         "shuddering"      
## [72649] "belly"            "splayed"          "upon"            
## [72652] "ground"           "great"            "bows"            
## [72655] "legs"             "quivering"        "gathered"        
## [72658] "another"          "spring"           "time"            
## [72661] "crush"            "sting"            "death"           
## [72664] "little"           "bite"             "poison"          
## [72667] "still"            "struggling"       "meat"            
## [72670] "time"             "slay"             "rend"            
## [72673] "even"             "sam"              "crouched"        
## [72676] "looking"          "seeing"           "death"           
## [72679] "eyes"             "thought"          "came"            
## [72682] "remote"           "voice"            "spoken"          
## [72685] "fumbled"          "breast"           "left"            
## [72688] "hand"             "found"            "sought"          
## [72691] "cold"             "hard"             "solid"           
## [72694] "seemed"           "touch"            "phantom"         
## [72697] "world"            "horror"           "phial"           
## [72700] "galadriel"        "galadriel"        "said"            
## [72703] "faintly"          "heard"            "voices"          
## [72706] "far"              "clear"            "crying"          
## [72709] "elves"            "walked"           "stars"           
## [72712] "beloved"          "shadows"          "shire"           
## [72715] "music"            "elves"            "came"            
## [72718] "sleep"            "hall"             "fire"            
## [72721] "house"            "elrond"           "gilthoniel"      
## [72724] "elbereth"         "tongue"           "loosed"          
## [72727] "voice"            "cried"            "language"        
## [72730] "know"             "elbereth"         "gilthoniel"      
## [72733] "menel"            "palan"            "diriel"          
## [72736] "le"               "nallon"           "sí"              
## [72739] "dinguruthos"      "tiro"             "nin"             
## [72742] "fanuilos"         "staggered"        "feet"            
## [72745] "samwise"          "hobbit"           "hamfasts"        
## [72748] "son"              "now"              "come"            
## [72751] "filth"            "cried"            "youve"           
## [72754] "hurt"             "master"           "brute"           
## [72757] "youll"            "pay"              "going"           
## [72760] "well"             "settle"           "first"           
## [72763] "come"             "taste"            "indomitable"     
## [72766] "spirit"           "set"              "potency"         
## [72769] "motion"           "glass"            "blazed"          
## [72772] "suddenly"         "like"             "white"           
## [72775] "torch"            "hand"             "flamed"          
## [72778] "like"             "star"             "leaping"         
## [72781] "firmament"        "sears"            "dark"            
## [72784] "air"              "intolerable"      "light"           
## [72787] "terror"           "heaven"           "ever"            
## [72790] "burned"           "shelobs"          "face"            
## [72793] "beams"            "entered"          "wounded"         
## [72796] "head"             "scored"           "unbearable"      
## [72799] "pain"             "dreadful"         "infection"       
## [72802] "light"            "spread"           "eye"             
## [72805] "eye"              "fell"             "back"            
## [72808] "beating"          "air"              "forelegs"        
## [72811] "sight"            "blasted"          "inner"           
## [72814] "lightnings"       "mind"             "agony"           
## [72817] "turning"          "maimed"           "head"            
## [72820] "away"             "rolled"           "aside"           
## [72823] "began"            "crawl"            "claw"            
## [72826] "claw"             "towards"          "opening"         
## [72829] "dark"             "cliff"            "behind"          
## [72832] "sam"              "came"             "reeling"         
## [72835] "like"             "drunken"          "man"             
## [72838] "came"             "shelob"           "cowed"           
## [72841] "last"             "shrunken"         "defeat"          
## [72844] "jerked"           "quivered"         "tried"           
## [72847] "hasten"           "reached"          "hole"            
## [72850] "squeezing"        "leaving"          "trail"           
## [72853] "green"            "yellow"           "slime"           
## [72856] "slipped"          "even"             "sam"             
## [72859] "hewed"            "last"             "stroke"          
## [72862] "dragging"         "legs"             "fell"            
## [72865] "ground"           "shelob"           "gone"            
## [72868] "whether"          "lay"              "long"            
## [72871] "lair"             "nursing"          "malice"          
## [72874] "misery"           "slow"             "years"           
## [72877] "darkness"         "healed"           "within"          
## [72880] "rebuilding"       "clustered"        "eyes"            
## [72883] "hunger"           "like"             "death"           
## [72886] "spun"             "dreadful"         "snares"          
## [72889] "glens"            "mountains"        "shadow"          
## [72892] "tale"             "tell"             "sam"             
## [72895] "left"             "alone"            "wearily"         
## [72898] "evening"          "nameless"         "land"            
## [72901] "fell"             "upon"             "place"           
## [72904] "battle"           "crawled"          "back"            
## [72907] "master"           "master"           "dear"            
## [72910] "master"           "said"             "frodo"           
## [72913] "speak"            "run"              "forward"         
## [72916] "eager"            "rejoicing"        "free"            
## [72919] "shelob"           "hideous"          "speed"           
## [72922] "come"             "behind"           "one"             
## [72925] "swift"            "stroke"           "stung"           
## [72928] "neck"             "lay"              "now"             
## [72931] "pale"             "heard"            "voice"           
## [72934] "move"             "master"           "dear"            
## [72937] "master"           "said"             "sam"             
## [72940] "long"             "silence"          "waited"          
## [72943] "listening"        "vain"             "quickly"         
## [72946] "cut"              "away"             "binding"         
## [72949] "cords"            "laid"             "head"            
## [72952] "upon"             "frodos"           "breast"          
## [72955] "mouth"            "stir"             "life"            
## [72958] "find"             "feel"             "faintest"        
## [72961] "flutter"          "heart"            "often"           
## [72964] "chafed"           "masters"          "hands"           
## [72967] "feet"             "touched"          "brow"            
## [72970] "cold"             "frodo"            "mr"              
## [72973] "frodo"            "called"           "dont"            
## [72976] "leave"            "alone"            "sam"             
## [72979] "calling"          "dont"             "go"              
## [72982] "cant"             "follow"           "wake"            
## [72985] "mr"               "frodo"            "wake"            
## [72988] "frodo"            "dear"             "dear"            
## [72991] "wake"             "anger"            "surged"          
## [72994] "hint"             "ran"              "masters"         
## [72997] "body"             "rage"             "stabbing"        
## [73000] "air"              "smiting"          "stones"          
## [73003] "shouting"         "challenges"       "presently"       
## [73006] "came"             "back"             "bending"         
## [73009] "looked"           "frodos"           "face"            
## [73012] "pale"             "beneath"          "dusk"            
## [73015] "suddenly"         "saw"              "picture"         
## [73018] "revealed"         "mirror"           "galadriel"       
## [73021] "lórien"           "frodo"            "pale"            
## [73024] "face"             "lying"            "fast"            
## [73027] "asleep"           "great"            "dark"            
## [73030] "cliff"            "fast"             "asleep"          
## [73033] "thought"          "hes"              "dead"            
## [73036] "said"             "asleep"           "dead"            
## [73039] "said"             "words"            "set"             
## [73042] "venom"            "work"             "seemed"          
## [73045] "hue"              "face"             "grew"            
## [73048] "livid"            "green"            "black"           
## [73051] "despair"          "came"             "sam"             
## [73054] "bowed"            "ground"           "drew"            
## [73057] "grey"             "hood"             "head"            
## [73060] "night"            "came"             "heart"           
## [73063] "knew"             "last"             "blackness"       
## [73066] "passed"           "sam"              "looked"          
## [73069] "shadows"          "many"             "minutes"         
## [73072] "hours"            "world"            "gone"            
## [73075] "dragging"         "tell"             "still"           
## [73078] "place"            "still"            "master"          
## [73081] "lay"              "beside"           "dead"            
## [73084] "mountains"        "crumbled"         "earth"           
## [73087] "fallen"           "ruin"             "shall"           
## [73090] "shall"            "said"             "come"            
## [73093] "way"              "nothing"          "remembered"      
## [73096] "voice"            "speaking"         "words"           
## [73099] "time"             "understand"       "beginning"       
## [73102] "journey"          "something"        "end"             
## [73105] "must"             "see"              "sir"             
## [73108] "understand"       "can"              "leave"           
## [73111] "mr"               "frodo"            "dead"            
## [73114] "unburied"         "top"              "mountains"       
## [73117] "go"               "home"             "go"              
## [73120] "go"               "repeated"         "moment"          
## [73123] "doubt"            "fear"             "shook"           
## [73126] "go"               "ive"              "got"             
## [73129] "leave"            "last"             "began"           
## [73132] "weep"             "going"            "frodo"           
## [73135] "composed"         "body"             "folded"          
## [73138] "cold"             "hands"            "upon"            
## [73141] "breast"           "wrapped"          "cloak"           
## [73144] "laid"             "sword"            "one"             
## [73147] "side"             "staff"            "faramir"         
## [73150] "given"            "im"               "go"              
## [73153] "said"             "must"             "take"            
## [73156] "sword"            "leave"            "mr"              
## [73159] "frodo"            "ill"              "put"             
## [73162] "one"              "lie"              "lay"             
## [73165] "old"              "king"             "barrow"          
## [73168] "youve"            "got"              "beautiful"       
## [73171] "mithril"          "coat"             "old"             
## [73174] "mr"               "bilbo"            "star"            
## [73177] "glass"            "mr"               "frodo"           
## [73180] "lend"             "ill"              "need"            
## [73183] "ill"              "always"           "dark"            
## [73186] "now"              "good"             "lady"            
## [73189] "gave"             "maybe"            "shed"            
## [73192] "understand"       "understand"       "mr"              
## [73195] "frodo"            "ive"              "got"             
## [73198] "go"               "go"               "yet"             
## [73201] "knelt"            "held"             "frodos"          
## [73204] "hand"             "release"          "time"            
## [73207] "went"             "still"            "knelt"           
## [73210] "holding"          "masters"          "hand"            
## [73213] "heart"            "keeping"          "debate"          
## [73216] "now"              "tried"            "find"            
## [73219] "strength"         "tear"             "away"            
## [73222] "go"               "lonely"           "journey"         
## [73225] "vengeance"        "go"               "anger"           
## [73228] "bear"             "roads"            "world"           
## [73231] "pursuing"         "last"             "gollum"          
## [73234] "gollum"           "die"              "corner"          
## [73237] "set"              "worth"            "leave"           
## [73240] "master"           "bring"            "back"            
## [73243] "nothing"          "better"           "dead"            
## [73246] "together"         "lonely"           "journey"         
## [73249] "looked"           "bright"           "point"           
## [73252] "sword"            "thought"          "places"          
## [73255] "behind"           "black"            "brink"           
## [73258] "empty"            "fall"             "nothingness"     
## [73261] "escape"           "way"              "nothing"         
## [73264] "even"             "grieve"           "set"             
## [73267] "cried"            "now"              "seemed"          
## [73270] "plainly"          "know"             "hard"            
## [73273] "answer"           "see"              "another"         
## [73276] "lonely"           "journey"          "worst"           
## [73279] "alone"            "go"               "crack"           
## [73282] "doom"             "quailed"          "still"           
## [73285] "resolve"          "grew"             "take"            
## [73288] "ring"             "council"          "gave"            
## [73291] "answer"           "came"             "council"         
## [73294] "gave"             "companions"       "errand"          
## [73297] "fail"             "last"             "company"         
## [73300] "errand"           "must"             "fail"            
## [73303] "wish"             "wasnt"            "last"            
## [73306] "groaned"          "wish"             "old"             
## [73309] "gandalf"          "hare"             "somebody"        
## [73312] "left"             "alone"            "make"            
## [73315] "mind"             "im"               "sure"            
## [73318] "go"               "wrong"            "go"              
## [73321] "taking"           "ring"             "putting"         
## [73324] "forward"          "havent"           "put"             
## [73327] "forward"          "youve"            "put"             
## [73330] "forward"          "right"            "proper"          
## [73333] "person"           "mr"               "frodo"           
## [73336] "wasnt"            "might"            "say"             
## [73339] "mr"               "bilbo"            "didnt"           
## [73342] "choose"           "ah"               "well"            
## [73345] "must"             "make"             "mind"            
## [73348] "make"             "ill"              "sure"            
## [73351] "go"               "wrong"            "thatd"           
## [73354] "sam"              "gamgee"           "let"             
## [73357] "see"              "now"              "found"           
## [73360] "mr"               "frodos"           "found"           
## [73363] "things"           "well"             "enemy"           
## [73366] "get"              "thats"            "end"             
## [73369] "us"               "lorien"           "rivendell"       
## [73372] "shire"            "time"             "lose"            
## [73375] "itll"             "end"              "anyway"          
## [73378] "wars"             "begun"            "likely"          
## [73381] "things"           "going"            "enemys"          
## [73384] "way"              "already"          "chance"          
## [73387] "go"               "back"             "get"             
## [73390] "advice"           "permission"       "sit"             
## [73393] "till"             "come"             "kill"            
## [73396] "masters"          "body"             "gets"            
## [73399] "take"             "go"               "drew"            
## [73402] "deep"             "breath"           "take"            
## [73405] "stooped"          "gently"           "undid"           
## [73408] "clasp"            "neck"             "slipped"         
## [73411] "hand"             "inside"           "frodos"          
## [73414] "tunic"            "hand"             "raising"         
## [73417] "head"             "kissed"           "cold"            
## [73420] "forehead"         "softly"           "drew"            
## [73423] "chain"            "head"             "lay"             
## [73426] "quietly"          "back"             "rest"            
## [73429] "change"           "came"             "still"           
## [73432] "face"             "tokens"           "sam"             
## [73435] "convinced"        "last"             "frodo"           
## [73438] "died"             "laid"             "aside"           
## [73441] "quest"            "good"             "bye"             
## [73444] "master"           "dear"             "murmured"        
## [73447] "forgive"          "sam"              "hell"            
## [73450] "come"             "back"             "spot"            
## [73453] "jobs"             "done"             "manages"         
## [73456] "hell"             "leave"            "rest"            
## [73459] "quiet"            "till"             "come"            
## [73462] "may"              "foul"             "creature"        
## [73465] "come"             "anigh"            "lady"            
## [73468] "hear"             "give"             "one"             
## [73471] "wish"             "wish"             "come"            
## [73474] "back"             "find"             "good"            
## [73477] "bye"              "bent"             "neck"            
## [73480] "put"              "chain"            "upon"            
## [73483] "head"             "bowed"            "ground"          
## [73486] "weight"           "ring"             "great"           
## [73489] "stone"            "strung"           "slowly"          
## [73492] "weight"           "became"           "less"            
## [73495] "new"              "strength"         "grew"            
## [73498] "raised"           "head"             "great"           
## [73501] "effort"           "got"              "feet"            
## [73504] "found"            "walk"             "bear"            
## [73507] "burden"           "moment"           "lifted"          
## [73510] "phial"            "looked"           "master"          
## [73513] "light"            "burned"           "gently"          
## [73516] "now"              "soft"             "radiance"        
## [73519] "evening"          "star"             "summer"          
## [73522] "light"            "frodos"           "face"            
## [73525] "fair"             "hue"              "pale"            
## [73528] "beautiful"        "elvish"           "beauty"          
## [73531] "one"              "long"             "passed"          
## [73534] "shadows"          "bitter"           "comfort"         
## [73537] "last"             "sight"            "sam"             
## [73540] "turned"           "hid"              "light"           
## [73543] "stumbled"         "growing"          "dark"            
## [73546] "far"              "go"               "tunnel"          
## [73549] "way"              "behind"           "cleft"           
## [73552] "couple"           "hundred"          "yards"           
## [73555] "ahead"            "less"             "path"            
## [73558] "visible"          "dusk"             "deep"            
## [73561] "rut"              "worn"             "ages"            
## [73564] "passage"          "running"          "now"             
## [73567] "gently"           "long"             "trough"          
## [73570] "cliffs"           "either"           "side"            
## [73573] "trough"           "narrowed"         "rapidly"         
## [73576] "soon"             "sam"              "came"            
## [73579] "long"             "flight"           "broad"           
## [73582] "shallow"          "steps"            "now"             
## [73585] "orc"              "tower"            "right"           
## [73588] "frowning"         "black"            "red"             
## [73591] "eye"              "glowed"           "now"             
## [73594] "hidden"           "dark"             "shadow"          
## [73597] "coming"           "top"              "steps"           
## [73600] "cleft"            "last"             "ive"             
## [73603] "made"             "mind"             "kept"            
## [73606] "saying"           "though"           "done"            
## [73609] "best"             "think"            "altogether"      
## [73612] "grain"            "nature"           "got"             
## [73615] "wrong"            "muttered"         "done"            
## [73618] "sheer"            "sides"            "cleft"           
## [73621] "closed"           "reached"          "actual"          
## [73624] "summit"           "looked"           "last"            
## [73627] "path"             "descending"       "nameless"        
## [73630] "land"             "turned"           "moment"          
## [73633] "motionless"       "intolerable"      "doubt"           
## [73636] "looked"           "back"             "still"           
## [73639] "see"              "like"             "small"           
## [73642] "blot"             "gathering"        "gloom"           
## [73645] "mouth"            "tunnel"           "thought"         
## [73648] "see"              "guess"            "frodo"           
## [73651] "lay"              "fancied"          "glimmer"         
## [73654] "ground"           "perhaps"          "trick"           
## [73657] "tears"            "peered"           "high"            
## [73660] "stony"            "place"            "life"            
## [73663] "fallen"           "ruin"             "wish"            
## [73666] "one"              "wish"             "sighed"          
## [73669] "go"               "back"             "find"            
## [73672] "last"             "turned"           "road"            
## [73675] "front"            "took"             "steps"           
## [73678] "heaviest"         "reluctant"        "ever"            
## [73681] "taken"            "steps"            "now"             
## [73684] "going"            "never"            "see"             
## [73687] "high"             "place"            "suddenly"        
## [73690] "heard"            "cries"            "voices"          
## [73693] "stood"            "still"            "stone"           
## [73696] "orc"              "voices"           "behind"          
## [73699] "noise"            "tramping"         "feet"            
## [73702] "harsh"            "shouts"           "orcs"            
## [73705] "coming"           "cleft"            "far"             
## [73708] "side"             "entry"            "tower"           
## [73711] "perhaps"          "tramping"         "feet"            
## [73714] "shouts"           "behind"           "wheeled"         
## [73717] "round"            "saw"              "small"           
## [73720] "red"              "lights"           "torches"         
## [73723] "winking"          "away"             "issued"          
## [73726] "tunnel"           "last"             "hunt"            
## [73729] "red"              "eye"              "tower"           
## [73732] "blind"            "caught"           "now"             
## [73735] "flicker"          "approaching"      "torches"         
## [73738] "clink"            "steel"            "ahead"           
## [73741] "near"             "minute"           "reach"           
## [73744] "top"              "taken"            "long"            
## [73747] "making"           "mind"             "now"             
## [73750] "good"             "escape"           "save"            
## [73753] "save"             "ring"             "ring"            
## [73756] "aware"            "thought"          "decision"        
## [73759] "simply"           "found"            "drawing"         
## [73762] "chain"            "taking"           "ring"            
## [73765] "hand"             "head"             "orc"             
## [73768] "company"          "appeared"         "cleft"           
## [73771] "right"            "put"              "world"           
## [73774] "changed"          "single"           "moment"          
## [73777] "time"             "filled"           "hour"            
## [73780] "thought"          "aware"            "hearing"         
## [73783] "sharpened"        "sight"            "dimmed"          
## [73786] "otherwise"        "shelobs"          "lair"            
## [73789] "things"           "now"              "dark"            
## [73792] "vague"            "grey"             "hazy"            
## [73795] "world"            "alone"            "like"            
## [73798] "small"            "black"            "solid"           
## [73801] "rock"             "ring"             "weighing"        
## [73804] "left"             "hand"             "like"            
## [73807] "orb"              "hot"              "gold"            
## [73810] "feel"             "invisible"        "horribly"        
## [73813] "uniquely"         "visible"          "knew"            
## [73816] "somewhere"        "eye"              "searching"       
## [73819] "heard"            "crack"            "stone"           
## [73822] "murmur"           "water"            "far"             
## [73825] "morgul"           "vale"             "away"            
## [73828] "rock"             "bubbling"         "misery"          
## [73831] "shelob"           "groping"          "lost"            
## [73834] "blind"            "passage"          "voices"          
## [73837] "dungeons"         "tower"            "cries"           
## [73840] "orcs"             "came"             "tunnel"          
## [73843] "deafening"        "roaring"          "ears"            
## [73846] "crash"            "feet"             "rending"         
## [73849] "clamour"          "orcs"             "shrank"          
## [73852] "cliff"            "marched"          "like"            
## [73855] "phantom"          "company"          "grey"            
## [73858] "distorted"        "figures"          "mist"            
## [73861] "dreams"           "fear"             "pale"            
## [73864] "flames"           "hands"            "passed"          
## [73867] "cowered"          "trying"           "creep"           
## [73870] "away"             "cranny"           "hide"            
## [73873] "listened"         "orcs"             "tunnel"          
## [73876] "others"           "marching"         "sighted"         
## [73879] "one"              "another"          "parties"         
## [73882] "now"              "hurrying"         "shouting"        
## [73885] "heard"            "clearly"          "understood"      
## [73888] "said"             "perhaps"          "ring"            
## [73891] "gave"             "understanding"    "tongues"         
## [73894] "simply"           "understanding"    "especially"      
## [73897] "servants"         "sauron"           "maker"           
## [73900] "gave"             "heed"             "understood"      
## [73903] "translated"       "thought"          "certainly"       
## [73906] "ring"             "grown"            "greatly"         
## [73909] "power"            "approached"       "places"          
## [73912] "forging"          "one"              "thing"           
## [73915] "confer"           "courage"          "present"         
## [73918] "sam"              "still"            "thought"         
## [73921] "hiding"           "lying"            "low"             
## [73924] "till"             "quiet"            "listened"        
## [73927] "anxiously"        "tell"             "near"            
## [73930] "voices"           "words"            "seemed"          
## [73933] "almost"           "ears"             "hola"            
## [73936] "gorbag"           "enough"           "war"             
## [73939] "already"          "orders"           "lubber"          
## [73942] "shagrat"          "tired"            "lurking"         
## [73945] "thinking"         "coming"           "fight"           
## [73948] "orders"           "im"               "command"         
## [73951] "pass"             "speak"            "civil"           
## [73954] "whats"            "report"           "nothing"         
## [73957] "hai"              "hai"              "yoi"             
## [73960] "yell"             "broke"            "exchanges"       
## [73963] "leaders"          "orcs"             "lower"           
## [73966] "suddenly"         "seen"             "something"       
## [73969] "began"            "run"              "others"          
## [73972] "hai"              "hola"             "heres"           
## [73975] "something"        "lying"            "right"           
## [73978] "road"             "spy"              "spy"             
## [73981] "hoot"             "snarling"         "horns"           
## [73984] "babel"            "baying"           "voices"          
## [73987] "dreadful"         "stroke"           "sam"             
## [73990] "wakened"          "cowering"         "mood"            
## [73993] "seen"             "master"           "heard"           
## [73996] "tales"            "orcs"             "make"            
## [73999] "blood"            "run"              "cold"            
## [74002] "borne"            "sprang"           "flung"           
## [74005] "quest"            "decisions"        "away"            
## [74008] "fear"             "doubt"            "knew"            
## [74011] "now"              "place"            "masters"         
## [74014] "side"             "though"           "clear"           
## [74017] "back"             "ran"              "steps"           
## [74020] "path"             "towards"          "frodo"           
## [74023] "many"             "thought"          "thirty"          
## [74026] "forty"            "tower"            "least"           
## [74029] "lot"              "guess"            "many"            
## [74032] "can"              "kill"             "get"             
## [74035] "theyll"           "see"              "flame"           
## [74038] "sword"            "soon"             "draw"            
## [74041] "theyll"           "get"              "sooner"          
## [74044] "later"            "wonder"           "song"            
## [74047] "ever"             "mention"          "samwise"         
## [74050] "fell"             "high"             "pass"            
## [74053] "made"             "wall"             "bodies"          
## [74056] "round"            "master"           "song"            
## [74059] "course"           "ringll"           "found"           
## [74062] "therell"          "songs"            "cant"            
## [74065] "help"             "place"            "mr"              
## [74068] "frodo"            "must"             "understand"      
## [74071] "elrond"           "council"          "great"           
## [74074] "lords"            "ladies"           "wisdom"          
## [74077] "plans"            "gone"             "wrong"           
## [74080] "cant"             "ring"             "bearer"          
## [74083] "without"          "mr"               "frodo"           
## [74086] "orcs"             "dim"              "sight"           
## [74089] "now"              "time"             "consider"        
## [74092] "now"              "realized"         "weary"           
## [74095] "weary"            "almost"           "exhaustion"      
## [74098] "legs"             "carry"            "wished"          
## [74101] "slow"             "path"             "seemed"          
## [74104] "miles"            "long"             "got"             
## [74107] "mist"             "good"             "way"             
## [74110] "ahead"            "still"            "cluster"         
## [74113] "figures"          "round"            "something"       
## [74116] "lying"            "ground"           "seemed"          
## [74119] "darting"          "way"              "bent"            
## [74122] "like"             "dogs"             "trail"           
## [74125] "tried"            "make"             "spurt"           
## [74128] "come"             "sam"              "said"            
## [74131] "youll"            "late"             "loosened"        
## [74134] "sword"            "sheath"           "minute"          
## [74137] "draw"             "wild"             "clamour"         
## [74140] "hooting"          "laughing"         "something"       
## [74143] "lifted"           "ground"           "ya"              
## [74146] "hoi"              "ya"               "harri"           
## [74149] "hoi"              "voice"            "shouted"         
## [74152] "now"              "quick"            "way"             
## [74155] "back"             "undergate"        "shell"           
## [74158] "trouble"          "us"               "tonight"         
## [74161] "signs"            "whole"            "band"            
## [74164] "orc"              "figures"          "began"           
## [74167] "move"             "four"             "middle"          
## [74170] "carrying"         "body"             "high"            
## [74173] "shoulders"        "ya"               "hoi"             
## [74176] "taken"            "frodos"           "body"            
## [74179] "catch"            "still"            "laboured"        
## [74182] "orcs"             "reached"          "tunnel"          
## [74185] "passing"          "burden"           "went"            
## [74188] "first"            "behind"           "good"            
## [74191] "deal"             "struggling"       "jostling"        
## [74194] "sam"              "came"             "drew"            
## [74197] "sword"            "flicker"          "blue"            
## [74200] "wavering"         "hand"             "see"             
## [74203] "even"             "came"             "panting"         
## [74206] "last"             "vanished"         "black"           
## [74209] "hole"             "moment"           "stood"           
## [74212] "gasping"          "clutching"        "breast"          
## [74215] "drew"             "sleeve"           "across"          
## [74218] "face"             "wiping"           "away"            
## [74221] "grime"            "sweat"            "tears"           
## [74224] "curse"            "filth"            "said"            
## [74227] "sprang"           "darkness"         "longer"          
## [74230] "seemed"           "dark"             "tunnel"          
## [74233] "rather"           "stepped"          "thin"            
## [74236] "mist"             "heavier"          "fog"             
## [74239] "weariness"        "growing"          "hardened"        
## [74242] "thought"          "see"              "light"           
## [74245] "torches"          "little"           "way"             
## [74248] "ahead"            "try"              "catch"           
## [74251] "orcs"             "go"               "fast"            
## [74254] "tunnels"          "tunnel"           "knew"            
## [74257] "well"             "spite"            "shelob"          
## [74260] "forced"           "use"              "often"           
## [74263] "swiftest"         "way"              "dead"            
## [74266] "city"             "mountains"        "far"             
## [74269] "time"             "main"             "tunnel"          
## [74272] "great"            "round"            "pit"             
## [74275] "made"             "shelob"           "taken"           
## [74278] "abode"            "ages"             "past"            
## [74281] "know"             "many"             "byways"          
## [74284] "delved"           "either"           "side"            
## [74287] "escape"           "lair"             "goings"          
## [74290] "fro"              "business"         "masters"         
## [74293] "tonight"          "intend"           "go"              
## [74296] "far"              "hastening"        "find"            
## [74299] "side"             "passage"          "led"             
## [74302] "back"             "watch"            "tower"           
## [74305] "cliff"            "must"             "gleeful"         
## [74308] "delighted"        "found"            "seen"            
## [74311] "ran"              "gabbled"          "yammered"        
## [74314] "fashion"          "kind"             "sam"             
## [74317] "heard"            "noise"            "harsh"           
## [74320] "voices"           "flat"             "hard"            
## [74323] "dead"             "air"              "distinguish"     
## [74326] "two"              "voices"           "among"           
## [74329] "rest"             "louder"           "nearer"          
## [74332] "captains"         "two"              "parties"         
## [74335] "seemed"           "bringing"         "rear"            
## [74338] "debating"         "went"             "cant"            
## [74341] "stop"             "rabble"           "making"          
## [74344] "racket"           "shagrat"          "grunted"         
## [74347] "one"              "dont"             "want"            
## [74350] "shelob"           "us"               "go"              
## [74353] "gorbag"           "making"           "half"            
## [74356] "noise"            "said"             "let"             
## [74359] "lads"             "play"             "need"            
## [74362] "worry"            "shelob"           "bit"             
## [74365] "reckon"           "shes"             "sat"             
## [74368] "nail"             "seems"            "shant"           
## [74371] "cry"              "didnt"            "see"             
## [74374] "nasty"            "mess"             "way"             
## [74377] "back"             "cursed"           "crack"           
## [74380] "weve"             "stopped"          "weve"            
## [74383] "stopped"          "hundred"          "times"           
## [74386] "let"              "em"               "laugh"           
## [74389] "weve"             "struck"           "bit"             
## [74392] "luck"             "last"             "got"             
## [74395] "something"        "lugbúrz"          "wants"           
## [74398] "lugbúrz"          "wants"            "eh"              
## [74401] "dyou"             "think"            "elvish"          
## [74404] "looked"           "undersized"       "whats"           
## [74407] "danger"           "thing"            "like"            
## [74410] "dont"             "know"             "till"            
## [74413] "weve"             "look"             "oho"             
## [74416] "havent"           "told"             "expect"          
## [74419] "dont"             "tell"             "us"              
## [74422] "know"             "half"             "can"             
## [74425] "make"             "mistakes"         "even"            
## [74428] "top"              "ones"             "can"             
## [74431] "sh"               "gorbag"           "shagrats"        
## [74434] "voice"            "lowered"          "even"            
## [74437] "strangely"        "sharpened"        "hearing"         
## [74440] "sam"              "just"             "catch"           
## [74443] "said"             "may"              "theyve"          
## [74446] "got"              "eyes"             "ears"            
## [74449] "everywhere"       "among"            "lot"             
## [74452] "like"             "theres"           "doubt"           
## [74455] "theyre"           "troubled"         "something"       
## [74458] "nazgûl"           "account"          "lugbúrz"         
## [74461] "something"        "nearly"           "slipped"         
## [74464] "nearly"           "say"              "said"            
## [74467] "gorbag"           "right"            "said"            
## [74470] "shagrat"          "well"             "talk"            
## [74473] "later"            "wait"             "till"            
## [74476] "get"              "way"              "theres"          
## [74479] "place"            "can"              "talk"            
## [74482] "bit"              "lads"             "go"              
## [74485] "shortly"          "afterwards"       "sam"             
## [74488] "saw"              "torches"          "disappear"       
## [74491] "rumbling"         "noise"            "just"            
## [74494] "hurried"          "bump"             "far"             
## [74497] "guess"            "orcs"             "turned"          
## [74500] "gone"             "opening"          "frodo"           
## [74503] "tried"            "found"            "blocked"         
## [74506] "still"            "blocked"          "seemed"          
## [74509] "great"            "stone"            "way"             
## [74512] "orcs"             "got"              "somehow"         
## [74515] "hear"             "voices"           "side"            
## [74518] "still"            "running"          "along"           
## [74521] "deeper"           "deeper"           "mountain"        
## [74524] "back"             "towards"          "tower"           
## [74527] "sam"              "felt"             "desperate"       
## [74530] "carrying"         "masters"          "body"            
## [74533] "foul"             "purpose"          "follow"          
## [74536] "thrust"           "pushed"           "block"           
## [74539] "threw"            "yield"            "far"             
## [74542] "inside"           "thought"          "heard"           
## [74545] "two"              "captains"         "voices"          
## [74548] "talking"          "stood"            "still"           
## [74551] "listening"        "little"           "hoping"          
## [74554] "perhaps"          "learn"            "something"       
## [74557] "useful"           "perhaps"          "gorbag"          
## [74560] "seemed"           "belong"           "minas"           
## [74563] "morgul"           "come"             "slip"            
## [74566] "dont"             "know"             "said"            
## [74569] "gorbags"          "voice"            "messages"        
## [74572] "go"               "quicker"          "anything"        
## [74575] "fly"              "rule"             "dont"            
## [74578] "enquire"          "done"             "safest"          
## [74581] "grr"              "nazgûl"           "give"            
## [74584] "creeps"           "skin"             "body"            
## [74587] "soon"             "look"             "leave"           
## [74590] "cold"             "dark"             "side"            
## [74593] "likes"            "em"               "theyre"          
## [74596] "favourites"       "nowadays"         "use"             
## [74599] "grumbling"        "tell"             "game"            
## [74602] "serving"          "city"             "try"             
## [74605] "shelob"           "company"          "said"            
## [74608] "shagrat"          "id"               "like"            
## [74611] "try"              "somewhere"        "theres"          
## [74614] "none"             "em"               "wars"            
## [74617] "now"              "thats"            "things"          
## [74620] "may"              "easier"           "going"           
## [74623] "well"             "say"              "grunted"         
## [74626] "gorbag"           "well"             "see"             
## [74629] "anyway"           "go"               "well"            
## [74632] "lot"              "room"             "dyou"            
## [74635] "say"              "get"              "chance"          
## [74638] "mell"             "slip"             "set"             
## [74641] "somewhere"        "trusty"           "lads"            
## [74644] "somewhere"        "theres"           "good"            
## [74647] "loot"             "nice"             "handy"           
## [74650] "big"              "bosses"           "ah"              
## [74653] "said"             "shagrat"          "like"            
## [74656] "old"              "times"            "yes"             
## [74659] "said"             "gorbag"           "dont"            
## [74662] "count"            "im"               "easy"            
## [74665] "mind"             "said"             "big"             
## [74668] "bosses"           "ay"               "voice"           
## [74671] "sank"             "almost"           "whisper"         
## [74674] "ay"               "even"             "biggest"         
## [74677] "can"              "make"             "mistakes"        
## [74680] "something"        "nearly"           "slipped"         
## [74683] "say"              "say"              "something"       
## [74686] "slipped"          "weve"             "got"             
## [74689] "look"             "always"           "poor"            
## [74692] "uruks"            "put"              "slips"           
## [74695] "right"            "small"            "thanks"          
## [74698] "dont"             "forget"           "enemies"         
## [74701] "dont"             "love"             "us"              
## [74704] "love"             "get"              "topsides"        
## [74707] "done"             "see"              "ordered"         
## [74710] "hour"             "ago"              "just"            
## [74713] "saw"              "us"               "message"         
## [74716] "came"             "nazgûl"           "uneasy"          
## [74719] "spies"            "feared"           "stairs"          
## [74722] "double"           "vigilance"        "patrol"          
## [74725] "head"             "stairs"           "came"            
## [74728] "bad"              "business"         "said"            
## [74731] "gorbag"           "see"              "silent"          
## [74734] "watchers"         "uneasy"           "two"             
## [74737] "days"             "ago"              "know"            
## [74740] "patrol"           "wasnt"            "ordered"         
## [74743] "another"          "day"              "message"         
## [74746] "sent"             "lugbúrz"          "either"          
## [74749] "owing"            "great"            "signal"          
## [74752] "going"            "high"             "nazgûl"          
## [74755] "going"            "war"              "couldnt"         
## [74758] "get"              "lugbúrz"          "pay"             
## [74761] "attention"        "good"             "im"              
## [74764] "told"             "eye"              "busy"            
## [74767] "elsewhere"        "suppose"          "said"            
## [74770] "shagrat"          "big"              "things"          
## [74773] "going"            "away"             "west"            
## [74776] "say"              "daresay"          "growled"         
## [74779] "gorbag"           "meantime"         "enemies"         
## [74782] "got"              "stairs"           "youre"           
## [74785] "supposed"         "keep"             "watch"           
## [74788] "arent"            "special"          "orders"          
## [74791] "thats"            "enough"           "dont"            
## [74794] "try"              "teach"            "job"             
## [74797] "awake"            "right"            "knew"            
## [74800] "funny"            "things"           "going"           
## [74803] "funny"            "yes"              "funny"           
## [74806] "lights"           "shouting"         "shelob"          
## [74809] "go"               "lads"             "saw"             
## [74812] "sneak"            "sneak"            "whats"           
## [74815] "must"             "seen"             "little"          
## [74818] "thin"             "black"            "fellow"          
## [74821] "like"             "spider"           "perhaps"         
## [74824] "like"             "starved"          "frog"            
## [74827] "hes"              "came"             "lugbúrz"         
## [74830] "first"            "time"             "years"           
## [74833] "ago"              "word"             "high"            
## [74836] "let"              "pass"             "hes"             
## [74839] "stairs"           "twice"            "since"           
## [74842] "weve"             "left"             "alone"           
## [74845] "seems"            "understanding"    "ladyship"        
## [74848] "suppose"          "hes"              "good"            
## [74851] "eat"              "wouldnt"          "worry"           
## [74854] "words"            "high"             "fine"            
## [74857] "guard"            "keep"             "valley"          
## [74860] "day"              "racket"           "early"           
## [74863] "last"             "night"            "saw"             
## [74866] "anyway"           "lads"             "reported"        
## [74869] "ladyship"         "fun"              "seemed"          
## [74872] "good"             "enough"           "message"         
## [74875] "came"             "thought"          "sneak"           
## [74878] "brought"          "toy"              "youd"            
## [74881] "perhaps"          "sent"             "present"         
## [74884] "prisoner"         "war"              "something"       
## [74887] "dont"             "interfere"        "shes"            
## [74890] "playing"          "nothing"          "gets"            
## [74893] "shelob"           "shes"             "hunt"            
## [74896] "nothing"          "say"              "didnt"           
## [74899] "use"              "eyes"             "back"            
## [74902] "tell"             "im"               "easy"            
## [74905] "mind"             "whatever"         "came"            
## [74908] "stairs"           "get"              "cut"             
## [74911] "web"              "got"              "clean"           
## [74914] "hole"             "thats"            "something"       
## [74917] "think"            "ah"               "well"            
## [74920] "got"              "end"              "didnt"           
## [74923] "got"              "got"              "little"          
## [74926] "fellow"           "one"              "shed"            
## [74929] "larder"           "long"             "hed"             
## [74932] "now"              "lugbúrz"          "wanted"          
## [74935] "youd"             "go"               "get"             
## [74938] "nice"             "one"              "point"           
## [74941] "sam"              "began"            "listen"          
## [74944] "attentively"      "pressed"          "ear"             
## [74947] "stone"            "cut"              "cords"           
## [74950] "shed"             "put"              "round"           
## [74953] "shagrat"          "one"              "cut"             
## [74956] "web"              "didnt"            "see"             
## [74959] "stuck"            "pin"              "ladyship"        
## [74962] "one"              "reckon"           "shagrat"         
## [74965] "shagrat"          "made"             "reply"           
## [74968] "may"              "well"             "put"             
## [74971] "thinking"         "cap"              "youve"           
## [74974] "got"              "one"              "laughing"        
## [74977] "matter"           "one"              "one"             
## [74980] "ever"             "stuck"            "pin"             
## [74983] "shelob"           "know"             "well"            
## [74986] "enough"           "theres"           "grief"           
## [74989] "think"            "theres"           "someone"         
## [74992] "loose"            "hereabouts"       "dangerous"       
## [74995] "damned"           "rebel"            "ever"            
## [74998] "walked"           "since"            "bad"             
## [75001] "old"              "times"            "since"           
## [75004] "great"            "siege"            "something"       
## [75007] "slipped"          "growled"          "shagrat"         
## [75010] "signs"            "captain"          "shagrat"         
## [75013] "id"               "say"              "theres"          
## [75016] "large"            "warrior"          "loose"           
## [75019] "elf"              "likely"           "elf"             
## [75022] "sword"            "anyway"           "axe"             
## [75025] "well"             "maybe"            "hes"             
## [75028] "loose"            "bounds"           "youve"           
## [75031] "never"            "spotted"          "funny"           
## [75034] "indeed"           "gorbag"           "spat"            
## [75037] "sam"              "smiled"           "grimly"          
## [75040] "description"      "ah"               "well"            
## [75043] "always"           "take"             "gloomy"          
## [75046] "view"             "said"             "shagrat"         
## [75049] "can"              "read"             "signs"           
## [75052] "like"             "may"              "ways"            
## [75055] "explain"          "anyhow"           "ive"             
## [75058] "got"              "watchers"         "every"           
## [75061] "point"            "im"               "going"           
## [75064] "deal"             "one"              "thing"           
## [75067] "time"             "ive"              "look"            
## [75070] "fellow"           "caught"           "ill"             
## [75073] "begin"            "worry"            "something"       
## [75076] "else"             "guess"            "wont"            
## [75079] "find"             "much"             "little"          
## [75082] "fellow"           "said"             "gorbag"          
## [75085] "may"              "nothing"          "real"            
## [75088] "mischief"         "big"              "fellow"          
## [75091] "sharp"            "sword"            "doesnt"          
## [75094] "seem"             "thought"          "worth"           
## [75097] "much"             "anyhow"           "just"            
## [75100] "left"             "lying"            "regular"         
## [75103] "elvish"           "trick"            "well"            
## [75106] "see"              "come"             "now"             
## [75109] "weve"             "talked"           "enough"          
## [75112] "lets"             "go"               "look"            
## [75115] "prisoner"         "going"            "dont"            
## [75118] "forget"           "spotted"          "first"           
## [75121] "theres"           "game"             "lads"            
## [75124] "must"             "now"              "now"             
## [75127] "growled"          "shagrat"          "orders"          
## [75130] "bellys"           "worth"            "break"           
## [75133] "em"               "trespasser"       "found"           
## [75136] "guard"            "held"             "tower"           
## [75139] "prisoner"         "stripped"         "full"            
## [75142] "description"      "every"            "article"         
## [75145] "garment"          "weapon"           "letter"          
## [75148] "ring"             "trinket"          "sent"            
## [75151] "lugbúrz"          "lugbúrz"          "prisoner"        
## [75154] "kept"             "safe"             "intact"          
## [75157] "pain"             "death"            "every"           
## [75160] "member"           "guard"            "sends"           
## [75163] "comes"            "thats"            "plain"           
## [75166] "enough"           "thats"            "im"              
## [75169] "going"            "stripped"         "eh"              
## [75172] "said"             "gorbag"           "teeth"           
## [75175] "nails"            "hair"             "none"            
## [75178] "hes"              "lugbúrz"          "tell"            
## [75181] "hes"              "wanted"           "safe"            
## [75184] "whole"            "youll"            "find"            
## [75187] "difficult"        "laughed"          "gorbag"          
## [75190] "hes"              "nothing"          "carrion"         
## [75193] "now"              "lugbúrz"          "stuff"           
## [75196] "cant"             "guess"            "might"           
## [75199] "well"             "go"               "pot"             
## [75202] "fool"             "snarled"          "shagrat"         
## [75205] "youve"            "talking"          "clever"          
## [75208] "theres"           "lot"              "dont"            
## [75211] "know"             "though"           "folk"            
## [75214] "youll"            "pot"              "shelob"          
## [75217] "dont"             "take"             "care"            
## [75220] "carrion"          "know"             "ladyship"        
## [75223] "binds"            "cords"            "shes"            
## [75226] "meat"             "doesnt"           "eat"             
## [75229] "dead"             "meat"             "suck"            
## [75232] "cold"             "blood"            "fellow"          
## [75235] "isnt"             "dead"             "sam"             
## [75238] "reeled"           "clutching"        "stone"           
## [75241] "felt"             "whole"            "dark"            
## [75244] "world"            "turning"          "upside"          
## [75247] "great"            "shock"            "almost"          
## [75250] "swooned"          "even"             "fought"          
## [75253] "keep"             "hold"             "senses"          
## [75256] "deep"             "inside"           "aware"           
## [75259] "comment"          "fool"             "isnt"            
## [75262] "dead"             "heart"            "knew"            
## [75265] "dont"             "trust"            "head"            
## [75268] "samwise"          "best"             "part"            
## [75271] "trouble"          "never"            "really"          
## [75274] "hope"             "now"              "done"            
## [75277] "fur"              "moment"           "nothing"         
## [75280] "prop"             "unmoving"         "stone"           
## [75283] "listen"           "listen"           "vile"            
## [75286] "orc"              "voices"           "garn"            
## [75289] "said"             "shagrat"          "shes"            
## [75292] "got"              "one"              "poison"          
## [75295] "shes"             "hunting"          "just"            
## [75298] "gives"            "em"               "dab"             
## [75301] "neck"             "go"               "limp"            
## [75304] "boned"            "fish"             "way"             
## [75307] "dyou"             "remember"         "old"             
## [75310] "ufthak"           "lost"             "days"            
## [75313] "found"            "corner"           "hanging"         
## [75316] "wide"             "awake"            "glaring"         
## [75319] "laughed"          "shed"             "forgotten"       
## [75322] "maybe"            "didnt"            "touch"           
## [75325] "good"             "interfering"      "nar"             
## [75328] "little"           "filth"            "hell"            
## [75331] "wake"             "hours"            "beyond"          
## [75334] "feeling"          "bit"              "sick"            
## [75337] "hit"              "hell"             "right"           
## [75340] "lugbúrz"          "let"              "alone"           
## [75343] "course"           "beyond"           "wondering"       
## [75346] "whats"            "happened"         "whats"           
## [75349] "going"            "happen"           "laughed"         
## [75352] "gorbag"           "can"              "tell"            
## [75355] "stories"          "rate"             "cant"            
## [75358] "anything"         "else"             "dont"            
## [75361] "suppose"          "hes"              "ever"            
## [75364] "lovely"           "lugbúrz"          "may"             
## [75367] "like"             "know"             "expect"          
## [75370] "going"            "funny"            "thought"         
## [75373] "lets"             "go"               "theres"          
## [75376] "going"            "fun"              "tell"            
## [75379] "said"             "shagrat"          "hes"             
## [75382] "got"              "kept"             "safe"            
## [75385] "good"             "dead"             "right"           
## [75388] "id"               "catch"            "big"             
## [75391] "one"              "thats"            "loose"           
## [75394] "send"             "report"           "lugbúrz"         
## [75397] "wont"             "sound"            "pretty"          
## [75400] "say"              "youve"            "caught"          
## [75403] "kitten"           "let"              "cat"             
## [75406] "escape"           "voices"           "began"           
## [75409] "move"             "away"             "sam"             
## [75412] "heard"            "sound"            "feet"            
## [75415] "receding"         "recovering"       "shock"           
## [75418] "now"              "wild"             "fury"            
## [75421] "got"              "wrong"            "cried"           
## [75424] "knew"             "now"              "theyve"          
## [75427] "got"              "devils"           "filth"           
## [75430] "never"            "leave"            "master"          
## [75433] "never"            "never"            "right"           
## [75436] "rule"             "knew"             "heart"           
## [75439] "may"              "forgiven"         "now"             
## [75442] "ive"              "got"              "get"             
## [75445] "back"             "somehow"          "somehow"         
## [75448] "drew"             "sword"            "beat"            
## [75451] "stone"            "hilt"             "gave"            
## [75454] "dull"             "sound"            "sword"           
## [75457] "however"          "blazed"           "brightly"        
## [75460] "now"              "see"              "dimly"           
## [75463] "light"            "surprise"         "noticed"         
## [75466] "great"            "block"            "shaped"          
## [75469] "like"             "heavy"            "door"            
## [75472] "less"             "twice"            "height"          
## [75475] "dark"             "blank"            "space"           
## [75478] "top"              "low"              "arch"            
## [75481] "opening"          "probably"         "meant"           
## [75484] "stop"             "intrusion"        "shelob"          
## [75487] "fastened"         "inside"           "latch"           
## [75490] "bolt"             "beyond"           "reach"           
## [75493] "cunning"          "remaining"        "strength"        
## [75496] "sam"              "leaped"           "caught"          
## [75499] "top"              "scrambled"        "dropped"         
## [75502] "ran"              "madly"            "sword"           
## [75505] "blazing"          "hand"             "round"           
## [75508] "bend"             "winding"          "tunnel"          
## [75511] "news"             "master"           "still"           
## [75514] "alive"            "roused"           "last"            
## [75517] "effort"           "beyond"           "thought"         
## [75520] "weariness"        "see"              "anything"        
## [75523] "ahead"            "new"              "passage"         
## [75526] "twisted"          "turned"           "constantly"      
## [75529] "thought"          "catching"         "two"             
## [75532] "orcs"             "voices"           "growing"         
## [75535] "nearer"           "now"              "seemed"          
## [75538] "quite"            "close"            "thats"           
## [75541] "im"               "going"            "said"            
## [75544] "shagrat"          "angry"            "tones"           
## [75547] "put"              "right"            "top"             
## [75550] "chamber"          "growled"          "gorbag"          
## [75553] "havent"           "lock"             "ups"             
## [75556] "hes"              "going"            "harms"           
## [75559] "way"              "tell"             "answered"        
## [75562] "shagrat"          "see"              "hes"             
## [75565] "precious"         "dont"             "trust"           
## [75568] "lads"             "none"             "neither"         
## [75571] "youre"            "mad"              "fun"             
## [75574] "hes"              "going"            "want"            
## [75577] "wont"             "come"             "dont"            
## [75580] "keep"             "civil"            "top"             
## [75583] "say"              "hell"             "safe"            
## [75586] "said"             "sam"              "youre"           
## [75589] "forgetting"       "great"            "big"             
## [75592] "elvish"           "warrior"          "thats"           
## [75595] "loose"            "raced"            "round"           
## [75598] "last"             "corner"           "find"            
## [75601] "trick"            "tunnel"           "hearing"         
## [75604] "ring"             "gave"             "misjudged"       
## [75607] "distance"         "two"              "orc"             
## [75610] "figures"          "still"            "way"             
## [75613] "ahead"            "see"              "now"             
## [75616] "black"            "squat"            "red"             
## [75619] "glare"            "passage"          "ran"             
## [75622] "straight"         "last"             "incline"         
## [75625] "end"              "wide"             "open"            
## [75628] "great"            "double"           "doors"           
## [75631] "leading"          "probably"         "deep"            
## [75634] "chambers"         "far"              "high"            
## [75637] "horn"             "tower"            "already"         
## [75640] "orcs"             "burden"           "passed"          
## [75643] "inside"           "gorbag"           "shagrat"         
## [75646] "drawing"          "near"             "gate"            
## [75649] "sam"              "heard"            "burst"           
## [75652] "hoarse"           "singing"          "blaring"         
## [75655] "horns"            "banging"          "gongs"           
## [75658] "hideous"          "clamour"          "gorbag"          
## [75661] "shagrat"          "already"          "threshold"       
## [75664] "sam"              "yelled"           "brandished"      
## [75667] "sting"            "little"           "voice"           
## [75670] "drowned"          "tumult"           "one"             
## [75673] "heeded"           "great"            "doors"           
## [75676] "slammed"          "boom"             "bars"            
## [75679] "iron"             "fell"             "place"           
## [75682] "inside"           "clang"            "gate"            
## [75685] "shut"             "sam"              "hurled"          
## [75688] "bolted"           "brazen"           "plates"          
## [75691] "fell"             "senseless"        "ground"          
## [75694] "darkness"         "frodo"            "alive"           
## [75697] "taken"            "enemy"            "ends"            
## [75700] "second"           "part"             "history"         
## [75703] "war"              "ring"             "third"           
## [75706] "part"             "tells"            "last"            
## [75709] "defence"          "shadow"           "end"             
## [75712] "mission"          "ring"             "bearer"          
## [75715] "return"           "king"             ""

6.1 Contrasting Sentiments

Here we are going to compare the emotionality of the two books. We will join the text (in list form) with the Warriner Emotion norms. This database has thousands of words with average ‘Valence’ and ‘Arousal’ ratings from crowdsourced survey data. By joining, each word will have a ‘Valence’ and ‘Arousal’ value. We can then compare means between novels.

Import and Clean Warriner Norms

library(readxl)
warriner <- read_excel("WarrinerEmotionNorms.xlsx")
warriner <-warriner[c(1,2,4)] # keep only columns of interest
names(warriner)[names(warriner) == "Word"] <- "word" #match word column titles
head(warriner)

Join Norms with each Novel

ffull <- left_join(d, warriner, by = NULL, type = "left", match = "all") #Fellowship Join
ttfull <-left_join(dtt, warriner, by = NULL, type = "left", match = "all") #Two Towers Join

Make single dataframe with both novels

ffull$novel <- "fellowship" #assign novel name
ttfull$novel <- "twotowers"
all <-rbind(ffull, ttfull)
head(all)

Get Means by book

lotrsum <- all %>% 
  group_by(novel) %>% 
  summarize_at(vars(c(2:4)),mean, na.rm=TRUE) ## "na.rm=TRUE" skips over NAs in variable
lotrsum

Looks like the books are quite similar across our variables. Let’s run some simple t-tests to compare.

library(lsr)
t.test(V.Mean.Sum ~ novel, all)
## 
##  Welch Two Sample t-test
## 
## data:  V.Mean.Sum by novel
## t = 2.808, df = 6003.5, p-value = 0.005001
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  0.02966292 0.16686724
## sample estimates:
## mean in group fellowship  mean in group twotowers 
##                 5.282190                 5.183925
cohen<-cohensD(ffull$V.Mean.Sum, ttfull$V.Mean.Sum, method = "unequal")
print(cohen)
## [1] 0.07184654
t.test(A.Mean.Sum ~ novel, all)
## 
##  Welch Two Sample t-test
## 
## data:  A.Mean.Sum by novel
## t = -1.0345, df = 6051.8, p-value = 0.3009
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
##  -0.07145699  0.02209100
## sample estimates:
## mean in group fellowship  mean in group twotowers 
##                 4.165015                 4.189698

We have a statistically significant difference in ‘Valence’ between the two books where the Fellowship of the Ring (M=5.28) is slighty more positive than the Two Towers (M=5.18). However, this difference is likely not meaningful as a reader (also indicated by such a small effect size, d=.07) For arousal, there are no significant differences.

6.2 Contrasting Lexical Diversity

There are different packages that you can use to acquire a Type/Token Ratio. The ‘tokenizers’ package is useful because it doesn’t require multiple data conversions like other text analysis packages.

First we can determine the number of words per novel

library(tokenizers)
fwords<-count_words(lotr)
fwords #fellowship words
## [1] 91162
ttwords<-count_words(tt)
ttwords #two towers words
## [1] 75709

Next we will determine the number of unique words per novel

Use our already created dataframe and count the rows (i.e., unique words)

#Use previously created dataframes
fcount<-count(d, "freq") #fellowship of the ring
ttcount<-count(dtt, "freq") #two towers, also dataframe 'dtt' here is made from the 'sidebar' code above (Comparison to Sequel)

Finally, determine the TTR (number of different words/total number of words)

#Fellowship of the Ring
fcount$n/fwords
## [1] 0.09448016
#Two Towers
ttcount$n/ttwords
## [1] 0.1007806

The closer to 1, the more diverse the language is in the book. Looks like the Two Towers is ever-so-slightly more lexically diverse. Though, we are comparing two books by one author, so there isn’t much reason to expect meaningful differences.